]> code.delx.au - gnu-emacs/blob - lisp/progmodes/cc-cmds.el
Merge from emacs--rel--22
[gnu-emacs] / lisp / progmodes / cc-cmds.el
1 ;;; cc-cmds.el --- user level commands for CC Mode
2
3 ;; Copyright (C) 1985, 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
5 ;; Free Software Foundation, Inc.
6
7 ;; Authors: 2003- Alan Mackenzie
8 ;; 1998- Martin Stjernholm
9 ;; 1992-1999 Barry A. Warsaw
10 ;; 1987 Dave Detlefs and Stewart Clamen
11 ;; 1985 Richard M. Stallman
12 ;; Maintainer: bug-cc-mode@gnu.org
13 ;; Created: 22-Apr-1997 (split from cc-mode.el)
14 ;; Version: See cc-mode.el
15 ;; Keywords: c languages oop
16
17 ;; This file is part of GNU Emacs.
18
19 ;; GNU Emacs is free software; you can redistribute it and/or modify
20 ;; it under the terms of the GNU General Public License as published by
21 ;; the Free Software Foundation; either version 3, or (at your option)
22 ;; any later version.
23
24 ;; GNU Emacs is distributed in the hope that it will be useful,
25 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
26 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 ;; GNU General Public License for more details.
28
29 ;; You should have received a copy of the GNU General Public License
30 ;; along with this program; see the file COPYING. If not, write to
31 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
32 ;; Boston, MA 02110-1301, USA.
33
34 ;;; Commentary:
35
36 ;;; Code:
37
38 (eval-when-compile
39 (let ((load-path
40 (if (and (boundp 'byte-compile-dest-file)
41 (stringp byte-compile-dest-file))
42 (cons (file-name-directory byte-compile-dest-file) load-path)
43 load-path)))
44 (load "cc-bytecomp" nil t)))
45
46 (cc-require 'cc-defs)
47 (cc-require 'cc-vars)
48 (cc-require 'cc-engine)
49
50 ;; Silence the compiler.
51 (cc-bytecomp-defun delete-forward-p) ; XEmacs
52 (cc-bytecomp-defvar filladapt-mode) ; c-fill-paragraph contains a kludge
53 ; which looks at this.
54 (cc-bytecomp-defun c-forward-subword)
55 (cc-bytecomp-defun c-backward-subword)
56 \f
57 ;; Indentation / Display syntax functions
58 (defvar c-fix-backslashes t)
59
60 (defun c-indent-line (&optional syntax quiet ignore-point-pos)
61 "Indent the current line according to the syntactic context,
62 if `c-syntactic-indentation' is non-nil. Optional SYNTAX is the
63 syntactic information for the current line. Be silent about syntactic
64 errors if the optional argument QUIET is non-nil, even if
65 `c-report-syntactic-errors' is non-nil. Normally the position of
66 point is used to decide where the old indentation is on a lines that
67 is otherwise empty \(ignoring any line continuation backslash), but
68 that's not done if IGNORE-POINT-POS is non-nil. Returns the amount of
69 indentation change \(in columns)."
70
71 (let ((line-cont-backslash (save-excursion
72 (end-of-line)
73 (eq (char-before) ?\\)))
74 (c-fix-backslashes c-fix-backslashes)
75 bs-col
76 shift-amt)
77 (when (and (not ignore-point-pos)
78 (save-excursion
79 (beginning-of-line)
80 (looking-at (if line-cont-backslash
81 ;; Don't use "\\s " - ^L doesn't count as WS
82 ;; here
83 "\\([ \t]*\\)\\\\$"
84 "\\([ \t]*\\)$")))
85 (<= (point) (match-end 1)))
86 ;; Delete all whitespace after point if there's only whitespace
87 ;; on the line, so that any code that does back-to-indentation
88 ;; or similar gets the current column in this case. If this
89 ;; removes a line continuation backslash it'll be restored
90 ;; at the end.
91 (unless c-auto-align-backslashes
92 ;; Should try to keep the backslash alignment
93 ;; in this case.
94 (save-excursion
95 (goto-char (match-end 0))
96 (setq bs-col (1- (current-column)))))
97 (delete-region (point) (match-end 0))
98 (setq c-fix-backslashes t))
99 (if c-syntactic-indentation
100 (setq c-parsing-error
101 (or (let ((c-parsing-error nil)
102 (c-syntactic-context
103 (or syntax
104 (and (boundp 'c-syntactic-context)
105 c-syntactic-context))))
106 (c-save-buffer-state (indent)
107 (unless c-syntactic-context
108 (setq c-syntactic-context (c-guess-basic-syntax)))
109 (setq indent (c-get-syntactic-indentation
110 c-syntactic-context))
111 (and (not (c-echo-parsing-error quiet))
112 c-echo-syntactic-information-p
113 (message "syntax: %s, indent: %d"
114 c-syntactic-context indent))
115 (setq shift-amt (- indent (current-indentation))))
116 (c-shift-line-indentation shift-amt)
117 (run-hooks 'c-special-indent-hook)
118 c-parsing-error)
119 c-parsing-error))
120 (let ((indent 0))
121 (save-excursion
122 (while (and (= (forward-line -1) 0)
123 (if (looking-at "\\s *\\\\?$")
124 t
125 (setq indent (current-indentation))
126 nil))))
127 (setq shift-amt (- indent (current-indentation)))
128 (c-shift-line-indentation shift-amt)))
129 (when (and c-fix-backslashes line-cont-backslash)
130 (if bs-col
131 (save-excursion
132 (indent-to bs-col)
133 (insert ?\\))
134 (when c-auto-align-backslashes
135 ;; Realign the line continuation backslash.
136 (c-backslash-region (point) (point) nil t))))
137 shift-amt))
138
139 (defun c-newline-and-indent (&optional newline-arg)
140 "Insert a newline and indent the new line.
141 This function fixes line continuation backslashes if inside a macro,
142 and takes care to set the indentation before calling
143 `indent-according-to-mode', so that lineup functions like
144 `c-lineup-dont-change' works better."
145
146 ;; TODO: Backslashes before eol in comments and literals aren't
147 ;; kept intact.
148 (let ((c-macro-start (c-query-macro-start))
149 ;; Avoid calling c-backslash-region from c-indent-line if it's
150 ;; called during the newline call, which can happen due to
151 ;; c-electric-continued-statement, for example. We also don't
152 ;; want any backslash alignment from indent-according-to-mode.
153 (c-fix-backslashes nil)
154 has-backslash insert-backslash
155 start col)
156 (save-excursion
157 (beginning-of-line)
158 (setq start (point))
159 (while (and (looking-at "[ \t]*\\\\?$")
160 (= (forward-line -1) 0)))
161 (setq col (current-indentation)))
162 (when c-macro-start
163 (if (and (eolp) (eq (char-before) ?\\))
164 (setq insert-backslash t
165 has-backslash t)
166 (setq has-backslash (eq (char-before (c-point 'eol)) ?\\))))
167 (newline newline-arg)
168 (indent-to col)
169 (when c-macro-start
170 (if insert-backslash
171 (progn
172 ;; The backslash stayed on the previous line. Insert one
173 ;; before calling c-backslash-region, so that
174 ;; bs-col-after-end in it works better. Fixup the
175 ;; backslashes on the newly inserted line.
176 (insert ?\\)
177 (backward-char)
178 (c-backslash-region (point) (point) nil t))
179 ;; The backslash moved to the new line, if there was any. Let
180 ;; c-backslash-region fix a backslash on the previous line,
181 ;; and the one that might be on the new line.
182 ;; c-auto-align-backslashes is intentionally ignored here;
183 ;; maybe the moved backslash should be left alone if it's set,
184 ;; but we fix both lines on the grounds that the old backslash
185 ;; has been moved anyway and is now in a different context.
186 (c-backslash-region start (if has-backslash (point) start) nil t)))
187 (when c-syntactic-indentation
188 ;; Reindent syntactically. The indentation done above is not
189 ;; wasted, since c-indent-line might look at the current
190 ;; indentation.
191 (let ((c-syntactic-context (c-save-buffer-state nil
192 (c-guess-basic-syntax))))
193 ;; We temporarily insert another line break, so that the
194 ;; lineup functions will see the line as empty. That makes
195 ;; e.g. c-lineup-cpp-define more intuitive since it then
196 ;; proceeds to the preceding line in this case.
197 (insert ?\n)
198 (delete-horizontal-space)
199 (setq start (- (point-max) (point)))
200 (unwind-protect
201 (progn
202 (backward-char)
203 (indent-according-to-mode))
204 (goto-char (- (point-max) start))
205 (delete-char -1)))
206 (when has-backslash
207 ;; Must align the backslash again after reindentation. The
208 ;; c-backslash-region call above can't be optimized to ignore
209 ;; this line, since it then won't align correctly with the
210 ;; lines below if the first line in the macro is broken.
211 (c-backslash-region (point) (point) nil t)))))
212
213 (defun c-show-syntactic-information (arg)
214 "Show syntactic information for current line.
215 With universal argument, inserts the analysis as a comment on that line."
216 (interactive "P")
217 (let* ((c-parsing-error nil)
218 (syntax (if (boundp 'c-syntactic-context)
219 ;; Use `c-syntactic-context' in the same way as
220 ;; `c-indent-line', to be consistent.
221 c-syntactic-context
222 (c-save-buffer-state nil
223 (c-guess-basic-syntax)))))
224 (if (not (consp arg))
225 (let (elem pos ols)
226 (message "Syntactic analysis: %s" syntax)
227 (unwind-protect
228 (progn
229 (while syntax
230 (setq elem (pop syntax))
231 (when (setq pos (c-langelem-pos elem))
232 (push (c-put-overlay pos (1+ pos)
233 'face 'highlight)
234 ols))
235 (when (setq pos (c-langelem-2nd-pos elem))
236 (push (c-put-overlay pos (1+ pos)
237 'face 'secondary-selection)
238 ols)))
239 (sit-for 10))
240 (while ols
241 (c-delete-overlay (pop ols)))))
242 (indent-for-comment)
243 (insert-and-inherit (format "%s" syntax))
244 ))
245 (c-keep-region-active))
246
247 (defun c-syntactic-information-on-region (from to)
248 "Insert a comment with the syntactic analysis on every line in the region."
249 (interactive "*r")
250 (save-excursion
251 (save-restriction
252 (narrow-to-region from to)
253 (goto-char (point-min))
254 (while (not (eobp))
255 (c-show-syntactic-information '(0))
256 (forward-line)))))
257
258 \f
259 ;; Minor mode functions.
260 (defun c-update-modeline ()
261 (let ((fmt (format "/%s%s%s%s"
262 (if c-electric-flag "l" "")
263 (if (and c-electric-flag c-auto-newline)
264 "a" "")
265 (if c-hungry-delete-key "h" "")
266 (if (and
267 ;; cc-subword might not be loaded.
268 (boundp 'c-subword-mode)
269 (symbol-value 'c-subword-mode))
270 "w"
271 "")))
272 (bare-mode-name (if (string-match "\\(^[^/]*\\)/" mode-name)
273 (substring mode-name (match-beginning 1) (match-end 1))
274 mode-name)))
275 ;; (setq c-submode-indicators
276 ;; (if (> (length fmt) 1)
277 ;; fmt))
278 (setq mode-name
279 (if (> (length fmt) 1)
280 (concat bare-mode-name fmt)
281 bare-mode-name))
282 (force-mode-line-update)))
283
284 (defun c-toggle-syntactic-indentation (&optional arg)
285 "Toggle syntactic indentation.
286 Optional numeric ARG, if supplied, turns on syntactic indentation when
287 positive, turns it off when negative, and just toggles it when zero or
288 left out.
289
290 When syntactic indentation is turned on (the default), the indentation
291 functions and the electric keys indent according to the syntactic
292 context keys, when applicable.
293
294 When it's turned off, the electric keys don't reindent, the indentation
295 functions indents every new line to the same level as the previous
296 nonempty line, and \\[c-indent-command] adjusts the indentation in steps
297 specified by `c-basic-offset'. The indentation style has no effect in
298 this mode, nor any of the indentation associated variables,
299 e.g. `c-special-indent-hook'.
300
301 This command sets the variable `c-syntactic-indentation'."
302 (interactive "P")
303 (setq c-syntactic-indentation
304 (c-calculate-state arg c-syntactic-indentation))
305 (c-keep-region-active))
306
307 (defun c-toggle-auto-newline (&optional arg)
308 "Toggle auto-newline feature.
309 Optional numeric ARG, if supplied, turns on auto-newline when
310 positive, turns it off when negative, and just toggles it when zero or
311 left out.
312
313 Turning on auto-newline automatically enables electric indentation.
314
315 When the auto-newline feature is enabled (indicated by \"/la\" on the
316 modeline after the mode name) newlines are automatically inserted
317 after special characters such as brace, comma, semi-colon, and colon."
318 (interactive "P")
319 (setq c-auto-newline
320 (c-calculate-state arg (and c-auto-newline c-electric-flag)))
321 (if c-auto-newline (setq c-electric-flag t))
322 (c-update-modeline)
323 (c-keep-region-active))
324
325 (defalias 'c-toggle-auto-state 'c-toggle-auto-newline)
326 (make-obsolete 'c-toggle-auto-state 'c-toggle-auto-newline)
327
328 (defun c-toggle-hungry-state (&optional arg)
329 "Toggle hungry-delete-key feature.
330 Optional numeric ARG, if supplied, turns on hungry-delete when
331 positive, turns it off when negative, and just toggles it when zero or
332 left out.
333
334 When the hungry-delete-key feature is enabled (indicated by \"/h\" on
335 the modeline after the mode name) the delete key gobbles all preceding
336 whitespace in one fell swoop."
337 (interactive "P")
338 (setq c-hungry-delete-key (c-calculate-state arg c-hungry-delete-key))
339 (c-update-modeline)
340 (c-keep-region-active))
341
342 (defun c-toggle-auto-hungry-state (&optional arg)
343 "Toggle auto-newline and hungry-delete-key features.
344 Optional numeric ARG, if supplied, turns on auto-newline and
345 hungry-delete when positive, turns them off when negative, and just
346 toggles them when zero or left out.
347
348 See `c-toggle-auto-newline' and `c-toggle-hungry-state' for details."
349 (interactive "P")
350 (setq c-auto-newline (c-calculate-state arg c-auto-newline))
351 (setq c-hungry-delete-key (c-calculate-state arg c-hungry-delete-key))
352 (c-update-modeline)
353 (c-keep-region-active))
354
355 (defun c-toggle-electric-state (&optional arg)
356 "Toggle the electric indentation feature.
357 Optional numeric ARG, if supplied, turns on electric indentation when
358 positive, turns it off when negative, and just toggles it when zero or
359 left out."
360 (interactive "P")
361 (setq c-electric-flag (c-calculate-state arg c-electric-flag))
362 (c-update-modeline)
363 (c-keep-region-active))
364
365 \f
366 ;; Electric keys
367
368 (defun c-electric-backspace (arg)
369 "Delete the preceding character or whitespace.
370 If `c-hungry-delete-key' is non-nil (indicated by \"/h\" on the mode
371 line) then all preceding whitespace is consumed. If however a prefix
372 argument is supplied, or `c-hungry-delete-key' is nil, or point is
373 inside a literal then the function in the variable
374 `c-backspace-function' is called."
375 (interactive "*P")
376 (if (c-save-buffer-state ()
377 (or (not c-hungry-delete-key)
378 arg
379 (c-in-literal)))
380 (funcall c-backspace-function (prefix-numeric-value arg))
381 (c-hungry-delete-backwards)))
382
383 (defun c-hungry-delete-backwards ()
384 "Delete the preceding character or all preceding whitespace
385 back to the previous non-whitespace character.
386 See also \\[c-hungry-delete-forward]."
387 (interactive)
388 (let ((here (point)))
389 (c-skip-ws-backward)
390 (if (/= (point) here)
391 (delete-region (point) here)
392 (funcall c-backspace-function 1))))
393
394 (defalias 'c-hungry-backspace 'c-hungry-delete-backwards)
395
396 (defun c-electric-delete-forward (arg)
397 "Delete the following character or whitespace.
398 If `c-hungry-delete-key' is non-nil (indicated by \"/h\" on the mode
399 line) then all following whitespace is consumed. If however a prefix
400 argument is supplied, or `c-hungry-delete-key' is nil, or point is
401 inside a literal then the function in the variable `c-delete-function'
402 is called."
403 (interactive "*P")
404 (if (c-save-buffer-state ()
405 (or (not c-hungry-delete-key)
406 arg
407 (c-in-literal)))
408 (funcall c-delete-function (prefix-numeric-value arg))
409 (c-hungry-delete-forward)))
410
411 (defun c-hungry-delete-forward ()
412 "Delete the following character or all following whitespace
413 up to the next non-whitespace character.
414 See also \\[c-hungry-delete-backwards]."
415 (interactive)
416 (let ((here (point)))
417 (c-skip-ws-forward)
418 (if (/= (point) here)
419 (delete-region (point) here)
420 (funcall c-delete-function 1))))
421
422 ;; This function is only used in XEmacs.
423 (defun c-electric-delete (arg)
424 "Deletes preceding or following character or whitespace.
425 This function either deletes forward as `c-electric-delete-forward' or
426 backward as `c-electric-backspace', depending on the configuration: If
427 the function `delete-forward-p' is defined and returns non-nil, it
428 deletes forward. Otherwise it deletes backward.
429
430 Note: This is the way in XEmacs to choose the correct action for the
431 \[delete] key, whichever key that means. Other flavors don't use this
432 function to control that."
433 (interactive "*P")
434 (if (and (fboundp 'delete-forward-p)
435 (delete-forward-p))
436 (c-electric-delete-forward arg)
437 (c-electric-backspace arg)))
438
439 ;; This function is only used in XEmacs.
440 (defun c-hungry-delete ()
441 "Delete a non-whitespace char, or all whitespace up to the next non-whitespace char.
442 The direction of deletion depends on the configuration: If the
443 function `delete-forward-p' is defined and returns non-nil, it deletes
444 forward using `c-hungry-delete-forward'. Otherwise it deletes
445 backward using `c-hungry-backspace'.
446
447 Note: This is the way in XEmacs to choose the correct action for the
448 \[delete] key, whichever key that means. Other flavors don't use this
449 function to control that."
450 (interactive)
451 (if (and (fboundp 'delete-forward-p)
452 (delete-forward-p))
453 (c-hungry-delete-forward)
454 (c-hungry-delete-backwards)))
455
456 (defun c-electric-pound (arg)
457 "Insert a \"#\".
458 If `c-electric-flag' is set, handle it specially according to the variable
459 `c-electric-pound-behavior'. If a numeric ARG is supplied, or if point is
460 inside a literal or a macro, nothing special happens."
461 (interactive "*P")
462 (if (c-save-buffer-state ()
463 (or arg
464 (not c-electric-flag)
465 (not (memq 'alignleft c-electric-pound-behavior))
466 (save-excursion
467 (skip-chars-backward " \t")
468 (not (bolp)))
469 (save-excursion
470 (and (= (forward-line -1) 0)
471 (progn (end-of-line)
472 (eq (char-before) ?\\))))
473 (c-in-literal)))
474 ;; do nothing special
475 (self-insert-command (prefix-numeric-value arg))
476 ;; place the pound character at the left edge
477 (let ((pos (- (point-max) (point)))
478 (bolp (bolp)))
479 (beginning-of-line)
480 (delete-horizontal-space)
481 (insert last-command-char)
482 (and (not bolp)
483 (goto-char (- (point-max) pos)))
484 )))
485
486 (defun c-point-syntax ()
487 ;; Return the syntactic context of the construct at point. (This is NOT
488 ;; nec. the same as the s.c. of the line point is on). N.B. This won't work
489 ;; between the `#' of a cpp thing and what follows (see c-opt-cpp-prefix).
490 (c-save-buffer-state (;; shut this up too
491 (c-echo-syntactic-information-p nil)
492 syntax)
493 (c-tentative-buffer-changes
494 ;; insert a newline to isolate the construct at point for syntactic
495 ;; analysis.
496 (insert-char ?\n 1)
497 ;; In AWK (etc.) or in a macro, make sure this CR hasn't changed
498 ;; the syntax. (There might already be an escaped NL there.)
499 (when (or (c-at-vsemi-p (1- (point)))
500 (let ((pt (point)))
501 (save-excursion
502 (backward-char)
503 (and (c-beginning-of-macro)
504 (progn (c-end-of-macro)
505 (< (point) pt))))))
506 (backward-char)
507 (insert-char ?\\ 1)
508 (forward-char))
509 (let ((c-syntactic-indentation-in-macros t)
510 (c-auto-newline-analysis t))
511 ;; Turn on syntactic macro analysis to help with auto
512 ;; newlines only.
513 (setq syntax (c-guess-basic-syntax))
514 nil))
515 syntax))
516
517 (defun c-brace-newlines (syntax)
518 ;; A brace stands at point. SYNTAX is the syntactic context of this brace
519 ;; (not necessarily the same as the S.C. of the line it is on). Return
520 ;; NEWLINES, the list containing some combination of the symbols `before'
521 ;; and `after' saying where newlines should be inserted.
522 (c-save-buffer-state
523 ((syms
524 ;; This is the list of brace syntactic symbols that can hang.
525 ;; If any new ones are added to c-offsets-alist, they should be
526 ;; added here as well.
527 '(class-open class-close defun-open defun-close
528 inline-open inline-close
529 brace-list-open brace-list-close
530 brace-list-intro brace-entry-open
531 block-open block-close
532 substatement-open statement-case-open
533 extern-lang-open extern-lang-close
534 namespace-open namespace-close
535 module-open module-close
536 composition-open composition-close
537 inexpr-class-open inexpr-class-close
538 ;; `statement-cont' is here for the case with a brace
539 ;; list opener inside a statement. C.f. CASE B.2 in
540 ;; `c-guess-continued-construct'.
541 statement-cont))
542 ;; shut this up too
543 (c-echo-syntactic-information-p nil)
544 symb-newlines) ; e.g. (substatement-open . (after))
545
546 (setq symb-newlines
547 ;; Do not try to insert newlines around a special
548 ;; (Pike-style) brace list.
549 (if (and c-special-brace-lists
550 (save-excursion
551 (c-safe (if (= (char-before) ?{)
552 (forward-char -1)
553 (c-forward-sexp -1))
554 (c-looking-at-special-brace-list))))
555 nil
556 ;; Seek the matching entry in c-hanging-braces-alist.
557 (or (c-lookup-lists
558 syms
559 ;; Substitute inexpr-class and class-open or
560 ;; class-close with inexpr-class-open or
561 ;; inexpr-class-close.
562 (if (assq 'inexpr-class syntax)
563 (cond ((assq 'class-open syntax)
564 '((inexpr-class-open)))
565 ((assq 'class-close syntax)
566 '((inexpr-class-close)))
567 (t syntax))
568 syntax)
569 c-hanging-braces-alist)
570 '(ignore before after)))) ; Default, when not in c-h-b-l.
571
572 ;; If syntax is a function symbol, then call it using the
573 ;; defined semantics.
574 (if (and (not (consp (cdr symb-newlines)))
575 (functionp (cdr symb-newlines)))
576 (let ((c-syntactic-context syntax))
577 (funcall (cdr symb-newlines)
578 (car symb-newlines)
579 (point)))
580 (cdr symb-newlines))))
581
582 (defun c-try-one-liner ()
583 ;; Point is just after a newly inserted }. If the non-whitespace
584 ;; content of the braces is a single line of code, compact the whole
585 ;; construct to a single line, if this line isn't too long. The Right
586 ;; Thing is done with comments.
587 ;;
588 ;; Point will be left after the }, regardless of whether the clean-up is
589 ;; done. Return NON-NIL if the clean-up happened, NIL if it didn't.
590
591 (let ((here (point))
592 (pos (- (point-max) (point)))
593 mbeg1 mend1 mbeg4 mend4
594 eol-col cmnt-pos cmnt-col cmnt-gap)
595
596 (when
597 (save-excursion
598 (save-restriction
599 ;; Avoid backtracking over a very large block. The one we
600 ;; deal with here can never be more than three lines.
601 (narrow-to-region (save-excursion
602 (forward-line -2)
603 (point))
604 (point))
605 (and (c-safe (c-backward-sexp))
606 (progn
607 (forward-char)
608 (narrow-to-region (point) (1- here)) ; innards of {.}
609 (looking-at
610 (cc-eval-when-compile
611 (concat
612 "\\(" ; (match-beginning 1)
613 "[ \t]*\\([\r\n][ \t]*\\)?" ; WS with opt. NL
614 "\\)" ; (match-end 1)
615 "[^ \t\r\n]+\\([ \t]+[^ \t\r\n]+\\)*" ; non-WS
616 "\\(" ; (match-beginning 4)
617 "[ \t]*\\([\r\n][ \t]*\\)?" ; WS with opt. NL
618 "\\)\\'"))))))) ; (match-end 4) at EOB.
619
620 (if (c-tentative-buffer-changes
621 (setq mbeg1 (match-beginning 1) mend1 (match-end 1)
622 mbeg4 (match-beginning 4) mend4 (match-end 4))
623 (backward-char) ; back over the `}'
624 (save-excursion
625 (setq cmnt-pos (and (c-backward-single-comment)
626 (- (point) (- mend1 mbeg1)))))
627 (delete-region mbeg4 mend4)
628 (delete-region mbeg1 mend1)
629 (setq eol-col (save-excursion (end-of-line) (current-column)))
630
631 ;; Necessary to put the closing brace before any line
632 ;; oriented comment to keep it syntactically significant.
633 ;; This isn't necessary for block comments, but the result
634 ;; looks nicer anyway.
635 (when cmnt-pos
636 (delete-char 1) ; the `}' has blundered into a comment
637 (goto-char cmnt-pos)
638 (setq cmnt-col (1+ (current-column)))
639 (setq cmnt-pos (1+ cmnt-pos)) ; we're inserting a `}'
640 (c-skip-ws-backward)
641 (insert-char ?\} 1) ; reinsert the `}' before the comment.
642 (setq cmnt-gap (- cmnt-col (current-column)))
643 (when (zerop cmnt-gap)
644 (insert-char ?\ 1) ; Put a space before a bare comment.
645 (setq cmnt-gap 1)))
646
647 (or (null c-max-one-liner-length)
648 (zerop c-max-one-liner-length)
649 (<= eol-col c-max-one-liner-length)
650 ;; Can we trim space before comment to make the line fit?
651 (and cmnt-gap
652 (< (- eol-col cmnt-gap) c-max-one-liner-length)
653 (progn (goto-char cmnt-pos)
654 (backward-delete-char-untabify
655 (- eol-col c-max-one-liner-length))
656 t))))
657 (goto-char (- (point-max) pos))))))
658
659 (defun c-electric-brace (arg)
660 "Insert a brace.
661
662 If `c-electric-flag' is non-nil, the brace is not inside a literal and a
663 numeric ARG hasn't been supplied, the command performs several electric
664 actions:
665
666 \(a) If the auto-newline feature is turned on (indicated by \"/la\" on
667 the mode line) newlines are inserted before and after the brace as
668 directed by the settings in `c-hanging-braces-alist'.
669
670 \(b) Any auto-newlines are indented. The original line is also
671 reindented unless `c-syntactic-indentation' is nil.
672
673 \(c) If auto-newline is turned on, various newline cleanups based on the
674 settings of `c-cleanup-list' are done."
675
676 (interactive "*P")
677 (let (safepos literal
678 ;; We want to inhibit blinking the paren since this would be
679 ;; most disruptive. We'll blink it ourselves later on.
680 (old-blink-paren blink-paren-function)
681 blink-paren-function)
682
683 (c-save-buffer-state ()
684 (setq safepos (c-safe-position (point) (c-parse-state))
685 literal (c-in-literal safepos)))
686
687 ;; Insert the brace. Note that expand-abbrev might reindent
688 ;; the line here if there's a preceding "else" or something.
689 (self-insert-command (prefix-numeric-value arg))
690
691 (when (and c-electric-flag (not literal) (not arg))
692 (if (not (looking-at "[ \t]*\\\\?$"))
693 (if c-syntactic-indentation
694 (indent-according-to-mode))
695
696 (let ( ;; shut this up too
697 (c-echo-syntactic-information-p nil)
698 newlines
699 ln-syntax br-syntax syntax) ; Syntactic context of the original line,
700 ; of the brace itself, of the line the brace ends up on.
701 (c-save-buffer-state ((c-syntactic-indentation-in-macros t)
702 (c-auto-newline-analysis t))
703 (setq ln-syntax (c-guess-basic-syntax)))
704 (if c-syntactic-indentation
705 (c-indent-line ln-syntax))
706
707 (when c-auto-newline
708 (backward-char)
709 (setq br-syntax (c-point-syntax)
710 newlines (c-brace-newlines br-syntax))
711
712 ;; Insert the BEFORE newline, if wanted, and reindent the newline.
713 (if (and (memq 'before newlines)
714 (> (current-column) (current-indentation)))
715 (if c-syntactic-indentation
716 ;; Only a plain newline for now - it's indented
717 ;; after the cleanups when the line has its final
718 ;; appearance.
719 (newline)
720 (c-newline-and-indent)))
721 (forward-char)
722
723 ;; `syntax' is the syntactic context of the line which ends up
724 ;; with the brace on it.
725 (setq syntax (if (memq 'before newlines) br-syntax ln-syntax))
726
727 ;; Do all appropriate clean ups
728 (let ((here (point))
729 (pos (- (point-max) (point)))
730 mbeg mend
731 )
732
733 ;; `}': clean up empty defun braces
734 (when (c-save-buffer-state ()
735 (and (memq 'empty-defun-braces c-cleanup-list)
736 (eq last-command-char ?\})
737 (c-intersect-lists '(defun-close class-close inline-close)
738 syntax)
739 (progn
740 (forward-char -1)
741 (c-skip-ws-backward)
742 (eq (char-before) ?\{))
743 ;; make sure matching open brace isn't in a comment
744 (not (c-in-literal))))
745 (delete-region (point) (1- here))
746 (setq here (- (point-max) pos)))
747 (goto-char here)
748
749 ;; `}': compact to a one-liner defun?
750 (save-match-data
751 (when
752 (and (eq last-command-char ?\})
753 (memq 'one-liner-defun c-cleanup-list)
754 (c-intersect-lists '(defun-close) syntax)
755 (c-try-one-liner))
756 (setq here (- (point-max) pos))))
757
758 ;; `{': clean up brace-else-brace and brace-elseif-brace
759 (when (eq last-command-char ?\{)
760 (cond
761 ((and (memq 'brace-else-brace c-cleanup-list)
762 (re-search-backward
763 (concat "}"
764 "\\([ \t\n]\\|\\\\\n\\)*"
765 "else"
766 "\\([ \t\n]\\|\\\\\n\\)*"
767 "{"
768 "\\=")
769 nil t))
770 (delete-region (match-beginning 0) (match-end 0))
771 (insert-and-inherit "} else {"))
772 ((and (memq 'brace-elseif-brace c-cleanup-list)
773 (progn
774 (goto-char (1- here))
775 (setq mend (point))
776 (c-skip-ws-backward)
777 (setq mbeg (point))
778 (eq (char-before) ?\)))
779 (zerop (c-save-buffer-state nil (c-backward-token-2 1 t)))
780 (eq (char-after) ?\()
781 ; (progn
782 ; (setq tmp (point))
783 (re-search-backward
784 (concat "}"
785 "\\([ \t\n]\\|\\\\\n\\)*"
786 "else"
787 "\\([ \t\n]\\|\\\\\n\\)+"
788 "if"
789 "\\([ \t\n]\\|\\\\\n\\)*"
790 "\\=")
791 nil t);)
792 ;(eq (match-end 0) tmp);
793 )
794 (delete-region mbeg mend)
795 (goto-char mbeg)
796 (insert ?\ ))))
797
798 (goto-char (- (point-max) pos))
799
800 ;; Indent the line after the cleanups since it might
801 ;; very well indent differently due to them, e.g. if
802 ;; c-indent-one-line-block is used together with the
803 ;; one-liner-defun cleanup.
804 (when c-syntactic-indentation
805 (c-indent-line)))
806
807 ;; does a newline go after the brace?
808 (if (memq 'after newlines)
809 (c-newline-and-indent))
810 ))))
811
812 ;; blink the paren
813 (and (eq last-command-char ?\})
814 (not executing-kbd-macro)
815 old-blink-paren
816 (save-excursion
817 (c-save-buffer-state nil
818 (c-backward-syntactic-ws safepos))
819 (funcall old-blink-paren)))))
820
821 (defun c-electric-slash (arg)
822 "Insert a slash character.
823
824 If the slash is inserted immediately after the comment prefix in a c-style
825 comment, the comment might get closed by removing whitespace and possibly
826 inserting a \"*\". See the variable `c-cleanup-list'.
827
828 Indent the line as a comment, if:
829
830 1. The slash is second of a \"//\" line oriented comment introducing
831 token and we are on a comment-only-line, or
832
833 2. The slash is part of a \"*/\" token that closes a block oriented
834 comment.
835
836 If a numeric ARG is supplied, point is inside a literal, or
837 `c-syntactic-indentation' is nil or `c-electric-flag' is nil, indentation
838 is inhibited."
839 (interactive "*P")
840 (let ((literal (c-save-buffer-state () (c-in-literal)))
841 indentp
842 ;; shut this up
843 (c-echo-syntactic-information-p nil))
844
845 ;; comment-close-slash cleanup? This DOESN'T need `c-electric-flag' or
846 ;; `c-syntactic-indentation' set.
847 (when (and (not arg)
848 (eq literal 'c)
849 (memq 'comment-close-slash c-cleanup-list)
850 (eq last-command-char ?/)
851 (looking-at (concat "[ \t]*\\("
852 (regexp-quote comment-end) "\\)?$"))
853 ; (eq c-block-comment-ender "*/") ; C-style comments ALWAYS end in */
854 (save-excursion
855 (save-restriction
856 (narrow-to-region (point-min) (point))
857 (back-to-indentation)
858 (looking-at (concat c-current-comment-prefix "[ \t]*$")))))
859 (delete-region (progn (forward-line 0) (point))
860 (progn (end-of-line) (point)))
861 (insert-char ?* 1)) ; the / comes later. ; Do I need a t (retain sticky properties) here?
862
863 (setq indentp (and (not arg)
864 c-syntactic-indentation
865 c-electric-flag
866 (eq last-command-char ?/)
867 (eq (char-before) (if literal ?* ?/))))
868 (self-insert-command (prefix-numeric-value arg))
869 (if indentp
870 (indent-according-to-mode))))
871
872 (defun c-electric-star (arg)
873 "Insert a star character.
874 If `c-electric-flag' and `c-syntactic-indentation' are both non-nil, and
875 the star is the second character of a C style comment starter on a
876 comment-only-line, indent the line as a comment. If a numeric ARG is
877 supplied, point is inside a literal, or `c-syntactic-indentation' is nil,
878 this indentation is inhibited."
879
880 (interactive "*P")
881 (self-insert-command (prefix-numeric-value arg))
882 ;; if we are in a literal, or if arg is given do not reindent the
883 ;; current line, unless this star introduces a comment-only line.
884 (if (c-save-buffer-state ()
885 (and c-syntactic-indentation
886 c-electric-flag
887 (not arg)
888 (eq (c-in-literal) 'c)
889 (eq (char-before) ?*)
890 (save-excursion
891 (forward-char -1)
892 (skip-chars-backward "*")
893 (if (eq (char-before) ?/)
894 (forward-char -1))
895 (skip-chars-backward " \t")
896 (bolp))))
897 (let (c-echo-syntactic-information-p) ; shut this up
898 (indent-according-to-mode))
899 ))
900
901 (defun c-electric-semi&comma (arg)
902 "Insert a comma or semicolon.
903
904 If `c-electric-flag' is non-nil, point isn't inside a literal and a
905 numeric ARG hasn't been supplied, the command performs several electric
906 actions:
907
908 \(a) When the auto-newline feature is turned on (indicated by \"/la\" on
909 the mode line) a newline might be inserted. See the variable
910 `c-hanging-semi&comma-criteria' for how newline insertion is determined.
911
912 \(b) Any auto-newlines are indented. The original line is also
913 reindented unless `c-syntactic-indentation' is nil.
914
915 \(c) If auto-newline is turned on, a comma following a brace list or a
916 semicolon following a defun might be cleaned up, depending on the
917 settings of `c-cleanup-list'."
918 (interactive "*P")
919 (let* (lim literal c-syntactic-context
920 (here (point))
921 ;; shut this up
922 (c-echo-syntactic-information-p nil))
923
924 (c-save-buffer-state ()
925 (setq lim (c-most-enclosing-brace (c-parse-state))
926 literal (c-in-literal lim)))
927
928 (self-insert-command (prefix-numeric-value arg))
929
930 (if (and c-electric-flag (not literal) (not arg))
931 ;; do all cleanups and newline insertions if c-auto-newline is on.
932 (if (or (not c-auto-newline)
933 (not (looking-at "[ \t]*\\\\?$")))
934 (if c-syntactic-indentation
935 (c-indent-line))
936 ;; clean ups: list-close-comma or defun-close-semi
937 (let ((pos (- (point-max) (point))))
938 (if (c-save-buffer-state ()
939 (and (or (and
940 (eq last-command-char ?,)
941 (memq 'list-close-comma c-cleanup-list))
942 (and
943 (eq last-command-char ?\;)
944 (memq 'defun-close-semi c-cleanup-list)))
945 (progn
946 (forward-char -1)
947 (c-skip-ws-backward)
948 (eq (char-before) ?}))
949 ;; make sure matching open brace isn't in a comment
950 (not (c-in-literal lim))))
951 (delete-region (point) here))
952 (goto-char (- (point-max) pos)))
953 ;; reindent line
954 (when c-syntactic-indentation
955 (setq c-syntactic-context (c-guess-basic-syntax))
956 (c-indent-line c-syntactic-context))
957 ;; check to see if a newline should be added
958 (let ((criteria c-hanging-semi&comma-criteria)
959 answer add-newline-p)
960 (while criteria
961 (setq answer (funcall (car criteria)))
962 ;; only nil value means continue checking
963 (if (not answer)
964 (setq criteria (cdr criteria))
965 (setq criteria nil)
966 ;; only 'stop specifically says do not add a newline
967 (setq add-newline-p (not (eq answer 'stop)))
968 ))
969 (if add-newline-p
970 (c-newline-and-indent))
971 )))))
972
973 (defun c-electric-colon (arg)
974 "Insert a colon.
975
976 If `c-electric-flag' is non-nil, the colon is not inside a literal and a
977 numeric ARG hasn't been supplied, the command performs several electric
978 actions:
979
980 \(a) If the auto-newline feature is turned on (indicated by \"/la\" on
981 the mode line) newlines are inserted before and after the colon based on
982 the settings in `c-hanging-colons-alist'.
983
984 \(b) Any auto-newlines are indented. The original line is also
985 reindented unless `c-syntactic-indentation' is nil.
986
987 \(c) If auto-newline is turned on, whitespace between two colons will be
988 \"cleaned up\" leaving a scope operator, if this action is set in
989 `c-cleanup-list'."
990
991 (interactive "*P")
992 (let* ((bod (c-point 'bod))
993 (literal (c-save-buffer-state () (c-in-literal bod)))
994 newlines is-scope-op
995 ;; shut this up
996 (c-echo-syntactic-information-p nil))
997 (self-insert-command (prefix-numeric-value arg))
998 ;; Any electric action?
999 (if (and c-electric-flag (not literal) (not arg))
1000 ;; Unless we're at EOL, only re-indentation happens.
1001 (if (not (looking-at "[ \t]*\\\\?$"))
1002 (if c-syntactic-indentation
1003 (indent-according-to-mode))
1004
1005 ;; scope-operator clean-up?
1006 (let ((pos (- (point-max) (point)))
1007 (here (point)))
1008 (if (c-save-buffer-state () ; Why do we need this? [ACM, 2003-03-12]
1009 (and c-auto-newline
1010 (memq 'scope-operator c-cleanup-list)
1011 (eq (char-before) ?:)
1012 (progn
1013 (forward-char -1)
1014 (c-skip-ws-backward)
1015 (eq (char-before) ?:))
1016 (not (c-in-literal))
1017 (not (eq (char-after (- (point) 2)) ?:))))
1018 (progn
1019 (delete-region (point) (1- here))
1020 (setq is-scope-op t)))
1021 (goto-char (- (point-max) pos)))
1022
1023 ;; indent the current line if it's done syntactically.
1024 (if c-syntactic-indentation
1025 ;; Cannot use the same syntax analysis as we find below,
1026 ;; since that's made with c-syntactic-indentation-in-macros
1027 ;; always set to t.
1028 (indent-according-to-mode))
1029
1030 ;; Calculate where, if anywhere, we want newlines.
1031 (c-save-buffer-state
1032 ((c-syntactic-indentation-in-macros t)
1033 (c-auto-newline-analysis t)
1034 ;; Turn on syntactic macro analysis to help with auto newlines
1035 ;; only.
1036 (syntax (c-guess-basic-syntax))
1037 (elem syntax))
1038 ;; Translate substatement-label to label for this operation.
1039 (while elem
1040 (if (eq (car (car elem)) 'substatement-label)
1041 (setcar (car elem) 'label))
1042 (setq elem (cdr elem)))
1043 ;; some language elements can only be determined by checking
1044 ;; the following line. Lets first look for ones that can be
1045 ;; found when looking on the line with the colon
1046 (setq newlines
1047 (and c-auto-newline
1048 (or (c-lookup-lists '(case-label label access-label)
1049 syntax c-hanging-colons-alist)
1050 (c-lookup-lists '(member-init-intro inher-intro)
1051 (progn
1052 (insert ?\n)
1053 (unwind-protect
1054 (c-guess-basic-syntax)
1055 (delete-char -1)))
1056 c-hanging-colons-alist)))))
1057 ;; does a newline go before the colon? Watch out for already
1058 ;; non-hung colons. However, we don't unhang them because that
1059 ;; would be a cleanup (and anti-social).
1060 (if (and (memq 'before newlines)
1061 (not is-scope-op)
1062 (save-excursion
1063 (skip-chars-backward ": \t")
1064 (not (bolp))))
1065 (let ((pos (- (point-max) (point))))
1066 (forward-char -1)
1067 (c-newline-and-indent)
1068 (goto-char (- (point-max) pos))))
1069 ;; does a newline go after the colon?
1070 (if (and (memq 'after (cdr-safe newlines))
1071 (not is-scope-op))
1072 (c-newline-and-indent))
1073 ))))
1074
1075 (defun c-electric-lt-gt (arg)
1076 "Insert a \"<\" or \">\" character.
1077 If the current language uses angle bracket parens (e.g. template
1078 arguments in C++), try to find out if the inserted character is a
1079 paren and give it paren syntax if appropriate.
1080
1081 If `c-electric-flag' and `c-syntactic-indentation' are both non-nil, the
1082 line will be reindented if the inserted character is a paren or if it
1083 finishes a C++ style stream operator in C++ mode. Exceptions are when a
1084 numeric argument is supplied, or the point is inside a literal."
1085
1086 (interactive "*P")
1087 (let ((c-echo-syntactic-information-p nil)
1088 final-pos close-paren-inserted)
1089
1090 (self-insert-command (prefix-numeric-value arg))
1091 (setq final-pos (point))
1092
1093 (c-save-buffer-state (c-parse-and-markup-<>-arglists
1094 c-restricted-<>-arglists
1095 <-pos)
1096
1097 (when c-recognize-<>-arglists
1098 (if (eq last-command-char ?<)
1099 (when (and (progn
1100 (backward-char)
1101 (= (point)
1102 (progn
1103 (c-beginning-of-current-token)
1104 (point))))
1105 (progn
1106 (c-backward-token-2)
1107 (looking-at c-opt-<>-sexp-key)))
1108 (c-mark-<-as-paren (1- final-pos)))
1109
1110 ;; It's a ">". Check if there's an earlier "<" which either has
1111 ;; open paren syntax already or that can be recognized as an arglist
1112 ;; together with this ">". Note that this won't work in cases like
1113 ;; "template <x, a < b, y>" but they ought to be rare.
1114
1115 (save-restriction
1116 ;; Narrow to avoid that `c-forward-<>-arglist' below searches past
1117 ;; our position.
1118 (narrow-to-region (point-min) final-pos)
1119
1120 (while (and
1121 (progn
1122 (goto-char final-pos)
1123 (c-syntactic-skip-backward "^<;}" nil t)
1124 (eq (char-before) ?<))
1125 (progn
1126 (backward-char)
1127 ;; If the "<" already got open paren syntax we know we
1128 ;; have the matching closer. Handle it and exit the
1129 ;; loop.
1130 (if (looking-at "\\s\(")
1131 (progn
1132 (c-mark->-as-paren (1- final-pos))
1133 (setq close-paren-inserted t)
1134 nil)
1135 t))
1136
1137 (progn
1138 (setq <-pos (point))
1139 (c-backward-syntactic-ws)
1140 (c-simple-skip-symbol-backward))
1141 (or (looking-at c-opt-<>-sexp-key)
1142 (not (looking-at c-keywords-regexp)))
1143
1144 (let ((c-parse-and-markup-<>-arglists t)
1145 c-restricted-<>-arglists
1146 (containing-sexp
1147 (c-most-enclosing-brace (c-parse-state))))
1148 (when (and containing-sexp
1149 (progn (goto-char containing-sexp)
1150 (eq (char-after) ?\())
1151 (not (eq (get-text-property (point) 'c-type)
1152 'c-decl-arg-start)))
1153 (setq c-restricted-<>-arglists t))
1154 (goto-char <-pos)
1155 (c-forward-<>-arglist nil))
1156
1157 ;; Loop here if the "<" we found above belongs to a nested
1158 ;; angle bracket sexp. When we start over we'll find the
1159 ;; previous or surrounding sexp.
1160 (if (< (point) final-pos)
1161 t
1162 (setq close-paren-inserted t)
1163 nil)))))))
1164 (goto-char final-pos)
1165
1166 ;; Indent the line if appropriate.
1167 (when (and c-electric-flag c-syntactic-indentation)
1168 (backward-char)
1169 (when (prog1 (or (looking-at "\\s\(\\|\\s\)")
1170 (and (c-major-mode-is 'c++-mode)
1171 (progn
1172 (c-beginning-of-current-token)
1173 (looking-at "<<\\|>>"))
1174 (= (match-end 0) final-pos)))
1175 (goto-char final-pos))
1176 (indent-according-to-mode)))
1177
1178 (when (and close-paren-inserted
1179 (not executing-kbd-macro)
1180 blink-paren-function)
1181 ;; Note: Most paren blink functions, such as the standard
1182 ;; `blink-matching-open', currently doesn't handle paren chars
1183 ;; marked with text properties very well. Maybe we should avoid
1184 ;; this call for the time being?
1185 (funcall blink-paren-function))))
1186
1187 (defun c-electric-paren (arg)
1188 "Insert a parenthesis.
1189
1190 If `c-syntactic-indentation' and `c-electric-flag' are both non-nil, the
1191 line is reindented unless a numeric ARG is supplied, or the parenthesis
1192 is inserted inside a literal.
1193
1194 Whitespace between a function name and the parenthesis may get added or
1195 removed; see the variable `c-cleanup-list'.
1196
1197 Also, if `c-electric-flag' and `c-auto-newline' are both non-nil, some
1198 newline cleanups are done if appropriate; see the variable `c-cleanup-list'."
1199 (interactive "*P")
1200 (let ((literal (c-save-buffer-state () (c-in-literal)))
1201 ;; shut this up
1202 (c-echo-syntactic-information-p nil))
1203 (self-insert-command (prefix-numeric-value arg))
1204
1205 (if (and (not arg) (not literal))
1206 (let* ( ;; We want to inhibit blinking the paren since this will
1207 ;; be most disruptive. We'll blink it ourselves
1208 ;; afterwards.
1209 (old-blink-paren blink-paren-function)
1210 blink-paren-function)
1211 (if (and c-syntactic-indentation c-electric-flag)
1212 (indent-according-to-mode))
1213
1214 ;; If we're at EOL, check for new-line clean-ups.
1215 (when (and c-electric-flag c-auto-newline
1216 (looking-at "[ \t]*\\\\?$"))
1217
1218 ;; clean up brace-elseif-brace
1219 (when
1220 (and (memq 'brace-elseif-brace c-cleanup-list)
1221 (eq last-command-char ?\()
1222 (re-search-backward
1223 (concat "}"
1224 "\\([ \t\n]\\|\\\\\n\\)*"
1225 "else"
1226 "\\([ \t\n]\\|\\\\\n\\)+"
1227 "if"
1228 "\\([ \t\n]\\|\\\\\n\\)*"
1229 "("
1230 "\\=")
1231 nil t)
1232 (not (c-save-buffer-state () (c-in-literal))))
1233 (delete-region (match-beginning 0) (match-end 0))
1234 (insert-and-inherit "} else if ("))
1235
1236 ;; clean up brace-catch-brace
1237 (when
1238 (and (memq 'brace-catch-brace c-cleanup-list)
1239 (eq last-command-char ?\()
1240 (re-search-backward
1241 (concat "}"
1242 "\\([ \t\n]\\|\\\\\n\\)*"
1243 "catch"
1244 "\\([ \t\n]\\|\\\\\n\\)*"
1245 "("
1246 "\\=")
1247 nil t)
1248 (not (c-save-buffer-state () (c-in-literal))))
1249 (delete-region (match-beginning 0) (match-end 0))
1250 (insert-and-inherit "} catch (")))
1251
1252 ;; Check for clean-ups at function calls. These two DON'T need
1253 ;; `c-electric-flag' or `c-syntactic-indentation' set.
1254 ;; Point is currently just after the inserted paren.
1255 (let (beg (end (1- (point))))
1256 (cond
1257
1258 ;; space-before-funcall clean-up?
1259 ((and (memq 'space-before-funcall c-cleanup-list)
1260 (eq last-command-char ?\()
1261 (save-excursion
1262 (backward-char)
1263 (skip-chars-backward " \t")
1264 (setq beg (point))
1265 (and (c-save-buffer-state () (c-on-identifier))
1266 ;; Don't add a space into #define FOO()....
1267 (not (and (c-beginning-of-macro)
1268 (c-forward-over-cpp-define-id)
1269 (eq (point) beg))))))
1270 (save-excursion
1271 (delete-region beg end)
1272 (goto-char beg)
1273 (insert ?\ )))
1274
1275 ;; compact-empty-funcall clean-up?
1276 ((c-save-buffer-state ()
1277 (and (memq 'compact-empty-funcall c-cleanup-list)
1278 (eq last-command-char ?\))
1279 (save-excursion
1280 (c-safe (backward-char 2))
1281 (when (looking-at "()")
1282 (setq end (point))
1283 (skip-chars-backward " \t")
1284 (setq beg (point))
1285 (c-on-identifier)))))
1286 (delete-region beg end))))
1287 (and (eq last-input-event ?\))
1288 (not executing-kbd-macro)
1289 old-blink-paren
1290 (funcall old-blink-paren))))))
1291
1292 (defun c-electric-continued-statement ()
1293 "Reindent the current line if appropriate.
1294
1295 This function is used to reindent the line after a keyword which
1296 continues an earlier statement is typed, e.g. an \"else\" or the
1297 \"while\" in a do-while block.
1298
1299 The line is reindented if there is nothing but whitespace before the
1300 keyword on the line, the keyword is not inserted inside a literal, and
1301 `c-electric-flag' and `c-syntactic-indentation' are both non-nil."
1302 (let (;; shut this up
1303 (c-echo-syntactic-information-p nil))
1304 (when (c-save-buffer-state ()
1305 (and c-electric-flag
1306 c-syntactic-indentation
1307 (not (eq last-command-char ?_))
1308 (= (save-excursion
1309 (skip-syntax-backward "w")
1310 (point))
1311 (c-point 'boi))
1312 (not (c-in-literal (c-point 'bod)))))
1313 ;; Have to temporarily insert a space so that
1314 ;; c-guess-basic-syntax recognizes the keyword. Follow the
1315 ;; space with a nonspace to avoid messing up any whitespace
1316 ;; sensitive meddling that might be done, e.g. by
1317 ;; `c-backslash-region'.
1318 (insert-and-inherit " x")
1319 (unwind-protect
1320 (indent-according-to-mode)
1321 (delete-char -2)))))
1322
1323 \f
1324 ;; "nomenclature" functions + c-scope-operator.
1325 (defun c-forward-into-nomenclature (&optional arg)
1326 "Compatibility alias for `c-forward-subword'."
1327 (interactive "p")
1328 (require 'cc-subword)
1329 (c-forward-subword arg))
1330 (make-obsolete 'c-forward-into-nomenclature 'c-forward-subword)
1331
1332 (defun c-backward-into-nomenclature (&optional arg)
1333 "Compatibility alias for `c-backward-subword'."
1334 (interactive "p")
1335 (require 'cc-subword)
1336 (c-backward-subword arg))
1337 (make-obsolete 'c-backward-into-nomenclature 'c-backward-subword)
1338
1339 (defun c-scope-operator ()
1340 "Insert a double colon scope operator at point.
1341 No indentation or other \"electric\" behavior is performed."
1342 (interactive "*")
1343 (insert-and-inherit "::"))
1344
1345 \f
1346 ;; Movement (etc.) by defuns.
1347 (defun c-in-function-trailer-p (&optional lim)
1348 ;; Return non-nil if point is between the closing brace and the semicolon of
1349 ;; a brace construct which needs a semicolon, e.g. within the "variables"
1350 ;; portion of a declaration like "struct foo {...} bar ;".
1351 ;;
1352 ;; Return the position of the main declaration. Otherwise, return nil.
1353 ;; Point is assumed to be at the top level and outside of any macro or
1354 ;; literal.
1355 ;;
1356 ;; If LIM is non-nil, it is the bound on a the backward search for the
1357 ;; beginning of the declaration.
1358 ;;
1359 ;; This function might do hidden buffer changes.
1360 (and c-opt-block-decls-with-vars-key
1361 (save-excursion
1362 (c-syntactic-skip-backward "^;}" lim)
1363 (let ((eo-block (point))
1364 bod)
1365 (and (eq (char-before) ?\})
1366 (eq (car (c-beginning-of-decl-1 lim)) 'previous)
1367 (setq bod (point))
1368 ;; Look for struct or union or ... If we find one, it might
1369 ;; be the return type of a function, or the like. Exclude
1370 ;; this case.
1371 (c-syntactic-re-search-forward
1372 (concat "[;=\(\[{]\\|\\("
1373 c-opt-block-decls-with-vars-key
1374 "\\)")
1375 eo-block t t t)
1376 (match-beginning 1) ; Is there a "struct" etc., somewhere?
1377 (not (eq (char-before) ?_))
1378 (c-syntactic-re-search-forward "[;=\(\[{]" eo-block t t t)
1379 (eq (char-before) ?\{)
1380 bod)))))
1381
1382 (defun c-where-wrt-brace-construct ()
1383 ;; Determine where we are with respect to functions (or other brace
1384 ;; constructs, included in the term "function" in the rest of this comment).
1385 ;; Point is assumed to be outside any macro or literal.
1386 ;; This is used by c-\(begining\|end\)-of-defun.
1387 ;;
1388 ;; Return one of these symbols:
1389 ;; at-header : we're at the start of a function's header.
1390 ;; in-header : we're inside a function's header, this extending right
1391 ;; up to the brace. This bit includes any k&r declarations.
1392 ;; in-block : we're inside a function's brace block.
1393 ;; in-trailer : we're in the area between the "}" and ";" of something
1394 ;; like "struct foo {...} bar, baz;".
1395 ;; at-function-end : we're just after the closing brace (or semicolon) that
1396 ;; terminates the function.
1397 ;; outwith-function: we're not at or in any function. Being inside a
1398 ;; non-brace construct also counts as 'outwith-function'.
1399 ;;
1400 ;; This function might do hidden buffer changes.
1401 (save-excursion
1402 (let* (kluge-start
1403 decl-result brace-decl-p
1404 (start (point))
1405 (paren-state (c-parse-state))
1406 (least-enclosing (c-least-enclosing-brace paren-state)))
1407
1408 (cond
1409 ((and least-enclosing
1410 (eq (char-after least-enclosing) ?\{))
1411 'in-block)
1412 ((c-in-function-trailer-p)
1413 'in-trailer)
1414 ((and (not least-enclosing)
1415 (consp paren-state)
1416 (consp (car paren-state))
1417 (eq start (cdar paren-state)))
1418 'at-function-end)
1419 (t
1420 ;; Find the start of the current declaration. NOTE: If we're in the
1421 ;; variables after a "struct/eval" type block, we don't get to the
1422 ;; real declaration here - we detect and correct for this later.
1423
1424 ;;If we're in the parameters' parens, move back out of them.
1425 (if least-enclosing (goto-char least-enclosing))
1426 ;; Kluge so that c-beginning-of-decl-1 won't go back if we're already
1427 ;; at a declaration.
1428 (if (or (and (eolp) (not (eobp))) ; EOL is matched by "\\s>"
1429 (not (looking-at
1430 "\\([;#]\\|\\'\\|\\s(\\|\\s)\\|\\s\"\\|\\s\\\\|\\s$\\|\\s<\\|\\s>\\|\\s!\\)")))
1431 (forward-char))
1432 (setq kluge-start (point))
1433 (setq decl-result
1434 (car (c-beginning-of-decl-1
1435 ;; NOTE: If we're in a K&R region, this might be the start
1436 ;; of a parameter declaration, not the actual function.
1437 (and least-enclosing ; LIMIT for c-b-of-decl-1
1438 (c-safe-position least-enclosing paren-state)))))
1439
1440 ;; Has the declaration we've gone back to got braces?
1441 (setq brace-decl-p
1442 (save-excursion
1443 (and (c-syntactic-re-search-forward "[;{]" nil t t)
1444 (or (eq (char-before) ?\{)
1445 (and c-recognize-knr-p
1446 ;; Might have stopped on the
1447 ;; ';' in a K&R argdecl. In
1448 ;; that case the declaration
1449 ;; should contain a block.
1450 (c-in-knr-argdecl))))))
1451
1452 (cond
1453 ((= (point) kluge-start) ; might be BOB or unbalanced parens.
1454 'outwith-function)
1455 ((eq decl-result 'same)
1456 (if brace-decl-p
1457 (if (eq (point) start)
1458 'at-header
1459 'in-header)
1460 'outwith-function))
1461 ((eq decl-result 'previous)
1462 (if (and (not brace-decl-p)
1463 (c-in-function-trailer-p))
1464 'at-function-end
1465 'outwith-function))
1466 (t (error
1467 "c-where-wrt-brace-construct: c-beginning-of-decl-1 returned %s"
1468 decl-result))))))))
1469
1470 (defun c-backward-to-nth-BOF-{ (n where)
1471 ;; Skip to the opening brace of the Nth function before point. If
1472 ;; point is inside a function, this counts as the first. Point must be
1473 ;; outside any comment/string or macro.
1474 ;;
1475 ;; N must be strictly positive.
1476 ;; WHERE describes the position of point, one of the symbols `at-header',
1477 ;; `in-header', `in-block', `in-trailer', `at-function-end',
1478 ;; `outwith-function' as returned by c-where-wrt-brace-construct.
1479 ;;
1480 ;; If we run out of functions, leave point at BOB. Return zero on success,
1481 ;; otherwise the number of {s still to go.
1482 ;;
1483 ;; This function may do hidden buffer changes
1484 (cond
1485 ;; What we do to go back the first defun depends on where we start.
1486 ((bobp))
1487 ((eq where 'in-block)
1488 (goto-char (c-least-enclosing-brace (c-parse-state)))
1489 (setq n (1- n)))
1490 ((eq where 'in-header)
1491 (c-syntactic-re-search-forward "{")
1492 (backward-char)
1493 (setq n (1- n)))
1494 ((memq where '(at-header outwith-function at-function-end in-trailer))
1495 (c-syntactic-skip-backward "^}")
1496 (when (eq (char-before) ?\})
1497 (backward-sexp)
1498 (setq n (1- n))))
1499 (t (error "Unknown `where' %s in c-backward-to-nth-EOF-{" where)))
1500
1501 ;; Each time round the loop, go back to a "{" at the outermost level.
1502 (while (and (> n 0) (not (bobp)))
1503 (c-parse-state) ; This call speeds up the following one
1504 ; by a factor of ~6. Hmmm. 2006/4/5.
1505 (c-syntactic-skip-backward "^}")
1506 (when (eq (char-before) ?\})
1507 (backward-sexp)
1508 (setq n (1- n))))
1509 n)
1510
1511 (defun c-beginning-of-defun (&optional arg)
1512 "Move backward to the beginning of a defun.
1513 Every top level declaration that contains a brace paren block is
1514 considered to be a defun.
1515
1516 With a positive argument, move backward that many defuns. A negative
1517 argument -N means move forward to the Nth following beginning. Return
1518 t unless search stops due to beginning or end of buffer.
1519
1520 Unlike the built-in `beginning-of-defun' this tries to be smarter
1521 about finding the char with open-parenthesis syntax that starts the
1522 defun."
1523
1524 (interactive "p")
1525 (or arg (setq arg 1))
1526
1527 (c-save-buffer-state
1528 (beginning-of-defun-function end-of-defun-function
1529 (start (point))
1530 where paren-state pos)
1531
1532 ;; Move back out of any macro/comment/string we happen to be in.
1533 (c-beginning-of-macro)
1534 (setq pos (c-literal-limits))
1535 (if pos (goto-char (car pos)))
1536
1537 (setq where (c-where-wrt-brace-construct))
1538
1539 (if (< arg 0)
1540 ;; Move forward to the closing brace of a function.
1541 (progn
1542 (if (memq where '(at-function-end outwith-function))
1543 (setq arg (1+ arg)))
1544 (if (< arg 0)
1545 (setq arg (c-forward-to-nth-EOF-} (- arg) where)))
1546 ;; Move forward to the next opening brace....
1547 (when (and (= arg 0)
1548 (c-syntactic-re-search-forward "{" nil 'eob))
1549 (backward-char)
1550 ;; ... and backward to the function header.
1551 (c-beginning-of-decl-1)
1552 t))
1553
1554 ;; Move backward to the opening brace of a function.
1555 (when (and (> arg 0)
1556 (eq (setq arg (c-backward-to-nth-BOF-{ arg where)) 0))
1557
1558 ;; Go backward to this function's header.
1559 (c-beginning-of-decl-1)
1560
1561 (setq pos (point))
1562 ;; We're now there, modulo comments and whitespace.
1563 ;; Try to be line oriented; position point at the closest
1564 ;; preceding boi that isn't inside a comment, but if we hit
1565 ;; the previous declaration then we use the current point
1566 ;; instead.
1567 (while (and (/= (point) (c-point 'boi))
1568 (c-backward-single-comment)))
1569 (if (/= (point) (c-point 'boi))
1570 (goto-char pos)))
1571
1572 (c-keep-region-active)
1573 (= arg 0))))
1574
1575 (defun c-forward-to-nth-EOF-} (n where)
1576 ;; Skip to the closing brace of the Nth function after point. If
1577 ;; point is inside a function, this counts as the first. Point must be
1578 ;; outside any comment/string or macro.
1579 ;;
1580 ;; N must be strictly positive.
1581 ;; WHERE describes the position of point, one of the symbols `at-header',
1582 ;; `in-header', `in-block', `in-trailer', `at-function-end',
1583 ;; `outwith-function' as returned by c-where-wrt-brace-construct.
1584 ;;
1585 ;; If we run out of functions, leave point at EOB. Return zero on success,
1586 ;; otherwise the number of }s still to go.
1587 ;;
1588 ;; This function may do hidden buffer changes.
1589
1590 (cond
1591 ;; What we do to go forward over the first defun depends on where we
1592 ;; start. We go to the closing brace of that defun, even when we go
1593 ;; backwards to it (in a "struct foo {...} bar ;").
1594 ((eobp))
1595 ((eq where 'in-block)
1596 (goto-char (c-least-enclosing-brace (c-parse-state)))
1597 (forward-sexp)
1598 (setq n (1- n)))
1599 ((eq where 'in-trailer)
1600 (c-syntactic-skip-backward "^}")
1601 (setq n (1- n)))
1602 ((memq where '(at-function-end outwith-function at-header in-header))
1603 (when (c-syntactic-re-search-forward "{" nil 'eob)
1604 (backward-char)
1605 (forward-sexp)
1606 (setq n (1- n))))
1607 (t (error "c-forward-to-nth-EOF-}: `where' is %s" where)))
1608
1609 ;; Each time round the loop, go forward to a "}" at the outermost level.
1610 (while (and (> n 0) (not (eobp)))
1611 ;(c-parse-state) ; This call speeds up the following one by a factor
1612 ; of ~6. Hmmm. 2006/4/5.
1613 (when (c-syntactic-re-search-forward "{" nil 'eob)
1614 (backward-char)
1615 (forward-sexp))
1616 (setq n (1- n)))
1617 n)
1618
1619 (defun c-end-of-defun (&optional arg)
1620 "Move forward to the end of a top level declaration.
1621 With argument, do it that many times. Negative argument -N means move
1622 back to Nth preceding end. Returns t unless search stops due to
1623 beginning or end of buffer.
1624
1625 An end of a defun occurs right after the close-parenthesis that matches
1626 the open-parenthesis that starts a defun; see `beginning-of-defun'."
1627 (interactive "p")
1628 (or arg (setq arg 1))
1629
1630 (c-save-buffer-state
1631 (beginning-of-defun-function end-of-defun-function
1632 (start (point))
1633 where paren-state pos)
1634
1635 ;; Move back out of any macro/comment/string we happen to be in.
1636 (c-beginning-of-macro)
1637 (setq pos (c-literal-limits))
1638 (if pos (goto-char (car pos)))
1639
1640 (setq where (c-where-wrt-brace-construct))
1641
1642 (if (< arg 0)
1643 ;; Move backwards to the } of a function
1644 (progn
1645 (if (memq where '(at-header outwith-function))
1646 (setq arg (1+ arg)))
1647 (if (< arg 0)
1648 (setq arg (c-backward-to-nth-BOF-{ (- arg) where)))
1649 (if (= arg 0)
1650 (c-syntactic-skip-backward "^}")))
1651
1652 ;; Move forward to the } of a function
1653 (if (> arg 0)
1654 (setq arg (c-forward-to-nth-EOF-} arg where))))
1655
1656 ;; Do we need to move forward from the brace to the semicolon?
1657 (when (eq arg 0)
1658 (if (c-in-function-trailer-p) ; after "}" of struct/enum, etc.
1659 (c-syntactic-re-search-forward ";"))
1660
1661 (setq pos (point))
1662 ;; We're there now, modulo comments and whitespace.
1663 ;; Try to be line oriented; position point after the next
1664 ;; newline that isn't inside a comment, but if we hit the
1665 ;; next declaration then we use the current point instead.
1666 (while (and (not (bolp))
1667 (not (looking-at "\\s *$"))
1668 (c-forward-single-comment)))
1669 (cond ((bolp))
1670 ((looking-at "\\s *$")
1671 (forward-line 1))
1672 (t
1673 (goto-char pos))))
1674
1675 (c-keep-region-active)
1676 (= arg 0)))
1677
1678 (defun c-declaration-limits (near)
1679 ;; Return a cons of the beginning and end positions of the current
1680 ;; top level declaration or macro. If point is not inside any then
1681 ;; nil is returned, unless NEAR is non-nil in which case the closest
1682 ;; following one is chosen instead (if there is any). The end
1683 ;; position is at the next line, providing there is one before the
1684 ;; declaration.
1685 ;;
1686 ;; This function might do hidden buffer changes.
1687 (save-excursion
1688
1689 ;; Note: Some code duplication in `c-beginning-of-defun' and
1690 ;; `c-end-of-defun'.
1691 (catch 'exit
1692 (let ((start (point))
1693 (paren-state (c-parse-state))
1694 lim pos end-pos)
1695 (unless (c-safe
1696 (goto-char (c-least-enclosing-brace paren-state))
1697 ;; If we moved to the outermost enclosing paren then we
1698 ;; can use c-safe-position to set the limit. Can't do
1699 ;; that otherwise since the earlier paren pair on
1700 ;; paren-state might very well be part of the
1701 ;; declaration we should go to.
1702 (setq lim (c-safe-position (point) paren-state))
1703 t)
1704 ;; At top level. Make sure we aren't inside a literal.
1705 (setq pos (c-literal-limits
1706 (c-safe-position (point) paren-state)))
1707 (if pos (goto-char (car pos))))
1708
1709 (when (c-beginning-of-macro)
1710 (throw 'exit
1711 (cons (point)
1712 (save-excursion
1713 (c-end-of-macro)
1714 (forward-line 1)
1715 (point)))))
1716
1717 (setq pos (point))
1718 (when (or (eq (car (c-beginning-of-decl-1 lim)) 'previous)
1719 (= pos (point)))
1720 ;; We moved back over the previous defun. Skip to the next
1721 ;; one. Not using c-forward-syntactic-ws here since we
1722 ;; should not skip a macro. We can also be directly after
1723 ;; the block in a `c-opt-block-decls-with-vars-key'
1724 ;; declaration, but then we won't move significantly far
1725 ;; here.
1726 (goto-char pos)
1727 (c-forward-comments)
1728
1729 (when (and near (c-beginning-of-macro))
1730 (throw 'exit
1731 (cons (point)
1732 (save-excursion
1733 (c-end-of-macro)
1734 (forward-line 1)
1735 (point))))))
1736
1737 (if (eobp) (throw 'exit nil))
1738
1739 ;; Check if `c-beginning-of-decl-1' put us after the block in a
1740 ;; declaration that doesn't end there. We're searching back and
1741 ;; forth over the block here, which can be expensive.
1742 (setq pos (point))
1743 (if (and c-opt-block-decls-with-vars-key
1744 (progn
1745 (c-backward-syntactic-ws)
1746 (eq (char-before) ?}))
1747 (eq (car (c-beginning-of-decl-1))
1748 'previous)
1749 (save-excursion
1750 (c-end-of-decl-1)
1751 (and (> (point) pos)
1752 (setq end-pos (point)))))
1753 nil
1754 (goto-char pos))
1755
1756 (if (and (not near) (> (point) start))
1757 nil
1758
1759 ;; Try to be line oriented; position the limits at the
1760 ;; closest preceding boi, and after the next newline, that
1761 ;; isn't inside a comment, but if we hit a neighboring
1762 ;; declaration then we instead use the exact declaration
1763 ;; limit in that direction.
1764 (cons (progn
1765 (setq pos (point))
1766 (while (and (/= (point) (c-point 'boi))
1767 (c-backward-single-comment)))
1768 (if (/= (point) (c-point 'boi))
1769 pos
1770 (point)))
1771 (progn
1772 (if end-pos
1773 (goto-char end-pos)
1774 (c-end-of-decl-1))
1775 (setq pos (point))
1776 (while (and (not (bolp))
1777 (not (looking-at "\\s *$"))
1778 (c-forward-single-comment)))
1779 (cond ((bolp)
1780 (point))
1781 ((looking-at "\\s *$")
1782 (forward-line 1)
1783 (point))
1784 (t
1785 pos)))))
1786 ))))
1787
1788 (defun c-mark-function ()
1789 "Put mark at end of the current top-level declaration or macro, point at beginning.
1790 If point is not inside any then the closest following one is chosen.
1791
1792 As opposed to \\[c-beginning-of-defun] and \\[c-end-of-defun], this
1793 function does not require the declaration to contain a brace block."
1794 (interactive)
1795
1796 (let (decl-limits)
1797 (c-save-buffer-state nil
1798 ;; We try to be line oriented, unless there are several
1799 ;; declarations on the same line.
1800 (if (looking-at c-syntactic-eol)
1801 (c-backward-token-2 1 nil (c-point 'bol)))
1802 (setq decl-limits (c-declaration-limits t)))
1803
1804 (if (not decl-limits)
1805 (error "Cannot find any declaration")
1806 (goto-char (car decl-limits))
1807 (push-mark (cdr decl-limits) nil t))))
1808
1809 \f
1810 ;; Movement by statements.
1811 (defun c-in-comment-line-prefix-p ()
1812 ;; Point is within a comment. Is it also within a comment-prefix?
1813 ;; Space at BOL which precedes a comment-prefix counts as part of it.
1814 ;;
1815 ;; This function might do hidden buffer changes.
1816 (let ((here (point)))
1817 (save-excursion
1818 (beginning-of-line)
1819 (skip-chars-forward " \t")
1820 (and (looking-at c-current-comment-prefix)
1821 (/= (match-beginning 0) (match-end 0))
1822 (< here (match-end 0))))))
1823
1824 (defun c-narrow-to-comment-innards (range)
1825 ;; Narrow to the "inside" of the comment (block) defined by range, as
1826 ;; follows:
1827 ;;
1828 ;; A c-style block comment has its opening "/*" and its closing "*/" (if
1829 ;; present) removed. A c++-style line comment retains its opening "//" but
1830 ;; has any final NL removed. If POINT is currently outwith these innards,
1831 ;; move it to the appropriate boundary.
1832 ;;
1833 ;; This narrowing simplifies the sentence movement functions, since it
1834 ;; eliminates awkward things at the boundaries of the comment (block).
1835 ;;
1836 ;; This function might do hidden buffer changes.
1837 (let* ((lit-type (c-literal-type range))
1838 (beg (if (eq lit-type 'c) (+ (car range) 2) (car range)))
1839 (end (if (eq lit-type 'c)
1840 (if (and (eq (char-before (cdr range)) ?/)
1841 (eq (char-before (1- (cdr range))) ?*))
1842 (- (cdr range) 2)
1843 (point-max))
1844 (if (eq (cdr range) (point-max))
1845 (point-max)
1846 (- (cdr range) 1)))))
1847 (if (> (point) end)
1848 (goto-char end)) ; This would be done automatically by ...
1849 (if (< (point) beg)
1850 (goto-char beg)) ; ... narrow-to-region but is not documented.
1851 (narrow-to-region beg end)))
1852
1853 (defun c-beginning-of-sentence-in-comment (range)
1854 ;; Move backwards to the "beginning of a sentence" within the comment
1855 ;; defined by RANGE, a cons of its starting and ending positions. If we
1856 ;; find a BOS, return NIL. Otherwise, move point to just before the start
1857 ;; of the comment and return T.
1858 ;;
1859 ;; The BOS is either text which follows a regexp match of sentence-end,
1860 ;; or text which is a beginning of "paragraph".
1861 ;; Comment-prefixes are treated like WS when calculating BOSes or BOPs.
1862 ;;
1863 ;; This code was adapted from GNU Emacs's forward-sentence in paragraphs.el.
1864 ;; It is not a general function, but is intended only for calling from
1865 ;; c-move-over-sentence. Not all preconditions have been explicitly stated.
1866 ;;
1867 ;; This function might do hidden buffer changes.
1868 (save-match-data
1869 (let ((start-point (point)))
1870 (save-restriction
1871 (c-narrow-to-comment-innards range) ; This may move point back.
1872 (let* ((here (point))
1873 last
1874 (here-filler ; matches WS and comment-prefices at point.
1875 (concat "\\=\\(^[ \t]*\\(" c-current-comment-prefix "\\)"
1876 "\\|[ \t\n\r\f]\\)*"))
1877 (prefix-at-bol-here ; matches WS and prefix at BOL, just before point
1878 (concat "^[ \t]*\\(" c-current-comment-prefix "\\)[ \t\n\r\f]*\\="))
1879 ;; First, find the previous paragraph start, if any.
1880 (par-beg ; point where non-WS/non-prefix text of paragraph starts.
1881 (save-excursion
1882 (forward-paragraph -1) ; uses cc-mode values of
1883 ; paragraph-\(start\|separate\)
1884 (if (> (re-search-forward here-filler nil t) here)
1885 (goto-char here))
1886 (when (>= (point) here)
1887 (forward-paragraph -2)
1888 (if (> (re-search-forward here-filler nil t) here)
1889 (goto-char here)))
1890 (point))))
1891
1892 ;; Now seek successively earlier sentence ends between PAR-BEG and
1893 ;; HERE, until the "start of sentence" following it is earlier than
1894 ;; HERE, or we hit PAR-BEG. Beware of comment prefices!
1895 (while (and (re-search-backward (c-sentence-end) par-beg 'limit)
1896 (setq last (point))
1897 (goto-char (match-end 0)) ; tentative beginning of sentence
1898 (or (>= (point) here)
1899 (and (not (bolp)) ; Found a non-blank comment-prefix?
1900 (save-excursion
1901 (if (re-search-backward prefix-at-bol-here nil t)
1902 (/= (match-beginning 1) (match-end 1)))))
1903 (progn ; Skip the crud to find a real b-o-s.
1904 (if (c-in-comment-line-prefix-p)
1905 (beginning-of-line))
1906 (re-search-forward here-filler) ; always succeeds.
1907 (>= (point) here))))
1908 (goto-char last))
1909 (re-search-forward here-filler)))
1910
1911 (if (< (point) start-point)
1912 nil
1913 (goto-char (car range))
1914 t))))
1915
1916 (defun c-end-of-sentence-in-comment (range)
1917 ;; Move forward to the "end of a sentence" within the comment defined by
1918 ;; RANGE, a cons of its starting and ending positions (enclosing the opening
1919 ;; comment delimiter and the terminating */ or newline). If we find an EOS,
1920 ;; return NIL. Otherwise, move point to just after the end of the comment
1921 ;; and return T.
1922 ;;
1923 ;; The EOS is just after the non-WS part of the next match of the regexp
1924 ;; sentence-end. Typically, this is just after one of [.!?]. If there is
1925 ;; no sentence-end match following point, any WS before the end of the
1926 ;; comment will count as EOS, providing we're not already in it.
1927 ;;
1928 ;; This code was adapted from GNU Emacs's forward-sentence in paragraphs.el.
1929 ;; It is not a general function, but is intended only for calling from
1930 ;; c-move-over-sentence.
1931 ;;
1932 ;; This function might do hidden buffer changes.
1933 (save-match-data
1934 (let ((start-point (point))
1935 ;; (lit-type (c-literal-type range)) ; Commented out, 2005/11/23, ACM
1936 )
1937 (save-restriction
1938 (c-narrow-to-comment-innards range) ; This might move point forwards.
1939 (let* ((here (point))
1940 (par-end ; EOL position of last text in current/next paragraph.
1941 (save-excursion
1942 ;; The cc-mode values of paragraph-\(start\|separate\), set
1943 ;; in c-setup-paragraph-variables, are used in the
1944 ;; following.
1945 (forward-paragraph 1)
1946 (if (eq (preceding-char) ?\n) (forward-char -1))
1947 (when (<= (point) here) ; can happen, e.g., when HERE is at EOL.
1948 (goto-char here)
1949 (forward-paragraph 2)
1950 (if (eq (preceding-char) ?\n) (forward-char -1)))
1951 (point)))
1952
1953 last
1954 (prefix-at-bol-here
1955 (concat "^[ \t]*\\(" c-current-comment-prefix "\\)\\=")))
1956 ;; Go forward one "comment-prefix which looks like sentence-end"
1957 ;; each time round the following:
1958 (while (and (re-search-forward (c-sentence-end) par-end 'limit)
1959 (progn
1960 (setq last (point))
1961 (skip-chars-backward " \t\n")
1962 (or (and (not (bolp))
1963 (re-search-backward prefix-at-bol-here nil t)
1964 (/= (match-beginning 1) (match-end 1)))
1965 (<= (point) here))))
1966 (goto-char last))
1967
1968 ;; Take special action if we're up against the end of a comment (of
1969 ;; either sort): Leave point just after the last non-ws text.
1970 (if (eq (point) (point-max))
1971 (while (or (/= (skip-chars-backward " \t\n") 0)
1972 (and (re-search-backward prefix-at-bol-here nil t)
1973 (/= (match-beginning 1) (match-end 1))))))))
1974
1975 (if (> (point) start-point)
1976 nil
1977 (goto-char (cdr range))
1978 t))))
1979
1980 (defun c-beginning-of-sentence-in-string (range)
1981 ;; Move backwards to the "beginning of a sentence" within the string defined
1982 ;; by RANGE, a cons of its starting and ending positions (enclosing the
1983 ;; string quotes). If we find a BOS, return NIL. Otherwise, move point to
1984 ;; just before the start of the string and return T.
1985 ;;
1986 ;; The BOS is either the text which follows a regexp match of sentence-end
1987 ;; or text which is a beginning of "paragraph". For the purposes of
1988 ;; determining paragraph boundaries, escaped newlines are treated as
1989 ;; ordinary newlines.
1990 ;;
1991 ;; This code was adapted from GNU Emacs's forward-sentence in paragraphs.el.
1992 ;; It is not a general function, but is intended only for calling from
1993 ;; c-move-over-sentence.
1994 ;;
1995 ;; This function might do hidden buffer changes.
1996 (save-match-data
1997 (let* ((here (point)) last
1998 (end (1- (cdr range)))
1999 (here-filler ; matches WS and escaped newlines at point.
2000 "\\=\\([ \t\n\r\f]\\|\\\\[\n\r]\\)*")
2001 ;; Enhance paragraph-start and paragraph-separate also to recognise
2002 ;; blank lines terminated by escaped EOLs. IT MAY WELL BE that
2003 ;; these values should be customizable user options, or something.
2004 (paragraph-start c-string-par-start)
2005 (paragraph-separate c-string-par-separate)
2006
2007 (par-beg ; beginning of current (or previous) paragraph.
2008 (save-excursion
2009 (save-restriction
2010 (narrow-to-region (1+ (car range)) end)
2011 (forward-paragraph -1) ; uses above values of
2012 ; paragraph-\(start\|separate\)
2013 (if (> (re-search-forward here-filler nil t) here)
2014 (goto-char here))
2015 (when (>= (point) here)
2016 (forward-paragraph -2)
2017 (if (> (re-search-forward here-filler nil t) here)
2018 (goto-char here)))
2019 (point)))))
2020 ;; Now see if we can find a sentence end after PAR-BEG.
2021 (while (and (re-search-backward c-sentence-end-with-esc-eol par-beg 'limit)
2022 (setq last (point))
2023 (goto-char (match-end 0))
2024 (or (> (point) end)
2025 (progn
2026 (re-search-forward
2027 here-filler end t) ; always succeeds. Use end rather
2028 ; than here, in case point starts
2029 ; beyond the closing quote.
2030 (>= (point) here))))
2031 (goto-char last))
2032 (re-search-forward here-filler here t)
2033 (if (< (point) here)
2034 nil
2035 (goto-char (car range))
2036 t))))
2037
2038 (defun c-end-of-sentence-in-string (range)
2039 ;; Move forward to the "end of a sentence" within the string defined by
2040 ;; RANGE, a cons of its starting and ending positions. If we find an EOS,
2041 ;; return NIL. Otherwise, move point to just after the end of the string
2042 ;; and return T.
2043 ;;
2044 ;; The EOS is just after the non-WS part of the next match of the regexp
2045 ;; sentence-end. Typically, this is just after one of [.!?]. If there is
2046 ;; no sentence-end match following point, any WS before the end of the
2047 ;; string will count as EOS, providing we're not already in it.
2048 ;;
2049 ;; This code was adapted from GNU Emacs's forward-sentence in paragraphs.el.
2050 ;; It is not a general function, but is intended only for calling from
2051 ;; c-move-over-sentence.
2052 ;;
2053 ;; This function might do hidden buffer changes.
2054 (save-match-data
2055 (let* ((here (point))
2056 last
2057 ;; Enhance paragraph-start and paragraph-separate to recognise
2058 ;; blank lines terminated by escaped EOLs.
2059 (paragraph-start c-string-par-start)
2060 (paragraph-separate c-string-par-separate)
2061
2062 (par-end ; EOL position of last text in current/next paragraph.
2063 (save-excursion
2064 (save-restriction
2065 (narrow-to-region (car range) (1- (cdr range)))
2066 ;; The above values of paragraph-\(start\|separate\) are used
2067 ;; in the following.
2068 (forward-paragraph 1)
2069 (setq last (point))
2070 ;; (re-search-backward filler-here nil t) would find an empty
2071 ;; string. Therefore we simulate it by the following:
2072 (while (or (/= (skip-chars-backward " \t\n\r\f") 0)
2073 (re-search-backward "\\\\\\($\\)\\=" nil t)))
2074 (unless (> (point) here)
2075 (goto-char last)
2076 (forward-paragraph 1)
2077 (while (or (/= (skip-chars-backward " \t\n\r\f") 0)
2078 (re-search-backward "\\\\\\($\\)\\=" nil t))))
2079 (point)))))
2080 ;; Try to go forward a sentence.
2081 (when (re-search-forward c-sentence-end-with-esc-eol par-end 'limit)
2082 (setq last (point))
2083 (while (or (/= (skip-chars-backward " \t\n") 0)
2084 (re-search-backward "\\\\\\($\\)\\=" nil t))))
2085 ;; Did we move a sentence, or did we hit the end of the string?
2086 (if (> (point) here)
2087 nil
2088 (goto-char (cdr range))
2089 t))))
2090
2091 (defun c-ascertain-preceding-literal ()
2092 ;; Point is not in a literal (i.e. comment or string (include AWK regexp)).
2093 ;; If a literal is the next thing (aside from whitespace) to be found before
2094 ;; point, return a cons of its start.end positions (enclosing the
2095 ;; delimiters). Otherwise return NIL.
2096 ;;
2097 ;; This function might do hidden buffer changes.
2098 (save-excursion
2099 (c-collect-line-comments
2100 (let ((here (point))
2101 pos)
2102 (if (c-backward-single-comment)
2103 (cons (point) (progn (c-forward-single-comment) (point)))
2104 (save-restriction
2105 ;; to prevent `looking-at' seeing a " at point.
2106 (narrow-to-region (point-min) here)
2107 (when
2108 (or
2109 ;; An EOL can act as an "open string" terminator in AWK.
2110 (looking-at c-ws*-string-limit-regexp)
2111 (and (not (bobp))
2112 (progn (backward-char)
2113 (looking-at c-string-limit-regexp))))
2114 (goto-char (match-end 0)) ; just after the string terminator.
2115 (setq pos (point))
2116 (c-safe (c-backward-sexp 1) ; move back over the string.
2117 (cons (point) pos)))))))))
2118
2119 (defun c-ascertain-following-literal ()
2120 ;; Point is not in a literal (i.e. comment or string (include AWK regexp)).
2121 ;; If a literal is the next thing (aside from whitespace) following point,
2122 ;; return a cons of its start.end positions (enclosing the delimiters).
2123 ;; Otherwise return NIL.
2124 ;;
2125 ;; This function might do hidden buffer changes.
2126 (save-excursion
2127 (c-collect-line-comments
2128 (let (pos)
2129 (c-skip-ws-forward)
2130 (if (looking-at c-string-limit-regexp) ; string-delimiter.
2131 (cons (point) (or (c-safe (progn (c-forward-sexp 1) (point)))
2132 (point-max)))
2133 (setq pos (point))
2134 (if (c-forward-single-comment)
2135 (cons pos (point))))))))
2136
2137 (defun c-after-statement-terminator-p () ; Should we pass in LIM here?
2138 ;; Does point immediately follow a statement "terminator"? A virtual
2139 ;; semicolon is regarded here as such. So is a an opening brace ;-)
2140 ;;
2141 ;; This function might do hidden buffer changes.
2142 (or (save-excursion
2143 (backward-char)
2144 (and (looking-at "[;{}]")
2145 (not (and c-special-brace-lists ; Pike special brace lists.
2146 (eq (char-after) ?{)
2147 (c-looking-at-special-brace-list)))))
2148 (c-at-vsemi-p)
2149 ;; The following (for macros) is not strict about exactly where we are
2150 ;; wrt white space at the end of the macro. Doesn't seem to matter too
2151 ;; much. ACM 2004/3/29.
2152 (let (eom)
2153 (save-excursion
2154 (if (c-beginning-of-macro)
2155 (setq eom (progn (c-end-of-macro)
2156 (point)))))
2157 (when eom
2158 (save-excursion
2159 (c-forward-comments)
2160 (>= (point) eom))))))
2161
2162 (defun c-back-over-illiterals (macro-start)
2163 ;; Move backwards over code which isn't a literal (i.e. comment or string),
2164 ;; stopping before reaching BOB or a literal or the boundary of a
2165 ;; preprocessor statement or the "beginning of a statement". MACRO-START is
2166 ;; the position of the '#' beginning the current preprocessor directive, or
2167 ;; NIL if we're not in such.
2168 ;;
2169 ;; Return a cons (A.B), where
2170 ;; A is NIL if we moved back to a BOS (and know it), T otherwise (we
2171 ;; didn't move, or we hit a literal, or we're not sure about BOS).
2172 ;; B is MACRO-BOUNDARY if we are about to cross the boundary out of or
2173 ;; into a macro, otherwise LITERAL if we've hit a literal, otherwise NIL
2174 ;;
2175 ;; The total collection of returned values is as follows:
2176 ;; (nil . nil): Found a BOS whilst remaining inside the illiterals.
2177 ;; (t . literal): No BOS found: only a comment/string. We _might_ be at
2178 ;; a BOS - the caller must check this.
2179 ;; (nil . macro-boundary): only happens with non-nil macro-start. We've
2180 ;; moved and reached the opening # of the macro.
2181 ;; (t . macro-boundary): Every other circumstance in which we're at a
2182 ;; macro-boundary. We might be at a BOS.
2183 ;;
2184 ;; Point is left either at the beginning-of-statement, or at the last non-ws
2185 ;; code before encountering the literal/BOB or macro-boundary.
2186 ;;
2187 ;; Note that this function moves within either preprocessor commands
2188 ;; (macros) or normal code, but will not cross a boundary between the two,
2189 ;; or between two distinct preprocessor commands.
2190 ;;
2191 ;; Stop before `{' and after `;', `{', `}' and `};' when not followed by `}'
2192 ;; or `)', but on the other side of the syntactic ws. Move by sexps and
2193 ;; move into parens. Also stop before `#' when it's at boi on a line.
2194 ;;
2195 ;; This function might do hidden buffer changes.
2196 (save-match-data
2197 (let ((here (point))
2198 last) ; marks the position of non-ws code, what'll be BOS if, say, a
2199 ; semicolon precedes it.
2200 (catch 'done
2201 (while t ;; We go back one "token" each iteration of the loop.
2202 (setq last (point))
2203 (cond
2204 ;; Stop at the token after a comment.
2205 ((c-backward-single-comment) ; Also functions as backwards-ws.
2206 (goto-char last)
2207 (throw 'done '(t . literal)))
2208
2209 ;; If we've gone back over a LF, we might have moved into or out of
2210 ;; a preprocessor line.
2211 ((and (save-excursion
2212 (beginning-of-line)
2213 (re-search-forward "\\(^\\|[^\\]\\)[\n\r]" last t))
2214 (if macro-start
2215 (< (point) macro-start)
2216 (c-beginning-of-macro)))
2217 (goto-char last)
2218 ;; Return a car of NIL ONLY if we've hit the opening # of a macro.
2219 (throw 'done (cons (or (eq (point) here)
2220 (not macro-start))
2221 'macro-boundary)))
2222
2223 ;; Have we found a virtual semicolon? If so, stop, unless the next
2224 ;; statement is where we started from.
2225 ((and (c-at-vsemi-p)
2226 (< last here)
2227 (not (memq (char-after last) '(?\) ?})))) ; we've moved back from ) or }
2228 (goto-char last)
2229 (throw 'done '(nil . nil)))
2230
2231 ;; Hit the beginning of the buffer/region?
2232 ((bobp)
2233 (if (/= here last)
2234 (goto-char last))
2235 (throw 'done '(nil . nil)))
2236
2237 ;; Move back a character.
2238 ((progn (backward-char) nil))
2239
2240 ;; Stop at "{" (unless it's a PIKE special brace list.)
2241 ((eq (char-after) ?\{)
2242 (if (and c-special-brace-lists
2243 (c-looking-at-special-brace-list))
2244 (skip-syntax-backward "w_") ; Speedup only.
2245 (if (/= here last)
2246 (goto-char last))
2247 (throw 'done '(nil . nil))))
2248
2249 ;; Have we reached the start of a macro? This always counts as
2250 ;; BOS. (N.B. I don't think (eq (point) here) can ever be true
2251 ;; here. FIXME!!! ACM 2004/3/29)
2252 ((and macro-start (eq (point) macro-start))
2253 (throw 'done (cons (eq (point) here) 'macro-boundary)))
2254
2255 ;; Stop at token just after "}" or ";".
2256 ((looking-at "[;}]")
2257 ;; If we've gone back over ;, {, or }, we're done.
2258 (if (or (= here last)
2259 (memq (char-after last) '(?\) ?}))) ; we've moved back from ) or }
2260 (if (and (eq (char-before) ?}) ; If };, treat them as a unit.
2261 (eq (char-after) ?\;))
2262 (backward-char))
2263 (goto-char last) ; To the statement starting after the ; or }.
2264 (throw 'done '(nil . nil))))
2265
2266 ;; Stop at the token after a string.
2267 ((looking-at c-string-limit-regexp) ; Just gone back over a string terminator?
2268 (goto-char last)
2269 (throw 'done '(t . literal)))
2270
2271 ;; Nothing special: go back word characters.
2272 (t (skip-syntax-backward "w_")) ; Speedup only.
2273 ))))))
2274
2275 (defun c-forward-over-illiterals (macro-end allow-early-stop)
2276 ;; Move forwards over code, stopping before reaching EOB or a literal
2277 ;; (i.e. a comment/string) or the boundary of a preprocessor statement or
2278 ;; the "end of a statement". MACRO-END is the position of the EOL/EOB which
2279 ;; terminates the current preprocessor directive, or NIL if we're not in
2280 ;; such.
2281 ;;
2282 ;; ALLOW-EARLY-STOP is non-nil if it is permissible to return without moving
2283 ;; forward at all, should we encounter a `{'. This is an ugly kludge, but
2284 ;; seems unavoidable. Depending on the context this function is called
2285 ;; from, we _sometimes_ need to stop there. Currently (2004/4/3),
2286 ;; ALLOW-EARLY-STOP is applied only to open braces, not to virtual
2287 ;; semicolons, or anything else.
2288 ;;
2289 ;; Return a cons (A.B), where
2290 ;; A is NIL if we moved forward to an EOS, or stay at one (when
2291 ;; ALLOW-EARLY-STOP is set), T otherwise (we hit a literal).
2292 ;; B is 'MACRO-BOUNDARY if we are about to cross the boundary out of or
2293 ;; into a macro, otherwise 'LITERAL if we've hit a literal, otherwise NIL
2294 ;;
2295 ;; Point is left either after the end-of-statement, or at the last non-ws
2296 ;; code before encountering the literal, or the # of the preprocessor
2297 ;; statement, or at EOB [or just after last non-WS stuff??].
2298 ;;
2299 ;; As a clarification of "after the end-of-statement", if a comment or
2300 ;; whitespace follows a completed AWK statement, that statement is treated
2301 ;; as ending just after the last non-ws character before the comment.
2302 ;;
2303 ;; Note that this function moves within either preprocessor commands
2304 ;; (macros) or normal code, but not both within the same invocation.
2305 ;;
2306 ;; Stop before `{', `}', and `#' when it's at boi on a line, but on the
2307 ;; other side of the syntactic ws, and after `;', `}' and `};'. Only
2308 ;; stop before `{' if at top level or inside braces, though. Move by
2309 ;; sexps and move into parens. Also stop at eol of lines with `#' at
2310 ;; the boi.
2311 ;;
2312 ;; This function might do hidden buffer changes.
2313 (let ((here (point))
2314 last)
2315 (catch 'done
2316 (while t ;; We go one "token" forward each time round this loop.
2317 (setq last (point))
2318
2319 ;; If we've moved forward to a virtual semicolon, we're done.
2320 (if (and (> last here) ; Should we check ALLOW-EARLY-STOP, here? 2004/4/3
2321 (c-at-vsemi-p))
2322 (throw 'done '(nil . nil)))
2323
2324 (c-skip-ws-forward)
2325 (cond
2326 ;; Gone past the end of a macro?
2327 ((and macro-end (> (point) macro-end))
2328 (goto-char last)
2329 (throw 'done (cons (eq (point) here) 'macro-boundary)))
2330
2331 ;; About to hit a comment?
2332 ((save-excursion (c-forward-single-comment))
2333 (goto-char last)
2334 (throw 'done '(t . literal)))
2335
2336 ;; End of buffer?
2337 ((eobp)
2338 (if (/= here last)
2339 (goto-char last))
2340 (throw 'done '(nil . nil)))
2341
2342 ;; If we encounter a '{', stop just after the previous token.
2343 ((and (eq (char-after) ?{)
2344 (not (and c-special-brace-lists
2345 (c-looking-at-special-brace-list)))
2346 (or allow-early-stop (/= here last))
2347 (save-excursion ; Is this a check that we're NOT at top level?
2348 ;;;; NO! This seems to check that (i) EITHER we're at the top level; OR (ii) The next enclosing
2349 ;;;; level of bracketing is a '{'. HMM. Doesn't seem to make sense.
2350 ;;;; 2003/8/8 This might have something to do with the GCC extension "Statement Expressions", e.g.
2351 ;;;; while ({stmt1 ; stmt2 ; exp ;}). This form excludes such Statement Expressions.
2352 (or (not (c-safe (up-list -1) t))
2353 (= (char-after) ?{))))
2354 (goto-char last)
2355 (throw 'done '(nil . nil)))
2356
2357 ;; End of a PIKE special brace list? If so, step over it and continue.
2358 ((and c-special-brace-lists
2359 (eq (char-after) ?})
2360 (save-excursion
2361 (and (c-safe (up-list -1) t)
2362 (c-looking-at-special-brace-list))))
2363 (forward-char)
2364 (skip-syntax-forward "w_")) ; Speedup only.
2365
2366 ;; Have we got a '}' after having moved? If so, stop after the
2367 ;; previous token.
2368 ((and (eq (char-after) ?})
2369 (/= here last))
2370 (goto-char last)
2371 (throw 'done '(nil . nil)))
2372
2373 ;; Stop if we encounter a preprocessor line.
2374 ((and (not macro-end)
2375 (eq (char-after) ?#)
2376 (= (point) (c-point 'boi)))
2377 (goto-char last)
2378 ;(throw 'done (cons (eq (point) here) 'macro-boundary))) ; Changed 2003/3/26
2379 (throw 'done '(t . macro-boundary)))
2380
2381 ;; Stop after a ';', '}', or "};"
2382 ((looking-at ";\\|};?")
2383 (goto-char (match-end 0))
2384 (throw 'done '(nil . nil)))
2385
2386 ;; Found a string (this subsumes AWK regexps)?
2387 ((looking-at c-string-limit-regexp)
2388 (goto-char last)
2389 (throw 'done '(t . literal)))
2390
2391 (t
2392 (forward-char) ; Can't fail - we checked (eobp) earlier on.
2393 (skip-syntax-forward "w_") ; Speedup only.
2394 (when (and macro-end (> (point) macro-end))
2395 (goto-char last)
2396 (throw 'done (cons (eq (point) here) 'macro-boundary))))
2397 )))))
2398
2399 (defun c-one-line-string-p (range)
2400 ;; Is the literal defined by RANGE a string contained in a single line?
2401 ;;
2402 ;; This function might do hidden buffer changes.
2403 (save-excursion
2404 (goto-char (car range))
2405 (and (looking-at c-string-limit-regexp)
2406 (progn (skip-chars-forward "^\n" (cdr range))
2407 (eq (point) (cdr range))))))
2408
2409 (defun c-beginning-of-statement (&optional count lim sentence-flag)
2410 "Go to the beginning of the innermost C statement.
2411 With prefix arg, go back N - 1 statements. If already at the
2412 beginning of a statement then go to the beginning of the closest
2413 preceding one, moving into nested blocks if necessary (use
2414 \\[backward-sexp] to skip over a block). If within or next to a
2415 comment or multiline string, move by sentences instead of statements.
2416
2417 When called from a program, this function takes 3 optional args: the
2418 repetition count, a buffer position limit which is the farthest back
2419 to search for the syntactic context, and a flag saying whether to do
2420 sentence motion in or near comments and multiline strings.
2421
2422 Note that for use in programs, `c-beginning-of-statement-1' is
2423 usually better. It has much better defined semantics than this one,
2424 which is intended for interactive use, and might therefore change to
2425 be more \"DWIM:ey\"."
2426 (interactive (list (prefix-numeric-value current-prefix-arg)
2427 nil t))
2428 (if (< count 0)
2429 (c-end-of-statement (- count) lim sentence-flag)
2430 (c-save-buffer-state
2431 ((count (or count 1))
2432 last ; start point for going back ONE chunk. Updated each chunk movement.
2433 (macro-fence
2434 (save-excursion (and (not (bobp)) (c-beginning-of-macro) (point))))
2435 res ; result from sub-function call
2436 not-bos ; "not beginning-of-statement"
2437 (range (c-collect-line-comments (c-literal-limits lim)))) ; (start.end) of current literal or NIL
2438
2439 ;; Go back one statement at each iteration of the following loop.
2440 (while (and (/= count 0)
2441 (or (not lim) (> (point) lim)))
2442 ;; Go back one "chunk" each time round the following loop, stopping
2443 ;; when we reach a statement boundary, etc.
2444 (setq last (point))
2445 (while
2446 (cond ; Each arm of this cond returns NIL on reaching a desired
2447 ; statement boundary, non-NIL otherwise.
2448 ((bobp)
2449 (setq count 0)
2450 nil)
2451
2452 (range ; point is within or approaching a literal.
2453 (cond
2454 ;; Single line string or sentence-flag is null => skip the
2455 ;; entire literal.
2456 ((or (null sentence-flag)
2457 (c-one-line-string-p range))
2458 (goto-char (car range))
2459 (setq range (c-ascertain-preceding-literal))
2460 ;; N.B. The following is essentially testing for an AWK regexp
2461 ;; at BOS:
2462 ;; Was the previous non-ws thing an end of statement?
2463 (save-excursion
2464 (if macro-fence
2465 (c-backward-comments)
2466 (c-backward-syntactic-ws))
2467 (not (or (bobp) (c-after-statement-terminator-p)))))
2468
2469 ;; Comment inside a statement or a multi-line string.
2470 (t (when (setq res ; returns non-nil when we go out of the literal
2471 (if (eq (c-literal-type range) 'string)
2472 (c-beginning-of-sentence-in-string range)
2473 (c-beginning-of-sentence-in-comment range)))
2474 (setq range (c-ascertain-preceding-literal)))
2475 res)))
2476
2477 ;; Non-literal code.
2478 (t (setq res (c-back-over-illiterals macro-fence))
2479 (setq not-bos ; "not reached beginning-of-statement".
2480 (or (= (point) last)
2481 (memq (char-after) '(?\) ?\}))
2482 (and
2483 (car res)
2484 ;; We're at a tentative BOS. The next form goes
2485 ;; back over WS looking for an end of previous
2486 ;; statement.
2487 (not (save-excursion
2488 (if macro-fence
2489 (c-backward-comments)
2490 (c-backward-syntactic-ws))
2491 (or (bobp) (c-after-statement-terminator-p)))))))
2492 ;; Are we about to move backwards into or out of a
2493 ;; preprocessor command? If so, locate it's beginning.
2494 (when (eq (cdr res) 'macro-boundary)
2495 (save-excursion
2496 (beginning-of-line)
2497 (setq macro-fence
2498 (and (not (bobp))
2499 (progn (c-skip-ws-backward) (c-beginning-of-macro))
2500 (point)))))
2501 ;; Are we about to move backwards into a literal?
2502 (when (memq (cdr res) '(macro-boundary literal))
2503 (setq range (c-ascertain-preceding-literal)))
2504 not-bos))
2505 (setq last (point)))
2506
2507 (if (/= count 0) (setq count (1- count))))
2508 (c-keep-region-active))))
2509
2510 (defun c-end-of-statement (&optional count lim sentence-flag)
2511 "Go to the end of the innermost C statement.
2512 With prefix arg, go forward N - 1 statements. Move forward to the end
2513 of the next statement if already at end, and move into nested blocks
2514 \(use \\[forward-sexp] to skip over a block). If within or next to a
2515 comment or multiline string, move by sentences instead of statements.
2516
2517 When called from a program, this function takes 3 optional args: the
2518 repetition count, a buffer position limit which is the farthest back
2519 to search for the syntactic context, and a flag saying whether to do
2520 sentence motion in or near comments and multiline strings."
2521 (interactive (list (prefix-numeric-value current-prefix-arg)
2522 nil t))
2523 (setq count (or count 1))
2524 (if (< count 0) (c-beginning-of-statement (- count) lim sentence-flag)
2525
2526 (c-save-buffer-state
2527 (here ; start point for going forward ONE statement. Updated each statement.
2528 (macro-fence
2529 (save-excursion
2530 (and (not (eobp)) (c-beginning-of-macro)
2531 (progn (c-end-of-macro) (point)))))
2532 res
2533 (range (c-collect-line-comments (c-literal-limits lim)))) ; (start.end) of current literal or NIL
2534
2535 ;; Go back/forward one statement at each iteration of the following loop.
2536 (while (and (/= count 0)
2537 (or (not lim) (< (point) lim)))
2538 (setq here (point)) ; ONLY HERE is HERE updated
2539
2540 ;; Go forward one "chunk" each time round the following loop, stopping
2541 ;; when we reach a statement boundary, etc.
2542 (while
2543 (cond ; Each arm of this cond returns NIL on reaching a desired
2544 ; statement boundary, non-NIL otherwise.
2545 ((eobp)
2546 (setq count 0)
2547 nil)
2548
2549 (range ; point is within a literal.
2550 (cond
2551 ;; sentence-flag is null => skip the entire literal.
2552 ;; or a Single line string.
2553 ((or (null sentence-flag)
2554 (c-one-line-string-p range))
2555 (goto-char (cdr range))
2556 (setq range (c-ascertain-following-literal))
2557 ;; Is there a virtual semicolon here (e.g. for AWK)?
2558 (not (c-at-vsemi-p)))
2559
2560 ;; Comment or multi-line string.
2561 (t (when (setq res ; gets non-nil when we go out of the literal
2562 (if (eq (c-literal-type range) 'string)
2563 (c-end-of-sentence-in-string range)
2564 (c-end-of-sentence-in-comment range)))
2565 (setq range (c-ascertain-following-literal)))
2566 ;; If we've just come forward out of a literal, check for
2567 ;; vsemi. (N.B. AWK can't have a vsemi after a comment, but
2568 ;; some other language may do in the future)
2569 (and res
2570 (not (c-at-vsemi-p))))))
2571
2572 ;; Non-literal code.
2573 (t (setq res (c-forward-over-illiterals macro-fence
2574 (> (point) here)))
2575 ;; Are we about to move forward into or out of a
2576 ;; preprocessor command?
2577 (when (eq (cdr res) 'macro-boundary)
2578 (save-excursion
2579 (end-of-line)
2580 (setq macro-fence
2581 (and (not (eobp))
2582 (progn (c-skip-ws-forward)
2583 (c-beginning-of-macro))
2584 (progn (c-end-of-macro)
2585 (point))))))
2586 ;; Are we about to move forward into a literal?
2587 (when (memq (cdr res) '(macro-boundary literal))
2588 (setq range (c-ascertain-following-literal)))
2589 (car res))))
2590
2591 (if (/= count 0) (setq count (1- count))))
2592 (c-keep-region-active))))
2593
2594 \f
2595 ;; set up electric character functions to work with pending-del,
2596 ;; (a.k.a. delsel) mode. All symbols get the t value except
2597 ;; the functions which delete, which gets 'supersede.
2598 (mapc
2599 (function
2600 (lambda (sym)
2601 (put sym 'delete-selection t) ; for delsel (Emacs)
2602 (put sym 'pending-delete t))) ; for pending-del (XEmacs)
2603 '(c-electric-pound
2604 c-electric-brace
2605 c-electric-slash
2606 c-electric-star
2607 c-electric-semi&comma
2608 c-electric-lt-gt
2609 c-electric-colon
2610 c-electric-paren))
2611 (put 'c-electric-delete 'delete-selection 'supersede) ; delsel
2612 (put 'c-electric-delete 'pending-delete 'supersede) ; pending-del
2613 (put 'c-electric-backspace 'delete-selection 'supersede) ; delsel
2614 (put 'c-electric-backspace 'pending-delete 'supersede) ; pending-del
2615 (put 'c-electric-delete-forward 'delete-selection 'supersede) ; delsel
2616 (put 'c-electric-delete-forward 'pending-delete 'supersede) ; pending-del
2617
2618 \f
2619 ;; Inserting/indenting comments
2620 (defun c-calc-comment-indent (entry)
2621 ;; This function might do hidden buffer changes.
2622 (if (symbolp entry)
2623 (setq entry (or (assq entry c-indent-comment-alist)
2624 (assq 'other c-indent-comment-alist)
2625 '(default . (column . nil)))))
2626 (let ((action (car (cdr entry)))
2627 (value (cdr (cdr entry)))
2628 (col (current-column)))
2629 (cond ((eq action 'space)
2630 (+ col value))
2631 ((eq action 'column)
2632 (unless value (setq value comment-column))
2633 (if (bolp)
2634 ;; Do not pad with one space if we're at bol.
2635 value
2636 (max (1+ col) value)))
2637 ((eq action 'align)
2638 (or (save-excursion
2639 (beginning-of-line)
2640 (unless (bobp)
2641 (backward-char)
2642 (let ((lim (c-literal-limits (c-point 'bol) t)))
2643 (when (consp lim)
2644 (goto-char (car lim))
2645 (when (looking-at "/[/*]") ; FIXME!!! Adapt for AWK! (ACM, 2005/11/18)
2646 ;; Found comment to align with.
2647 (if (bolp)
2648 ;; Do not pad with one space if we're at bol.
2649 0
2650 (max (1+ col) (current-column))))))))
2651 ;; Recurse to handle value as a new spec.
2652 (c-calc-comment-indent (cdr entry)))))))
2653
2654 (defun c-comment-indent ()
2655 "Used by `indent-for-comment' to create and indent comments.
2656 See `c-indent-comment-alist' for a description."
2657 (save-excursion
2658 (end-of-line)
2659 (c-save-buffer-state
2660 ((eot (let ((lim (c-literal-limits (c-point 'bol) t)))
2661 (or (when (consp lim)
2662 (goto-char (car lim))
2663 (when (looking-at "/[/*]")
2664 (skip-chars-backward " \t")
2665 (point)))
2666 (progn
2667 (skip-chars-backward " \t")
2668 (point)))))
2669 (line-type
2670 (cond ((looking-at "^/[/*]")
2671 'anchored-comment)
2672 ((progn (beginning-of-line)
2673 (eq (point) eot))
2674 'empty-line)
2675 ((progn (back-to-indentation)
2676 (and (eq (char-after) ?})
2677 (eq (point) (1- eot))))
2678 'end-block)
2679 ((and (looking-at "#[ \t]*\\(endif\\|else\\)")
2680 (eq (match-end 0) eot))
2681 'cpp-end-block)
2682 (t
2683 'other))))
2684 (if (and (memq line-type '(anchored-comment empty-line))
2685 c-indent-comments-syntactically-p)
2686 (let ((c-syntactic-context (c-guess-basic-syntax)))
2687 ;; BOGOSITY ALERT: if we're looking at the eol, its
2688 ;; because indent-for-comment hasn't put the comment-start
2689 ;; in the buffer yet. this will screw up the syntactic
2690 ;; analysis so we kludge in the necessary info. Another
2691 ;; kludge is that if we're at the bol, then we really want
2692 ;; to ignore any anchoring as specified by
2693 ;; c-comment-only-line-offset since it doesn't apply here.
2694 (if (eolp)
2695 (c-add-syntax 'comment-intro))
2696 (let ((c-comment-only-line-offset
2697 (if (consp c-comment-only-line-offset)
2698 c-comment-only-line-offset
2699 (cons c-comment-only-line-offset
2700 c-comment-only-line-offset))))
2701 (c-get-syntactic-indentation c-syntactic-context)))
2702 (goto-char eot)
2703 (c-calc-comment-indent line-type)))))
2704
2705 \f
2706 ;; used by outline-minor-mode
2707 (defun c-outline-level ()
2708 (let (buffer-invisibility-spec);; This so that `current-column' DTRT
2709 ;; in otherwise-hidden text.
2710 (save-excursion
2711 (skip-chars-forward "\t ")
2712 (current-column))))
2713
2714 \f
2715 ;; Movement by CPP conditionals.
2716 (defun c-up-conditional (count)
2717 "Move back to the containing preprocessor conditional, leaving mark behind.
2718 A prefix argument acts as a repeat count. With a negative argument,
2719 move forward to the end of the containing preprocessor conditional.
2720
2721 \"#elif\" is treated like \"#else\" followed by \"#if\", so the
2722 function stops at them when going backward, but not when going
2723 forward."
2724 (interactive "p")
2725 (c-forward-conditional (- count) -1)
2726 (c-keep-region-active))
2727
2728 (defun c-up-conditional-with-else (count)
2729 "Move back to the containing preprocessor conditional, including \"#else\".
2730 Just like `c-up-conditional', except it also stops at \"#else\"
2731 directives."
2732 (interactive "p")
2733 (c-forward-conditional (- count) -1 t)
2734 (c-keep-region-active))
2735
2736 (defun c-down-conditional (count)
2737 "Move forward into the next preprocessor conditional, leaving mark behind.
2738 A prefix argument acts as a repeat count. With a negative argument,
2739 move backward into the previous preprocessor conditional.
2740
2741 \"#elif\" is treated like \"#else\" followed by \"#if\", so the
2742 function stops at them when going forward, but not when going
2743 backward."
2744 (interactive "p")
2745 (c-forward-conditional count 1)
2746 (c-keep-region-active))
2747
2748 (defun c-down-conditional-with-else (count)
2749 "Move forward into the next preprocessor conditional, including \"#else\".
2750 Just like `c-down-conditional', except it also stops at \"#else\"
2751 directives."
2752 (interactive "p")
2753 (c-forward-conditional count 1 t)
2754 (c-keep-region-active))
2755
2756 (defun c-backward-conditional (count &optional target-depth with-else)
2757 "Move back across a preprocessor conditional, leaving mark behind.
2758 A prefix argument acts as a repeat count. With a negative argument,
2759 move forward across a preprocessor conditional."
2760 (interactive "p")
2761 (c-forward-conditional (- count) target-depth with-else)
2762 (c-keep-region-active))
2763
2764 (defun c-forward-conditional (count &optional target-depth with-else)
2765 "Move forward across a preprocessor conditional, leaving mark behind.
2766 A prefix argument acts as a repeat count. With a negative argument,
2767 move backward across a preprocessor conditional.
2768
2769 \"#elif\" is treated like \"#else\" followed by \"#if\", except that
2770 the nesting level isn't changed when tracking subconditionals.
2771
2772 The optional argument TARGET-DEPTH specifies the wanted nesting depth
2773 after each scan. I.e. if TARGET-DEPTH is -1, the function will move
2774 out of the enclosing conditional. A non-integer non-nil TARGET-DEPTH
2775 counts as -1.
2776
2777 If the optional argument WITH-ELSE is non-nil, \"#else\" directives
2778 are treated as conditional clause limits. Normally they are ignored."
2779 (interactive "p")
2780 (let* ((forward (> count 0))
2781 (increment (if forward -1 1))
2782 (search-function (if forward 're-search-forward 're-search-backward))
2783 (new))
2784 (unless (integerp target-depth)
2785 (setq target-depth (if target-depth -1 0)))
2786 (save-excursion
2787 (while (/= count 0)
2788 (let ((depth 0)
2789 ;; subdepth is the depth in "uninteresting" subtrees,
2790 ;; i.e. those that takes us farther from the target
2791 ;; depth instead of closer.
2792 (subdepth 0)
2793 found)
2794 (save-excursion
2795 ;; Find the "next" significant line in the proper direction.
2796 (while (and (not found)
2797 ;; Rather than searching for a # sign that
2798 ;; comes at the beginning of a line aside from
2799 ;; whitespace, search first for a string
2800 ;; starting with # sign. Then verify what
2801 ;; precedes it. This is faster on account of
2802 ;; the fastmap feature of the regexp matcher.
2803 (funcall search-function
2804 "#[ \t]*\\(if\\|elif\\|endif\\|else\\)"
2805 nil t))
2806 (beginning-of-line)
2807 ;; Now verify it is really a preproc line.
2808 (if (looking-at "^[ \t]*#[ \t]*\\(if\\|elif\\|endif\\|else\\)")
2809 (let (dchange (directive (match-string 1)))
2810 (cond ((string= directive "if")
2811 (setq dchange (- increment)))
2812 ((string= directive "endif")
2813 (setq dchange increment))
2814 ((= subdepth 0)
2815 ;; When we're not in an "uninteresting"
2816 ;; subtree, we might want to act on "elif"
2817 ;; and "else" too.
2818 (if (cond (with-else
2819 ;; Always move toward the target depth.
2820 (setq dchange
2821 (if (> target-depth 0) 1 -1)))
2822 ((string= directive "elif")
2823 (setq dchange (- increment))))
2824 ;; Ignore the change if it'd take us
2825 ;; into an "uninteresting" subtree.
2826 (if (eq (> dchange 0) (<= target-depth 0))
2827 (setq dchange nil)))))
2828 (when dchange
2829 (when (or (/= subdepth 0)
2830 (eq (> dchange 0) (<= target-depth 0)))
2831 (setq subdepth (+ subdepth dchange)))
2832 (setq depth (+ depth dchange))
2833 ;; If we are trying to move across, and we find an
2834 ;; end before we find a beginning, get an error.
2835 (if (and (< depth target-depth) (< dchange 0))
2836 (error (if forward
2837 "No following conditional at this level"
2838 "No previous conditional at this level"))))
2839 ;; When searching forward, start from next line so
2840 ;; that we don't find the same line again.
2841 (if forward (forward-line 1))
2842 ;; We found something if we've arrived at the
2843 ;; target depth.
2844 (if (and dchange (= depth target-depth))
2845 (setq found (point))))
2846 ;; else
2847 (if forward (forward-line 1)))))
2848 (or found
2849 (error "No containing preprocessor conditional"))
2850 (goto-char (setq new found)))
2851 (setq count (+ count increment))))
2852 (push-mark)
2853 (goto-char new))
2854 (c-keep-region-active))
2855
2856 \f
2857 ;; commands to indent lines, regions, defuns, and expressions
2858 (defun c-indent-command (&optional arg)
2859 "Indent current line as C code, and/or insert some whitespace.
2860
2861 If `c-tab-always-indent' is t, always just indent the current line.
2862 If nil, indent the current line only if point is at the left margin or
2863 in the line's indentation; otherwise insert some whitespace[*]. If
2864 other than nil or t, then some whitespace[*] is inserted only within
2865 literals (comments and strings), but the line is always reindented.
2866
2867 If `c-syntactic-indentation' is t, indentation is done according to
2868 the syntactic context. A numeric argument, regardless of its value,
2869 means indent rigidly all the lines of the expression starting after
2870 point so that this line becomes properly indented. The relative
2871 indentation among the lines of the expression is preserved.
2872
2873 If `c-syntactic-indentation' is nil, the line is just indented one
2874 step according to `c-basic-offset'. In this mode, a numeric argument
2875 indents a number of such steps, positive or negative, and an empty
2876 prefix argument is equivalent to -1.
2877
2878 [*] The amount and kind of whitespace inserted is controlled by the
2879 variable `c-insert-tab-function', which is called to do the actual
2880 insertion of whitespace. Normally the function in this variable
2881 just inserts a tab character, or the equivalent number of spaces,
2882 depending on the variable `indent-tabs-mode'."
2883
2884 (interactive "P")
2885 (let ((indent-function
2886 (if c-syntactic-indentation
2887 (symbol-function 'indent-according-to-mode)
2888 (lambda ()
2889 (let ((c-macro-start c-macro-start)
2890 (steps (if (equal arg '(4))
2891 -1
2892 (prefix-numeric-value arg))))
2893 (c-shift-line-indentation (* steps c-basic-offset))
2894 (when (and c-auto-align-backslashes
2895 (save-excursion
2896 (end-of-line)
2897 (eq (char-before) ?\\))
2898 (c-query-and-set-macro-start))
2899 ;; Realign the line continuation backslash if inside a macro.
2900 (c-backslash-region (point) (point) nil t)))
2901 ))))
2902 (if (and c-syntactic-indentation arg)
2903 ;; If c-syntactic-indentation and got arg, always indent this
2904 ;; line as C and shift remaining lines of expression the same
2905 ;; amount.
2906 (let ((shift-amt (save-excursion
2907 (back-to-indentation)
2908 (current-column)))
2909 beg end)
2910 (c-indent-line)
2911 (setq shift-amt (- (save-excursion
2912 (back-to-indentation)
2913 (current-column))
2914 shift-amt))
2915 (save-excursion
2916 (if (eq c-tab-always-indent t)
2917 (beginning-of-line)) ; FIXME!!! What is this here for? ACM 2005/10/31
2918 (setq beg (point))
2919 (c-forward-sexp 1)
2920 (setq end (point))
2921 (goto-char beg)
2922 (forward-line 1)
2923 (setq beg (point)))
2924 (if (> end beg)
2925 (indent-code-rigidly beg end shift-amt "#")))
2926 ;; Else use c-tab-always-indent to determine behavior.
2927 (cond
2928 ;; CASE 1: indent when at column zero or in line's indentation,
2929 ;; otherwise insert a tab
2930 ((not c-tab-always-indent)
2931 (if (save-excursion
2932 (skip-chars-backward " \t")
2933 (not (bolp)))
2934 (funcall c-insert-tab-function)
2935 (funcall indent-function)))
2936 ;; CASE 2: just indent the line
2937 ((eq c-tab-always-indent t)
2938 (funcall indent-function))
2939 ;; CASE 3: if in a literal, insert a tab, but always indent the
2940 ;; line
2941 (t
2942 (if (c-save-buffer-state () (c-in-literal))
2943 (funcall c-insert-tab-function))
2944 (funcall indent-function)
2945 )))))
2946
2947 (defun c-indent-exp (&optional shutup-p)
2948 "Indent each line in the balanced expression following point syntactically.
2949 If optional SHUTUP-P is non-nil, no errors are signaled if no
2950 balanced expression is found."
2951 (interactive "*P")
2952 (let ((here (point-marker))
2953 end)
2954 (set-marker-insertion-type here t)
2955 (unwind-protect
2956 (let ((start (save-restriction
2957 ;; Find the closest following open paren that
2958 ;; ends on another line.
2959 (narrow-to-region (point-min) (c-point 'eol))
2960 (let (beg (end (point)))
2961 (while (and (setq beg (c-down-list-forward end))
2962 (setq end (c-up-list-forward beg))))
2963 (and beg
2964 (eq (char-syntax (char-before beg)) ?\()
2965 (1- beg))))))
2966 ;; sanity check
2967 (if (not start)
2968 (unless shutup-p
2969 (error "Cannot find start of balanced expression to indent"))
2970 (goto-char start)
2971 (setq end (c-safe (scan-sexps (point) 1)))
2972 (if (not end)
2973 (unless shutup-p
2974 (error "Cannot find end of balanced expression to indent"))
2975 (forward-line)
2976 (if (< (point) end)
2977 (c-indent-region (point) end)))))
2978 (goto-char here)
2979 (set-marker here nil))))
2980
2981 (defun c-indent-defun ()
2982 "Indent the current top-level declaration or macro syntactically.
2983 In the macro case this also has the effect of realigning any line
2984 continuation backslashes, unless `c-auto-align-backslashes' is nil."
2985 (interactive "*")
2986 (let ((here (point-marker)) decl-limits)
2987 (unwind-protect
2988 (progn
2989 (c-save-buffer-state nil
2990 ;; We try to be line oriented, unless there are several
2991 ;; declarations on the same line.
2992 (if (looking-at c-syntactic-eol)
2993 (c-backward-token-2 1 nil (c-point 'bol))
2994 (c-forward-token-2 0 nil (c-point 'eol)))
2995 (setq decl-limits (c-declaration-limits nil)))
2996 (if decl-limits
2997 (c-indent-region (car decl-limits)
2998 (cdr decl-limits))))
2999 (goto-char here)
3000 (set-marker here nil))))
3001
3002 (defun c-indent-region (start end &optional quiet)
3003 "Indent syntactically every line whose first char is between START
3004 and END inclusive. If the optional argument QUIET is non-nil then no
3005 syntactic errors are reported, even if `c-report-syntactic-errors' is
3006 non-nil."
3007 (save-excursion
3008 (goto-char end)
3009 (skip-chars-backward " \t\n\r\f\v")
3010 (setq end (point))
3011 (goto-char start)
3012 ;; Advance to first nonblank line.
3013 (beginning-of-line)
3014 (skip-chars-forward " \t\n\r\f\v")
3015 (setq start (point))
3016 (beginning-of-line)
3017 (setq c-parsing-error
3018 (or (let ((endmark (copy-marker end))
3019 (c-parsing-error nil)
3020 ;; shut up any echo msgs on indiv lines
3021 (c-echo-syntactic-information-p nil)
3022 (in-macro (and c-auto-align-backslashes
3023 (c-save-buffer-state ()
3024 (save-excursion (c-beginning-of-macro)))
3025 start))
3026 (c-fix-backslashes nil)
3027 syntax)
3028 (unwind-protect
3029 (progn
3030 (c-progress-init start end 'c-indent-region)
3031 (while (and (bolp)
3032 (not (eobp))
3033 (< (point) endmark))
3034 ;; update progress
3035 (c-progress-update)
3036 ;; skip empty lines
3037 (skip-chars-forward " \t\n")
3038 (beginning-of-line)
3039 ;; Get syntax and indent.
3040 (c-save-buffer-state nil
3041 (setq syntax (c-guess-basic-syntax)))
3042 (if (and c-auto-align-backslashes
3043 (assq 'cpp-macro syntax))
3044 ;; Record macro start.
3045 (setq in-macro (point)))
3046 (if in-macro
3047 (if (looking-at "\\s *\\\\$")
3048 (forward-line)
3049 (c-indent-line syntax t t)
3050 (if (progn (end-of-line)
3051 (not (eq (char-before) ?\\)))
3052 (progn
3053 ;; Fixup macro backslashes.
3054 (forward-line)
3055 (c-backslash-region in-macro (point) nil)
3056 (setq in-macro nil))
3057 (forward-line)))
3058 (c-indent-line syntax t t)
3059 (forward-line)))
3060 (if in-macro
3061 (c-backslash-region in-macro (c-point 'bopl) nil t)))
3062 (set-marker endmark nil)
3063 (c-progress-fini 'c-indent-region))
3064 (c-echo-parsing-error quiet))
3065 c-parsing-error))))
3066
3067 (defun c-fn-region-is-active-p ()
3068 ;; Function version of the macro for use in places that aren't
3069 ;; compiled, e.g. in the menus.
3070 (c-region-is-active-p))
3071
3072 (defun c-indent-line-or-region ()
3073 "When the region is active, indent it syntactically. Otherwise
3074 indent the current line syntactically."
3075 ;; Emacs has a variable called mark-active, XEmacs uses region-active-p
3076 (interactive)
3077 (if (and transient-mark-mode mark-active
3078 (not (eq (region-beginning) (region-end))))
3079 (c-indent-region (region-beginning) (region-end))
3080 (c-indent-line)))
3081
3082 \f
3083 ;; for progress reporting
3084 (defvar c-progress-info nil)
3085
3086 (defun c-progress-init (start end context)
3087 (cond
3088 ;; Be silent
3089 ((not c-progress-interval))
3090 ;; Start the progress update messages. If this Emacs doesn't have
3091 ;; a built-in timer, just be dumb about it.
3092 ((not (fboundp 'current-time))
3093 (message "Indenting region... (this may take a while)"))
3094 ;; If progress has already been initialized, do nothing. otherwise
3095 ;; initialize the counter with a vector of:
3096 ;; [start end lastsec context]
3097 (c-progress-info)
3098 (t (setq c-progress-info (vector start
3099 (save-excursion
3100 (goto-char end)
3101 (point-marker))
3102 (nth 1 (current-time))
3103 context))
3104 (message "Indenting region..."))
3105 ))
3106
3107 (defun c-progress-update ()
3108 (if (not (and c-progress-info c-progress-interval))
3109 nil
3110 (let ((now (nth 1 (current-time)))
3111 (start (aref c-progress-info 0))
3112 (end (aref c-progress-info 1))
3113 (lastsecs (aref c-progress-info 2)))
3114 ;; should we update? currently, update happens every 2 seconds,
3115 ;; what's the right value?
3116 (if (< c-progress-interval (- now lastsecs))
3117 (progn
3118 (message "Indenting region... (%d%% complete)"
3119 (/ (* 100 (- (point) start)) (- end start)))
3120 (aset c-progress-info 2 now)))
3121 )))
3122
3123 (defun c-progress-fini (context)
3124 (if (not c-progress-interval)
3125 nil
3126 (if (or (eq context (aref c-progress-info 3))
3127 (eq context t))
3128 (progn
3129 (set-marker (aref c-progress-info 1) nil)
3130 (setq c-progress-info nil)
3131 (message "Indenting region... done")))))
3132
3133
3134 \f
3135 ;;; This page handles insertion and removal of backslashes for C macros.
3136
3137 (defun c-backslash-region (from to delete-flag &optional line-mode)
3138 "Insert, align, or delete end-of-line backslashes on the lines in the region.
3139 With no argument, inserts backslashes and aligns existing backslashes.
3140 With an argument, deletes the backslashes. The backslash alignment is
3141 done according to the settings in `c-backslash-column',
3142 `c-backslash-max-column' and `c-auto-align-backslashes'.
3143
3144 This function does not modify blank lines at the start of the region.
3145 If the region ends at the start of a line and the macro doesn't
3146 continue below it, the backslash (if any) at the end of the previous
3147 line is deleted.
3148
3149 You can put the region around an entire macro definition and use this
3150 command to conveniently insert and align the necessary backslashes."
3151 (interactive "*r\nP")
3152 (let ((endmark (make-marker))
3153 ;; Keep the backslash trimming functions from changing the
3154 ;; whitespace around point, since in this case it's only the
3155 ;; position of point that tells the indentation of the line.
3156 (point-pos (if (save-excursion
3157 (skip-chars-backward " \t")
3158 (and (bolp) (looking-at "[ \t]*\\\\?$")))
3159 (point-marker)
3160 (point-min)))
3161 column longest-line-col bs-col-after-end)
3162 (save-excursion
3163 (goto-char to)
3164 (if (and (not line-mode) (bobp))
3165 ;; Nothing to do if to is at bob, since we should back up
3166 ;; and there's no line to back up to.
3167 nil
3168 (when (and (not line-mode) (bolp))
3169 ;; Do not back up the to line if line-mode is set, to make
3170 ;; e.g. c-newline-and-indent consistent regardless whether
3171 ;; the (newline) call leaves point at bol or not.
3172 (backward-char)
3173 (setq to (point)))
3174 (if delete-flag
3175 (progn
3176 (set-marker endmark (point))
3177 (goto-char from)
3178 (c-delete-backslashes-forward endmark point-pos))
3179 ;; Set bs-col-after-end to the column of any backslash
3180 ;; following the region, or nil if there is none.
3181 (setq bs-col-after-end
3182 (and (progn (end-of-line)
3183 (eq (char-before) ?\\))
3184 (= (forward-line 1) 0)
3185 (progn (end-of-line)
3186 (eq (char-before) ?\\))
3187 (1- (current-column))))
3188 (when line-mode
3189 ;; Back up the to line if line-mode is set, since the line
3190 ;; after the newly inserted line break should not be
3191 ;; touched in c-newline-and-indent.
3192 (setq to (max from (or (c-safe (c-point 'eopl)) from)))
3193 (unless bs-col-after-end
3194 ;; Set bs-col-after-end to non-nil in any case, since we
3195 ;; do not want to delete the backslash at the last line.
3196 (setq bs-col-after-end t)))
3197 (if (and line-mode
3198 (not c-auto-align-backslashes))
3199 (goto-char from)
3200 ;; Compute the smallest column number past the ends of all
3201 ;; the lines.
3202 (setq longest-line-col 0)
3203 (goto-char to)
3204 (if bs-col-after-end
3205 ;; Include one more line in the max column
3206 ;; calculation, since the to line will be backslashed
3207 ;; too.
3208 (forward-line 1))
3209 (end-of-line)
3210 (while (and (>= (point) from)
3211 (progn
3212 (if (eq (char-before) ?\\)
3213 (forward-char -1))
3214 (skip-chars-backward " \t")
3215 (setq longest-line-col (max longest-line-col
3216 (1+ (current-column))))
3217 (beginning-of-line)
3218 (not (bobp))))
3219 (backward-char))
3220 ;; Try to align with surrounding backslashes.
3221 (goto-char from)
3222 (beginning-of-line)
3223 (if (and (not (bobp))
3224 (progn (backward-char)
3225 (eq (char-before) ?\\)))
3226 (progn
3227 (setq column (1- (current-column)))
3228 (if (numberp bs-col-after-end)
3229 ;; Both a preceding and a following backslash.
3230 ;; Choose the greatest of them.
3231 (setq column (max column bs-col-after-end)))
3232 (goto-char from))
3233 ;; No preceding backslash. Try to align with one
3234 ;; following the region. Disregard the backslash at the
3235 ;; to line since it's likely to be bogus (e.g. when
3236 ;; called from c-newline-and-indent).
3237 (if (numberp bs-col-after-end)
3238 (setq column bs-col-after-end))
3239 ;; Don't modify blank lines at start of region.
3240 (goto-char from)
3241 (while (and (< (point) to) (bolp) (eolp))
3242 (forward-line 1)))
3243 (if (and column (< column longest-line-col))
3244 ;; Don't try to align with surrounding backslashes if
3245 ;; any line is too long.
3246 (setq column nil))
3247 (unless column
3248 ;; Impose minimum limit and tab width alignment only if
3249 ;; we can't align with surrounding backslashes.
3250 (if (> (% longest-line-col tab-width) 0)
3251 (setq longest-line-col
3252 (* (/ (+ longest-line-col tab-width -1)
3253 tab-width)
3254 tab-width)))
3255 (setq column (max c-backslash-column
3256 longest-line-col)))
3257 ;; Always impose maximum limit.
3258 (setq column (min column c-backslash-max-column)))
3259 (if bs-col-after-end
3260 ;; Add backslashes on all lines if the macro continues
3261 ;; after the to line.
3262 (progn
3263 (set-marker endmark to)
3264 (c-append-backslashes-forward endmark column point-pos))
3265 ;; Add backslashes on all lines except the last, and
3266 ;; remove any on the last line.
3267 (if (save-excursion
3268 (goto-char to)
3269 (beginning-of-line)
3270 (if (not (bobp))
3271 (set-marker endmark (1- (point)))))
3272 (progn
3273 (c-append-backslashes-forward endmark column point-pos)
3274 ;; The function above leaves point on the line
3275 ;; following endmark.
3276 (set-marker endmark (point)))
3277 (set-marker endmark to))
3278 (c-delete-backslashes-forward endmark point-pos)))))
3279 (set-marker endmark nil)
3280 (if (markerp point-pos)
3281 (set-marker point-pos nil))))
3282
3283 (defun c-append-backslashes-forward (to-mark column point-pos)
3284 (let ((state (parse-partial-sexp (c-point 'bol) (point))))
3285 (if column
3286 (while
3287 (and
3288 (<= (point) to-mark)
3289
3290 (let ((start (point)) (inserted nil) end col)
3291 (end-of-line)
3292 (unless (eq (char-before) ?\\)
3293 (insert ?\\)
3294 (setq inserted t))
3295 (setq state (parse-partial-sexp
3296 start (point) nil nil state))
3297 (backward-char)
3298 (setq col (current-column))
3299
3300 ;; Avoid unnecessary changes of the buffer.
3301 (cond ((and (not inserted) (nth 3 state))
3302 ;; Don't realign backslashes in string literals
3303 ;; since that would change them.
3304 )
3305
3306 ((< col column)
3307 (delete-region
3308 (point)
3309 (progn
3310 (skip-chars-backward
3311 " \t" (if (>= (point) point-pos) point-pos))
3312 (point)))
3313 (indent-to column))
3314
3315 ((and (= col column)
3316 (memq (char-before) '(?\ ?\t))))
3317
3318 ((progn
3319 (setq end (point))
3320 (or (/= (skip-chars-backward
3321 " \t" (if (>= (point) point-pos) point-pos))
3322 -1)
3323 (/= (char-after) ?\ )))
3324 (delete-region (point) end)
3325 (indent-to column 1)))
3326
3327 (zerop (forward-line 1)))
3328 (bolp))) ; forward-line has funny behavior at eob.
3329
3330 ;; Make sure there are backslashes with at least one space in
3331 ;; front of them.
3332 (while
3333 (and
3334 (<= (point) to-mark)
3335
3336 (let ((start (point)))
3337 (end-of-line)
3338 (setq state (parse-partial-sexp
3339 start (point) nil nil state))
3340
3341 (if (eq (char-before) ?\\)
3342 (unless (nth 3 state)
3343 (backward-char)
3344 (unless (and (memq (char-before) '(?\ ?\t))
3345 (/= (point) point-pos))
3346 (insert ?\ )))
3347
3348 (if (and (memq (char-before) '(?\ ?\t))
3349 (/= (point) point-pos))
3350 (insert ?\\)
3351 (insert ?\ ?\\)))
3352
3353 (zerop (forward-line 1)))
3354 (bolp)))))) ; forward-line has funny behavior at eob.
3355
3356 (defun c-delete-backslashes-forward (to-mark point-pos)
3357 (while
3358 (and (<= (point) to-mark)
3359 (progn
3360 (end-of-line)
3361 (if (eq (char-before) ?\\)
3362 (delete-region
3363 (point)
3364 (progn (backward-char)
3365 (skip-chars-backward " \t" (if (>= (point) point-pos)
3366 point-pos))
3367 (point))))
3368 (zerop (forward-line 1)))
3369 (bolp)))) ; forward-line has funny behavior at eob.
3370
3371
3372 \f
3373 ;;; Line breaking and paragraph filling.
3374
3375 (defvar c-auto-fill-prefix t)
3376 (defvar c-lit-limits nil)
3377 (defvar c-lit-type nil)
3378
3379 ;; The filling code is based on a simple theory; leave the intricacies
3380 ;; of the text handling to the currently active mode for that
3381 ;; (e.g. adaptive-fill-mode or filladapt-mode) and do as little as
3382 ;; possible to make them work correctly wrt the comment and string
3383 ;; separators, one-line paragraphs etc. Unfortunately, when it comes
3384 ;; to it, there's quite a lot of special cases to handle which makes
3385 ;; the code anything but simple. The intention is that it will work
3386 ;; with any well-written text filling package that preserves a fill
3387 ;; prefix.
3388 ;;
3389 ;; We temporarily mask comment starters and enders as necessary for
3390 ;; the filling code to do its job on a seemingly normal text block.
3391 ;; We do _not_ mask the fill prefix, so it's up to the filling code to
3392 ;; preserve it correctly (especially important when filling C++ style
3393 ;; line comments). By default, we set up and use adaptive-fill-mode,
3394 ;; which is standard in all supported Emacs flavors.
3395
3396 (defun c-guess-fill-prefix (lit-limits lit-type)
3397 ;; Determine the appropriate comment fill prefix for a block or line
3398 ;; comment. Return a cons of the prefix string and the column where
3399 ;; it ends. If fill-prefix is set, it'll override. Note that this
3400 ;; function also uses the value of point in some heuristics.
3401 ;;
3402 ;; This function might do hidden buffer changes.
3403
3404 (let* ((here (point))
3405 (prefix-regexp (concat "[ \t]*\\("
3406 c-current-comment-prefix
3407 "\\)[ \t]*"))
3408 (comment-start-regexp (if (eq lit-type 'c++)
3409 prefix-regexp
3410 comment-start-skip))
3411 prefix-line comment-prefix res comment-text-end)
3412
3413 (cond
3414 (fill-prefix
3415 (setq res (cons fill-prefix
3416 ;; Ugly way of getting the column after the fill
3417 ;; prefix; it'd be nice with a current-column
3418 ;; that works on strings..
3419 (let ((start (point)))
3420 (unwind-protect
3421 (progn
3422 (insert-and-inherit "\n" fill-prefix)
3423 (current-column))
3424 (delete-region start (point)))))))
3425
3426 ((eq lit-type 'c++)
3427 (save-excursion
3428 ;; Set fallback for comment-prefix if none is found.
3429 (setq comment-prefix "// "
3430 comment-text-end (cdr lit-limits))
3431
3432 (beginning-of-line)
3433 (if (> (point) (car lit-limits))
3434 ;; The current line is not the comment starter, so the
3435 ;; comment has more than one line, and it can therefore be
3436 ;; used to find the comment fill prefix.
3437 (setq prefix-line (point))
3438
3439 (goto-char (car lit-limits))
3440 (if (and (= (forward-line 1) 0)
3441 (< (point) (cdr lit-limits)))
3442 ;; The line after the comment starter is inside the
3443 ;; comment, so we can use it.
3444 (setq prefix-line (point))
3445
3446 ;; The comment is only one line. Take the comment prefix
3447 ;; from it and keep the indentation.
3448 (goto-char (car lit-limits))
3449 (if (looking-at prefix-regexp)
3450 (goto-char (match-end 0))
3451 (forward-char 2)
3452 (skip-chars-forward " \t"))
3453
3454 (let (str col)
3455 (if (eq (c-point 'boi) (car lit-limits))
3456 ;; There is only whitespace before the comment
3457 ;; starter; take the prefix straight from this line.
3458 (setq str (buffer-substring-no-properties
3459 (c-point 'bol) (point))
3460 col (current-column))
3461
3462 ;; There is code before the comment starter, so we
3463 ;; have to temporarily insert and indent a new line to
3464 ;; get the right space/tab mix in the indentation.
3465 (let ((prefix-len (- (point) (car lit-limits)))
3466 tmp)
3467 (unwind-protect
3468 (progn
3469 (goto-char (car lit-limits))
3470 (indent-to (prog1 (current-column)
3471 (insert ?\n)))
3472 (setq tmp (point))
3473 (forward-char prefix-len)
3474 (setq str (buffer-substring-no-properties
3475 (c-point 'bol) (point))
3476 col (current-column)))
3477 (delete-region (car lit-limits) tmp))))
3478
3479 (setq res
3480 (if (or (string-match "\\s \\'" str) (not (eolp)))
3481 (cons str col)
3482 ;; The prefix ends the line with no whitespace
3483 ;; after it. Default to a single space.
3484 (cons (concat str " ") (1+ col))))
3485 )))))
3486
3487 (t
3488 (setq comment-text-end
3489 (save-excursion
3490 (goto-char (- (cdr lit-limits) 2))
3491 (if (looking-at "\\*/") (point) (cdr lit-limits))))
3492
3493 (save-excursion
3494 (beginning-of-line)
3495 (if (and (> (point) (car lit-limits))
3496 (not (and (looking-at "[ \t]*\\*/")
3497 (eq (cdr lit-limits) (match-end 0)))))
3498 ;; The current line is not the comment starter and
3499 ;; contains more than just the ender, so it's good enough
3500 ;; to be used for the comment fill prefix.
3501 (setq prefix-line (point))
3502 (goto-char (car lit-limits))
3503
3504 (cond ((or (/= (forward-line 1) 0)
3505 (>= (point) (cdr lit-limits))
3506 (and (looking-at "[ \t]*\\*/")
3507 (eq (cdr lit-limits) (match-end 0)))
3508 (and (looking-at prefix-regexp)
3509 (<= (1- (cdr lit-limits)) (match-end 0))))
3510 ;; The comment is either one line or the next line contains
3511 ;; just the comment ender. In this case we have no
3512 ;; information about a suitable comment prefix, so we resort
3513 ;; to c-block-comment-prefix.
3514 (setq comment-prefix (or c-block-comment-prefix "")))
3515
3516 ((< here (point))
3517 ;; The point was on the comment opener line, so we might want
3518 ;; to treat this as a not yet closed comment.
3519
3520 (if (and (match-beginning 1)
3521 (/= (match-beginning 1) (match-end 1)))
3522 ;; Above `prefix-regexp' matched a nonempty prefix on the
3523 ;; second line, so let's use it. Normally it should do
3524 ;; to set `prefix-line' and let the code below pick up
3525 ;; the whole prefix, but if there's no text after the
3526 ;; match then it will probably fall back to no prefix at
3527 ;; all if the comment isn't closed yet, so in that case
3528 ;; it's better to force use of the prefix matched now.
3529 (if (= (match-end 0) (c-point 'eol))
3530 (setq comment-prefix (match-string 1))
3531 (setq prefix-line (point)))
3532
3533 ;; There's no nonempty prefix on the line after the
3534 ;; comment opener. If the line is empty, or if the
3535 ;; text on it has less or equal indentation than the
3536 ;; comment starter we assume it's an unclosed
3537 ;; comment starter, i.e. that
3538 ;; `c-block-comment-prefix' should be used.
3539 ;; Otherwise we assume it's a closed comment where
3540 ;; the prefix really is the empty string.
3541 ;; E.g. this is an unclosed comment:
3542 ;;
3543 ;; /*
3544 ;; foo
3545 ;;
3546 ;; But this is not:
3547 ;;
3548 ;; /*
3549 ;; foo
3550 ;; */
3551 ;;
3552 ;; (Looking for the presence of the comment closer
3553 ;; rarely works since it's probably the closer of
3554 ;; some comment further down when the comment
3555 ;; really is unclosed.)
3556 (if (<= (save-excursion (back-to-indentation)
3557 (current-column))
3558 (save-excursion (goto-char (car lit-limits))
3559 (current-column)))
3560 (setq comment-prefix (or c-block-comment-prefix ""))
3561 (setq prefix-line (point)))))
3562
3563 (t
3564 ;; Otherwise the line after the comment starter is good
3565 ;; enough to find the prefix in.
3566 (setq prefix-line (point))))
3567
3568 (when comment-prefix
3569 ;; Haven't got the comment prefix on any real line that we
3570 ;; can take it from, so we have to temporarily insert
3571 ;; `comment-prefix' on a line and indent it to find the
3572 ;; correct column and the correct mix of tabs and spaces.
3573 (setq res
3574 (let (tmp-pre tmp-post)
3575 (unwind-protect
3576 (progn
3577
3578 (goto-char (car lit-limits))
3579 (if (looking-at comment-start-regexp)
3580 (goto-char (min (match-end 0)
3581 comment-text-end))
3582 (forward-char 2)
3583 (skip-chars-forward " \t"))
3584
3585 (when (eq (char-syntax (char-before)) ?\ )
3586 ;; If there's ws on the current line, we'll use it
3587 ;; instead of what's ending comment-prefix.
3588 (setq comment-prefix
3589 (concat (substring comment-prefix
3590 0 (string-match
3591 "\\s *\\'"
3592 comment-prefix))
3593 (buffer-substring-no-properties
3594 (save-excursion
3595 (skip-chars-backward " \t")
3596 (point))
3597 (point)))))
3598
3599 (setq tmp-pre (point-marker))
3600
3601 ;; We insert an extra non-whitespace character
3602 ;; before the line break and after comment-prefix in
3603 ;; case it's "" or ends with whitespace.
3604 (insert-and-inherit "x\n" comment-prefix "x")
3605 (setq tmp-post (point-marker))
3606
3607 (indent-according-to-mode)
3608
3609 (goto-char (1- tmp-post))
3610 (cons (buffer-substring-no-properties
3611 (c-point 'bol) (point))
3612 (current-column)))
3613
3614 (when tmp-post
3615 (delete-region tmp-pre tmp-post)
3616 (set-marker tmp-pre nil)
3617 (set-marker tmp-post nil))))))))))
3618
3619 (or res ; Found a good prefix above.
3620
3621 (save-excursion
3622 ;; prefix-line is the bol of a line on which we should try
3623 ;; to find the prefix.
3624 (let* (fb-string fb-endpos ; Contains any fallback prefix found.
3625 (test-line
3626 (lambda ()
3627 (when (and (looking-at prefix-regexp)
3628 (<= (match-end 0) comment-text-end))
3629 (unless (eq (match-end 0) (c-point 'eol))
3630 ;; The match is fine if there's text after it.
3631 (throw 'found (cons (buffer-substring-no-properties
3632 (match-beginning 0) (match-end 0))
3633 (progn (goto-char (match-end 0))
3634 (current-column)))))
3635 (unless fb-string
3636 ;; This match is better than nothing, so let's
3637 ;; remember it in case nothing better is found
3638 ;; on another line.
3639 (setq fb-string (buffer-substring-no-properties
3640 (match-beginning 0) (match-end 0))
3641 fb-endpos (match-end 0)))
3642 t))))
3643
3644 (or (catch 'found
3645 ;; Search for a line which has text after the prefix
3646 ;; so that we get the proper amount of whitespace
3647 ;; after it. We start with the current line, then
3648 ;; search backwards, then forwards.
3649
3650 (goto-char prefix-line)
3651 (when (and (funcall test-line)
3652 (or (/= (match-end 1) (match-end 0))
3653 ;; The whitespace is sucked up by the
3654 ;; first [ \t]* glob if the prefix is empty.
3655 (and (= (match-beginning 1) (match-end 1))
3656 (/= (match-beginning 0) (match-end 0)))))
3657 ;; If the current line doesn't have text but do
3658 ;; have whitespace after the prefix, we'll use it.
3659 (throw 'found (cons fb-string
3660 (progn (goto-char fb-endpos)
3661 (current-column)))))
3662
3663 (if (eq lit-type 'c++)
3664 ;; For line comments we can search up to and
3665 ;; including the first line.
3666 (while (and (zerop (forward-line -1))
3667 (>= (point) (car lit-limits)))
3668 (funcall test-line))
3669 ;; For block comments we must stop before the
3670 ;; block starter.
3671 (while (and (zerop (forward-line -1))
3672 (> (point) (car lit-limits)))
3673 (funcall test-line)))
3674
3675 (goto-char prefix-line)
3676 (while (and (zerop (forward-line 1))
3677 (< (point) (cdr lit-limits)))
3678 (funcall test-line))
3679
3680 (goto-char prefix-line)
3681 nil)
3682
3683 (when fb-string
3684 ;; A good line wasn't found, but at least we have a
3685 ;; fallback that matches the comment prefix regexp.
3686 (cond ((or (string-match "\\s \\'" fb-string)
3687 (progn
3688 (goto-char fb-endpos)
3689 (not (eolp))))
3690 ;; There are ws or text after the prefix, so
3691 ;; let's use it.
3692 (cons fb-string (current-column)))
3693
3694 ((progn
3695 ;; Check if there's any whitespace padding
3696 ;; on the comment start line that we can
3697 ;; use after the prefix.
3698 (goto-char (car lit-limits))
3699 (if (looking-at comment-start-regexp)
3700 (goto-char (match-end 0))
3701 (forward-char 2)
3702 (skip-chars-forward " \t"))
3703 (or (not (eolp))
3704 (eq (char-syntax (char-before)) ?\ )))
3705
3706 (setq fb-string (buffer-substring-no-properties
3707 (save-excursion
3708 (skip-chars-backward " \t")
3709 (point))
3710 (point)))
3711 (goto-char fb-endpos)
3712 (skip-chars-backward " \t")
3713
3714 (let ((tmp (point)))
3715 ;; Got to mess in the buffer once again to
3716 ;; ensure the column gets correct. :P
3717 (unwind-protect
3718 (progn
3719 (insert-and-inherit fb-string)
3720 (cons (buffer-substring-no-properties
3721 (c-point 'bol)
3722 (point))
3723 (current-column)))
3724 (delete-region tmp (point)))))
3725
3726 (t
3727 ;; Last resort: Just add a single space after
3728 ;; the prefix.
3729 (cons (concat fb-string " ")
3730 (progn (goto-char fb-endpos)
3731 (1+ (current-column)))))))
3732
3733 ;; The line doesn't match the comment prefix regexp.
3734 (if comment-prefix
3735 ;; We have a fallback for line comments that we must use.
3736 (cons (concat (buffer-substring-no-properties
3737 prefix-line (c-point 'boi))
3738 comment-prefix)
3739 (progn (back-to-indentation)
3740 (+ (current-column) (length comment-prefix))))
3741
3742 ;; Assume we are dealing with a "free text" block
3743 ;; comment where the lines doesn't have any comment
3744 ;; prefix at all and we should just fill it as
3745 ;; normal text.
3746 '("" . 0))))))
3747 ))
3748
3749 (defun c-mask-paragraph (fill-paragraph apply-outside-literal fun &rest args)
3750 ;; Calls FUN with ARGS ar arguments while the current paragraph is
3751 ;; masked to allow adaptive filling to work correctly. That
3752 ;; includes narrowing the buffer and, if point is inside a comment,
3753 ;; masking the comment starter and ender appropriately.
3754 ;;
3755 ;; FILL-PARAGRAPH is non-nil if called for whole paragraph filling.
3756 ;; The position of point is then less significant when doing masking
3757 ;; and narrowing.
3758 ;;
3759 ;; If APPLY-OUTSIDE-LITERAL is nil then the function will be called
3760 ;; only if the point turns out to be inside a comment or a string.
3761 ;;
3762 ;; Note that this function does not do any hidden buffer changes.
3763
3764 (let (fill
3765 ;; beg and end limit the region to narrow. end is a marker.
3766 beg end
3767 ;; tmp-pre and tmp-post mark strings that are temporarily
3768 ;; inserted at the start and end of the region. tmp-pre is a
3769 ;; cons of the positions of the prepended string. tmp-post is
3770 ;; a marker pointing to the single character of the appended
3771 ;; string.
3772 tmp-pre tmp-post
3773 ;; If hang-ender-stuck isn't nil, the comment ender is
3774 ;; hanging. In that case it's set to the number of spaces
3775 ;; that should be between the text and the ender.
3776 hang-ender-stuck
3777 ;; auto-fill-spaces is the exact sequence of whitespace between a
3778 ;; comment's last word and the comment ender, temporarily replaced
3779 ;; with 'x's before calling FUN when FILL-PARAGRAPH is nil.
3780 auto-fill-spaces
3781 (here (point))
3782 (c-lit-limits c-lit-limits)
3783 (c-lit-type c-lit-type))
3784
3785 ;; Restore point on undo. It's necessary since we do a lot of
3786 ;; hidden inserts and deletes below that should be as transparent
3787 ;; as possible.
3788 (if (and buffer-undo-list (not (eq buffer-undo-list t)))
3789 (setq buffer-undo-list (cons (point) buffer-undo-list)))
3790
3791 ;; Determine the limits and type of the containing literal (if any):
3792 ;; C-LIT-LIMITS, C-LIT-TYPE; and the limits of the current paragraph:
3793 ;; BEG and END.
3794 (c-save-buffer-state ()
3795 (save-restriction
3796 ;; Widen to catch comment limits correctly.
3797 (widen)
3798 (unless c-lit-limits
3799 (setq c-lit-limits (c-literal-limits nil fill-paragraph)))
3800 (setq c-lit-limits (c-collect-line-comments c-lit-limits))
3801 (unless c-lit-type
3802 (setq c-lit-type (c-literal-type c-lit-limits))))
3803
3804 (save-excursion
3805 (unless (c-safe (backward-char)
3806 (forward-paragraph)
3807 (>= (point) here))
3808 (goto-char here)
3809 (forward-paragraph))
3810 (setq end (point-marker)))
3811 (save-excursion
3812 (unless (c-safe (forward-char)
3813 (backward-paragraph)
3814 (<= (point) here))
3815 (goto-char here)
3816 (backward-paragraph))
3817 (setq beg (point))))
3818
3819 (unwind-protect
3820 (progn
3821 ;; For each of the possible types of text (string, C comment ...)
3822 ;; determine BEG and END, the region we will narrow to. If we're in
3823 ;; a literal, constrain BEG and END to the limits of this literal.
3824 ;;
3825 ;; For some of these text types, particularly a block comment, we
3826 ;; may need to massage whitespace near literal delimiters, so that
3827 ;; these don't get filled inappropriately.
3828 (cond
3829
3830 ((eq c-lit-type 'c++) ; Line comment.
3831 (save-excursion
3832 ;; Limit to the comment or paragraph end, whichever
3833 ;; comes first.
3834 (set-marker end (min end (cdr c-lit-limits)))
3835
3836 (when (<= beg (car c-lit-limits))
3837 ;; The region includes the comment starter, so we must
3838 ;; check it.
3839 (goto-char (car c-lit-limits))
3840 (back-to-indentation)
3841 (if (eq (point) (car c-lit-limits))
3842 ;; Include the first line in the region.
3843 (setq beg (c-point 'bol))
3844 ;; The first line contains code before the
3845 ;; comment. We must fake a line that doesn't.
3846 (setq tmp-pre t))))
3847
3848 (setq apply-outside-literal t))
3849
3850 ((eq c-lit-type 'c) ; Block comment.
3851 (when
3852 (or (> end (cdr c-lit-limits))
3853 (and (= end (cdr c-lit-limits))
3854 (eq (char-before end) ?/)
3855 (eq (char-before (1- end)) ?*)
3856 ;; disallow "/*/"
3857 (> (- (cdr c-lit-limits) (car c-lit-limits)) 3)))
3858 ;; There is a comment ender, and the region includes it. If
3859 ;; it's on its own line, it stays on its own line. If it's got
3860 ;; company on the line, it keeps (at least one word of) it.
3861 ;; "=====*/" counts as a comment ender here, but "===== */"
3862 ;; doesn't and "foo*/" doesn't.
3863 (unless
3864 (save-excursion
3865 (goto-char (cdr c-lit-limits))
3866 (beginning-of-line)
3867 (and (search-forward-regexp
3868 (concat "\\=[ \t]*\\(" c-current-comment-prefix "\\)")
3869 (- (cdr c-lit-limits) 2) t)
3870 (not (search-forward-regexp
3871 "\\(\\s \\|\\sw\\)"
3872 (- (cdr c-lit-limits) 2) 'limit))
3873 ;; The comment ender IS on its own line. Exclude
3874 ;; this line from the filling.
3875 (set-marker end (c-point 'bol))))
3876
3877 ;; The comment ender is hanging. Replace all space between it
3878 ;; and the last word either by one or two 'x's (when
3879 ;; FILL-PARAGRAPH is non-nil), or a row of x's the same width
3880 ;; as the whitespace (when auto filling), and include it in
3881 ;; the region. We'll change them back to whitespace
3882 ;; afterwards. The effect of this is to glue the comment
3883 ;; ender to the last word in the comment during filling.
3884 (let* ((ender-start (save-excursion
3885 (goto-char (cdr c-lit-limits))
3886 (skip-syntax-backward "^w ")
3887 (point)))
3888 (ender-column (save-excursion
3889 (goto-char ender-start)
3890 (current-column)))
3891 (point-rel (- ender-start here))
3892 spaces)
3893
3894 (save-excursion
3895 ;; Insert a CR after the "*/", adjust END
3896 (goto-char (cdr c-lit-limits))
3897 (setq tmp-post (point-marker))
3898 (insert ?\n)
3899 (set-marker end (point))
3900
3901 (forward-line -1) ; last line of the comment
3902 (if (and (looking-at (concat "[ \t]*\\(\\("
3903 c-current-comment-prefix
3904 "\\)[ \t]*\\)"))
3905 (eq ender-start (match-end 0)))
3906 ;; The comment ender is prefixed by nothing but a
3907 ;; comment line prefix. IS THIS POSSIBLE? (ACM,
3908 ;; 2006/4/28). Remove it along with surrounding ws.
3909 (setq spaces (- (match-end 1) (match-end 2)))
3910 (goto-char ender-start))
3911 (skip-chars-backward " \t\r\n") ; Surely this can be
3912 ; " \t"? "*/" is NOT alone on the line (ACM, 2005/8/18)
3913
3914 ;; What's being tested here? 2006/4/20. FIXME!!!
3915 (if (/= (point) ender-start)
3916 (progn
3917 (if (<= here (point))
3918 ;; Don't adjust point below if it's
3919 ;; before the string we replace.
3920 (setq point-rel -1))
3921 ;; Keep one or two spaces between the
3922 ;; text and the ender, depending on how
3923 ;; many there are now.
3924 (unless spaces
3925 (setq spaces (- ender-column (current-column))))
3926 (setq auto-fill-spaces (c-delete-and-extract-region
3927 (point) ender-start))
3928 ;; paragraph filling condenses multiple spaces to
3929 ;; single or double spaces. auto-fill doesn't.
3930 (if fill-paragraph
3931 (setq spaces
3932 (max
3933 (min spaces
3934 (if sentence-end-double-space 2 1))
3935 1)))
3936 ;; Insert the filler first to keep marks right.
3937 (insert-char ?x spaces t)
3938 (setq hang-ender-stuck spaces)
3939 (setq point-rel
3940 (and (>= point-rel 0)
3941 (- (point) (min point-rel spaces)))))
3942 (setq point-rel nil)))
3943
3944 (if point-rel
3945 ;; Point was in the middle of the string we
3946 ;; replaced above, so put it back in the same
3947 ;; relative position, counting from the end.
3948 (goto-char point-rel)))
3949 ))
3950
3951 (when (<= beg (car c-lit-limits))
3952 ;; The region includes the comment starter.
3953 (save-excursion
3954 (goto-char (car c-lit-limits))
3955 (if (looking-at (concat "\\(" comment-start-skip "\\)$"))
3956 ;; Begin with the next line.
3957 (setq beg (c-point 'bonl))
3958 ;; Fake the fill prefix in the first line.
3959 (setq tmp-pre t))))
3960
3961 (setq apply-outside-literal t))
3962
3963 ((eq c-lit-type 'string) ; String.
3964 (save-excursion
3965 (when (>= end (cdr c-lit-limits))
3966 (goto-char (1- (cdr c-lit-limits)))
3967 (setq tmp-post (point-marker))
3968 (insert ?\n)
3969 (set-marker end (point)))
3970 (when (<= beg (car c-lit-limits))
3971 (goto-char (1+ (car c-lit-limits)))
3972 (setq beg (if (looking-at "\\\\$")
3973 ;; Leave the start line if it's
3974 ;; nothing but an escaped newline.
3975 (1+ (match-end 0))
3976 (point)))))
3977 (setq apply-outside-literal t))
3978
3979 ((eq c-lit-type 'pound) ; Macro
3980 ;; Narrow to the macro limits if they are nearer than the
3981 ;; paragraph limits. Don't know if this is necessary but
3982 ;; do it for completeness sake (doing auto filling at all
3983 ;; inside macros is bogus to begin with since the line
3984 ;; continuation backslashes aren't handled).
3985 (save-excursion
3986 (c-save-buffer-state ()
3987 (c-beginning-of-macro)
3988 (beginning-of-line)
3989 (if (> (point) beg)
3990 (setq beg (point)))
3991 (c-end-of-macro)
3992 (forward-line)
3993 (if (< (point) end)
3994 (set-marker end (point))))))
3995
3996 (t ; Other code.
3997 ;; Try to avoid comments and macros in the paragraph to
3998 ;; avoid that the adaptive fill mode gets the prefix from
3999 ;; them.
4000 (c-save-buffer-state nil
4001 (save-excursion
4002 (goto-char beg)
4003 (c-forward-syntactic-ws end)
4004 (beginning-of-line)
4005 (setq beg (point))
4006 (goto-char end)
4007 (c-backward-syntactic-ws beg)
4008 (forward-line)
4009 (set-marker end (point))))))
4010
4011 (when tmp-pre
4012 ;; Temporarily insert the fill prefix after the comment
4013 ;; starter so that the first line looks like any other
4014 ;; comment line in the narrowed region.
4015 (setq fill (c-save-buffer-state nil
4016 (c-guess-fill-prefix c-lit-limits c-lit-type)))
4017 (unless (string-match (concat "\\`[ \t]*\\("
4018 c-current-comment-prefix
4019 "\\)[ \t]*\\'")
4020 (car fill))
4021 ;; Oops, the prefix doesn't match the comment prefix
4022 ;; regexp. This could produce very confusing
4023 ;; results with adaptive fill packages together with
4024 ;; the insert prefix magic below, since the prefix
4025 ;; often doesn't appear at all. So let's warn about
4026 ;; it.
4027 (message "\
4028 Warning: Regexp from `c-comment-prefix-regexp' doesn't match the comment prefix %S"
4029 (car fill)))
4030 ;; Find the right spot on the line, break it, insert
4031 ;; the fill prefix and make sure we're back in the
4032 ;; same column by temporarily prefixing the first word
4033 ;; with a number of 'x'.
4034 (save-excursion
4035 (goto-char (car c-lit-limits))
4036 (if (looking-at (if (eq c-lit-type 'c++)
4037 c-current-comment-prefix
4038 comment-start-skip))
4039 (goto-char (match-end 0))
4040 (forward-char 2)
4041 (skip-chars-forward " \t"))
4042 (while (and (< (current-column) (cdr fill))
4043 (not (eolp)))
4044 (forward-char 1))
4045 (let ((col (current-column)))
4046 (setq beg (1+ (point))
4047 tmp-pre (list (point)))
4048 (unwind-protect
4049 (progn
4050 (insert-and-inherit "\n" (car fill))
4051 (insert-char ?x (- col (current-column)) t))
4052 (setcdr tmp-pre (point))))))
4053
4054 (when apply-outside-literal
4055 ;; `apply-outside-literal' is always set to t here if
4056 ;; we're inside a literal.
4057
4058 (let ((fill-prefix
4059 (or fill-prefix
4060 ;; Kludge: If the function that adapts the fill prefix
4061 ;; doesn't produce the required comment starter for
4062 ;; line comments, then force it by setting fill-prefix.
4063 (when (and (eq c-lit-type 'c++)
4064 ;; Kludge the kludge: filladapt-mode doesn't
4065 ;; have this problem, but it currently
4066 ;; doesn't override fill-context-prefix
4067 ;; (version 2.12).
4068 (not (and (boundp 'filladapt-mode)
4069 filladapt-mode))
4070 (not (string-match
4071 "\\`[ \t]*//"
4072 (or (fill-context-prefix beg end)
4073 ""))))
4074 (c-save-buffer-state nil
4075 (car (or fill (c-guess-fill-prefix
4076 c-lit-limits c-lit-type)))))))
4077
4078 ;; Save the relative position of point if it's outside the
4079 ;; region we're going to narrow. Want to restore it in that
4080 ;; case, but otherwise it should be moved according to the
4081 ;; called function.
4082 (point-rel (cond ((< (point) beg) (- (point) beg))
4083 ((> (point) end) (- (point) end)))))
4084
4085 ;; Preparations finally done! Now we can call the
4086 ;; actual function.
4087 (prog1
4088 (save-restriction
4089 (narrow-to-region beg end)
4090 (apply fun args))
4091 (if point-rel
4092 ;; Restore point if it was outside the region.
4093 (if (< point-rel 0)
4094 (goto-char (+ beg point-rel))
4095 (goto-char (+ end point-rel))))))))
4096
4097 (when (consp tmp-pre)
4098 (delete-region (car tmp-pre) (cdr tmp-pre)))
4099
4100 (when tmp-post
4101 (save-excursion
4102 (goto-char tmp-post)
4103 (delete-char 1))
4104 (when hang-ender-stuck
4105 ;; Preserve point even if it's in the middle of the string
4106 ;; we replace; save-excursion doesn't work in that case.
4107 (setq here (point))
4108 (goto-char tmp-post)
4109 (skip-syntax-backward "^w ")
4110 (forward-char (- hang-ender-stuck))
4111 (if (or fill-paragraph (not auto-fill-spaces))
4112 (insert-char ?\ hang-ender-stuck t)
4113 (insert auto-fill-spaces)
4114 (setq here (- here (- hang-ender-stuck (length auto-fill-spaces)))))
4115 (delete-char hang-ender-stuck)
4116 (goto-char here))
4117 (set-marker tmp-post nil))
4118
4119 (set-marker end nil))))
4120
4121 (defun c-fill-paragraph (&optional arg)
4122 "Like \\[fill-paragraph] but handles C and C++ style comments.
4123 If any of the current line is a comment or within a comment, fill the
4124 comment or the paragraph of it that point is in, preserving the
4125 comment indentation or line-starting decorations (see the
4126 `c-comment-prefix-regexp' and `c-block-comment-prefix' variables for
4127 details).
4128
4129 If point is inside multiline string literal, fill it. This currently
4130 does not respect escaped newlines, except for the special case when it
4131 is the very first thing in the string. The intended use for this rule
4132 is in situations like the following:
4133
4134 char description[] = \"\\
4135 A very long description of something that you want to fill to make
4136 nicely formatted output.\"\;
4137
4138 If point is in any other situation, i.e. in normal code, do nothing.
4139
4140 Optional prefix ARG means justify paragraph as well."
4141 (interactive "*P")
4142 (let ((fill-paragraph-function
4143 ;; Avoid infinite recursion.
4144 (if (not (eq fill-paragraph-function 'c-fill-paragraph))
4145 fill-paragraph-function)))
4146 (c-mask-paragraph t nil 'fill-paragraph arg))
4147 ;; Always return t. This has the effect that if filling isn't done
4148 ;; above, it isn't done at all, and it's therefore effectively
4149 ;; disabled in normal code.
4150 t)
4151
4152 (defun c-do-auto-fill ()
4153 ;; Do automatic filling if not inside a context where it should be
4154 ;; ignored.
4155 (let ((c-auto-fill-prefix
4156 ;; The decision whether the line should be broken is actually
4157 ;; done in c-indent-new-comment-line, which do-auto-fill
4158 ;; calls to break lines. We just set this special variable
4159 ;; so that we'll know when we're called from there. It's
4160 ;; also used to detect whether fill-prefix is user set or
4161 ;; generated automatically by do-auto-fill.
4162 fill-prefix))
4163 (c-mask-paragraph nil t 'do-auto-fill)))
4164
4165 (defun c-indent-new-comment-line (&optional soft allow-auto-fill)
4166 "Break line at point and indent, continuing comment or macro if within one.
4167 If inside a comment and `comment-multi-line' is non-nil, the
4168 indentation and line prefix are preserved (see the
4169 `c-comment-prefix-regexp' and `c-block-comment-prefix' variables for
4170 details). If inside a single line comment and `comment-multi-line' is
4171 nil, a new comment of the same type is started on the next line and
4172 indented as appropriate for comments. If inside a macro, a line
4173 continuation backslash is inserted and aligned as appropriate, and the
4174 new line is indented according to `c-syntactic-indentation'.
4175
4176 If a fill prefix is specified, it overrides all the above."
4177 ;; allow-auto-fill is used from c-context-line-break to allow auto
4178 ;; filling to break the line more than once. Since this function is
4179 ;; used from auto-fill itself, that's normally disabled to avoid
4180 ;; unnecessary recursion.
4181 (interactive)
4182 (let ((fill-prefix fill-prefix)
4183 (do-line-break
4184 (lambda ()
4185 (delete-horizontal-space)
4186 (if soft
4187 (insert-and-inherit ?\n)
4188 (newline (if allow-auto-fill nil 1)))))
4189 ;; Already know the literal type and limits when called from
4190 ;; c-context-line-break.
4191 (c-lit-limits c-lit-limits)
4192 (c-lit-type c-lit-type)
4193 (c-macro-start c-macro-start))
4194
4195 (c-save-buffer-state ()
4196 (when (not (eq c-auto-fill-prefix t))
4197 ;; Called from do-auto-fill.
4198 (unless c-lit-limits
4199 (setq c-lit-limits (c-literal-limits nil nil t)))
4200 (unless c-lit-type
4201 (setq c-lit-type (c-literal-type c-lit-limits)))
4202 (if (memq (cond ((c-query-and-set-macro-start) 'cpp)
4203 ((null c-lit-type) 'code)
4204 (t c-lit-type))
4205 c-ignore-auto-fill)
4206 (setq fill-prefix t) ; Used as flag in the cond.
4207 (if (and (null c-auto-fill-prefix)
4208 (eq c-lit-type 'c)
4209 (<= (c-point 'bol) (car c-lit-limits)))
4210 ;; The adaptive fill function has generated a prefix, but
4211 ;; we're on the first line in a block comment so it'll be
4212 ;; wrong. Ignore it to guess a better one below.
4213 (setq fill-prefix nil)
4214 (when (and (eq c-lit-type 'c++)
4215 (not (string-match (concat "\\`[ \t]*"
4216 c-line-comment-starter)
4217 (or fill-prefix ""))))
4218 ;; Kludge: If the function that adapted the fill prefix
4219 ;; doesn't produce the required comment starter for line
4220 ;; comments, then we ignore it.
4221 (setq fill-prefix nil)))
4222 )))
4223
4224 (cond ((eq fill-prefix t)
4225 ;; A call from do-auto-fill which should be ignored.
4226 )
4227 (fill-prefix
4228 ;; A fill-prefix overrides anything.
4229 (funcall do-line-break)
4230 (insert-and-inherit fill-prefix))
4231 ((c-save-buffer-state ()
4232 (unless c-lit-limits
4233 (setq c-lit-limits (c-literal-limits)))
4234 (unless c-lit-type
4235 (setq c-lit-type (c-literal-type c-lit-limits)))
4236 (memq c-lit-type '(c c++)))
4237 ;; Some sort of comment.
4238 (if (or comment-multi-line
4239 (save-excursion
4240 (goto-char (car c-lit-limits))
4241 (end-of-line)
4242 (< (point) (cdr c-lit-limits))))
4243 ;; Inside a comment that should be continued.
4244 (let ((fill (c-save-buffer-state nil
4245 (c-guess-fill-prefix
4246 (setq c-lit-limits
4247 (c-collect-line-comments c-lit-limits))
4248 c-lit-type)))
4249 (pos (point))
4250 (start-col (current-column))
4251 (comment-text-end
4252 (or (and (eq c-lit-type 'c)
4253 (save-excursion
4254 (goto-char (- (cdr c-lit-limits) 2))
4255 (if (looking-at "\\*/") (point))))
4256 (cdr c-lit-limits))))
4257 ;; Skip forward past the fill prefix in case
4258 ;; we're standing in it.
4259 ;;
4260 ;; FIXME: This doesn't work well in cases like
4261 ;;
4262 ;; /* Bla bla bla bla bla
4263 ;; bla bla
4264 ;;
4265 ;; If point is on the 'B' then the line will be
4266 ;; broken after "Bla b".
4267 ;;
4268 ;; If we have an empty comment, /* */, the next
4269 ;; lot of code pushes point to the */. We fix
4270 ;; this by never allowing point to end up to the
4271 ;; right of where it started.
4272 (while (and (< (current-column) (cdr fill))
4273 (not (eolp)))
4274 (forward-char 1))
4275 (if (and (> (point) comment-text-end)
4276 (> (c-point 'bol) (car c-lit-limits)))
4277 (progn
4278 ;; The skip takes us out of the (block)
4279 ;; comment; insert the fill prefix at bol
4280 ;; instead and keep the position.
4281 (setq pos (copy-marker pos t))
4282 (beginning-of-line)
4283 (insert-and-inherit (car fill))
4284 (if soft (insert-and-inherit ?\n) (newline 1))
4285 (goto-char pos)
4286 (set-marker pos nil))
4287 ;; Don't break in the middle of a comment starter
4288 ;; or ender.
4289 (cond ((> (point) comment-text-end)
4290 (goto-char comment-text-end))
4291 ((< (point) (+ (car c-lit-limits) 2))
4292 (goto-char (+ (car c-lit-limits) 2))))
4293 (funcall do-line-break)
4294 (insert-and-inherit (car fill))
4295 (if (> (current-column) start-col)
4296 (move-to-column start-col)))) ; can this hit the
4297 ; middle of a TAB?
4298 ;; Inside a comment that should be broken.
4299 (let ((comment-start comment-start)
4300 (comment-end comment-end)
4301 col)
4302 (if (eq c-lit-type 'c)
4303 (unless (string-match "[ \t]*/\\*" comment-start)
4304 (setq comment-start "/* " comment-end " */"))
4305 (unless (string-match "[ \t]*//" comment-start)
4306 (setq comment-start "// " comment-end "")))
4307 (setq col (save-excursion
4308 (back-to-indentation)
4309 (current-column)))
4310 (funcall do-line-break)
4311 (when (and comment-end (not (equal comment-end "")))
4312 (forward-char -1)
4313 (insert-and-inherit comment-end)
4314 (forward-char 1))
4315 ;; c-comment-indent may look at the current
4316 ;; indentation, so let's start out with the same
4317 ;; indentation as the previous one.
4318 (indent-to col)
4319 (insert-and-inherit comment-start)
4320 (indent-for-comment))))
4321 ((c-query-and-set-macro-start)
4322 ;; In a macro.
4323 (unless (looking-at "[ \t]*\\\\$")
4324 ;; Do not clobber the alignment of the line continuation
4325 ;; slash; c-backslash-region might look at it.
4326 (delete-horizontal-space))
4327 ;; Got an asymmetry here: In normal code this command
4328 ;; doesn't indent the next line syntactically, and otoh a
4329 ;; normal syntactically indenting newline doesn't continue
4330 ;; the macro.
4331 (c-newline-and-indent (if allow-auto-fill nil 1)))
4332 (t
4333 ;; Somewhere else in the code.
4334 (let ((col (save-excursion
4335 (beginning-of-line)
4336 (while (and (looking-at "[ \t]*\\\\?$")
4337 (= (forward-line -1) 0)))
4338 (current-indentation))))
4339 (funcall do-line-break)
4340 (indent-to col))))))
4341
4342 (defalias 'c-comment-line-break-function 'c-indent-new-comment-line)
4343 (make-obsolete 'c-comment-line-break-function 'c-indent-new-comment-line)
4344
4345 ;; advice for indent-new-comment-line for older Emacsen
4346 (unless (boundp 'comment-line-break-function)
4347 (defvar c-inside-line-break-advice nil)
4348 (defadvice indent-new-comment-line (around c-line-break-advice
4349 activate preactivate)
4350 "Call `c-indent-new-comment-line' if in CC Mode."
4351 (if (or c-inside-line-break-advice
4352 (not c-buffer-is-cc-mode))
4353 ad-do-it
4354 (let ((c-inside-line-break-advice t))
4355 (c-indent-new-comment-line (ad-get-arg 0))))))
4356
4357 (defun c-context-line-break ()
4358 "Do a line break suitable to the context.
4359
4360 When point is outside a comment or macro, insert a newline and indent
4361 according to the syntactic context, unless `c-syntactic-indentation'
4362 is nil, in which case the new line is indented as the previous
4363 non-empty line instead.
4364
4365 When point is inside the content of a preprocessor directive, a line
4366 continuation backslash is inserted before the line break and aligned
4367 appropriately. The end of the cpp directive doesn't count as inside
4368 it.
4369
4370 When point is inside a comment, continue it with the appropriate
4371 comment prefix (see the `c-comment-prefix-regexp' and
4372 `c-block-comment-prefix' variables for details). The end of a
4373 C++-style line comment doesn't count as inside it.
4374
4375 When point is inside a string, only insert a backslash when it is also
4376 inside a preprocessor directive."
4377
4378 (interactive "*")
4379 (let* (c-lit-limits c-lit-type
4380 (c-macro-start c-macro-start))
4381
4382 (c-save-buffer-state ()
4383 (setq c-lit-limits (c-literal-limits nil nil t)
4384 c-lit-type (c-literal-type c-lit-limits))
4385 (when (eq c-lit-type 'c++)
4386 (setq c-lit-limits (c-collect-line-comments c-lit-limits)))
4387 (c-query-and-set-macro-start))
4388
4389 (cond
4390 ((or (eq c-lit-type 'c)
4391 (and (eq c-lit-type 'c++) ; C++ comment, but not at the very end of it.
4392 (< (save-excursion
4393 (skip-chars-forward " \t")
4394 (point))
4395 (1- (cdr c-lit-limits))))
4396 (and (numberp c-macro-start) ; Macro, but not at the very end of
4397 ; it, not in a string, and not in the
4398 ; cpp keyword.
4399 (not (eq c-lit-type 'string))
4400 (or (not (looking-at "\\s *$"))
4401 (eq (char-before) ?\\))
4402 (<= (save-excursion
4403 (goto-char c-macro-start)
4404 (if (looking-at c-opt-cpp-start)
4405 (goto-char (match-end 0)))
4406 (point))
4407 (point))))
4408 (let ((comment-multi-line t)
4409 (fill-prefix nil))
4410 (c-indent-new-comment-line nil t)))
4411
4412 ((eq c-lit-type 'string)
4413 (if (and (numberp c-macro-start)
4414 (not (eq (char-before) ?\\)))
4415 (insert ?\\))
4416 (newline))
4417
4418 (t (delete-horizontal-space)
4419 (newline)
4420 ;; c-indent-line may look at the current indentation, so let's
4421 ;; start out with the same indentation as the previous line.
4422 (let ((col (save-excursion
4423 (backward-char)
4424 (forward-line 0)
4425 (while (and (looking-at "[ \t]*\\\\?$")
4426 (= (forward-line -1) 0)))
4427 (current-indentation))))
4428 (indent-to col))
4429 (indent-according-to-mode)))))
4430
4431 (defun c-context-open-line ()
4432 "Insert a line break suitable to the context and leave point before it.
4433 This is the `c-context-line-break' equivalent to `open-line', which is
4434 normally bound to C-o. See `c-context-line-break' for the details."
4435 (interactive "*")
4436 (let ((here (point)))
4437 (unwind-protect
4438 (progn
4439 ;; Temporarily insert a non-whitespace char to keep any
4440 ;; preceding whitespace intact.
4441 (insert ?x)
4442 (c-context-line-break))
4443 (goto-char here)
4444 (delete-char 1))))
4445
4446 \f
4447 (cc-provide 'cc-cmds)
4448
4449 ;;; arch-tag: bf0611dc-d1f4-449e-9e45-4ec7c6936677
4450 ;;; cc-cmds.el ends here