1 ;;; cc-cmds.el --- user level commands for CC Mode
3 ;; Copyright (C) 1985, 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation, Inc.
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
17 ;; This file is part of GNU Emacs.
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 of the License, or
22 ;; (at your option) any later version.
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.
29 ;; You should have received a copy of the GNU General Public License
30 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
38 (if (and (boundp 'byte-compile-dest-file
)
39 (stringp byte-compile-dest-file
))
40 (cons (file-name-directory byte-compile-dest-file
) load-path
)
42 (load "cc-bytecomp" nil t
)))
46 (cc-require 'cc-engine
)
48 ;; Silence the compiler.
49 (cc-bytecomp-defun delete-forward-p) ; XEmacs
50 (cc-bytecomp-defvar filladapt-mode
) ; c-fill-paragraph contains a kludge
51 ; which looks at this.
52 (cc-bytecomp-defun c-forward-subword)
53 (cc-bytecomp-defun c-backward-subword)
55 ;; Indentation / Display syntax functions
56 (defvar c-fix-backslashes t
)
58 (defun c-indent-line (&optional syntax quiet ignore-point-pos
)
59 "Indent the current line according to the syntactic context,
60 if `c-syntactic-indentation' is non-nil. Optional SYNTAX is the
61 syntactic information for the current line. Be silent about syntactic
62 errors if the optional argument QUIET is non-nil, even if
63 `c-report-syntactic-errors' is non-nil. Normally the position of
64 point is used to decide where the old indentation is on a lines that
65 is otherwise empty \(ignoring any line continuation backslash), but
66 that's not done if IGNORE-POINT-POS is non-nil. Returns the amount of
67 indentation change \(in columns)."
69 (let ((line-cont-backslash (save-excursion
71 (eq (char-before) ?
\\)))
72 (c-fix-backslashes c-fix-backslashes
)
75 (when (and (not ignore-point-pos
)
78 (looking-at (if line-cont-backslash
79 ;; Don't use "\\s " - ^L doesn't count as WS
83 (<= (point) (match-end 1)))
84 ;; Delete all whitespace after point if there's only whitespace
85 ;; on the line, so that any code that does back-to-indentation
86 ;; or similar gets the current column in this case. If this
87 ;; removes a line continuation backslash it'll be restored
89 (unless c-auto-align-backslashes
90 ;; Should try to keep the backslash alignment
93 (goto-char (match-end 0))
94 (setq bs-col
(1- (current-column)))))
95 (delete-region (point) (match-end 0))
96 (setq c-fix-backslashes t
))
97 (if c-syntactic-indentation
99 (or (let ((c-parsing-error nil
)
102 (and (boundp 'c-syntactic-context
)
103 c-syntactic-context
))))
104 (c-save-buffer-state (indent)
105 (unless c-syntactic-context
106 (setq c-syntactic-context
(c-guess-basic-syntax)))
107 (setq indent
(c-get-syntactic-indentation
108 c-syntactic-context
))
109 (and (not (c-echo-parsing-error quiet
))
110 c-echo-syntactic-information-p
111 (message "syntax: %s, indent: %d"
112 c-syntactic-context indent
))
113 (setq shift-amt
(- indent
(current-indentation))))
114 (c-shift-line-indentation shift-amt
)
115 (run-hooks 'c-special-indent-hook
)
120 (while (and (= (forward-line -
1) 0)
121 (if (looking-at "\\s *\\\\?$")
123 (setq indent
(current-indentation))
125 (setq shift-amt
(- indent
(current-indentation)))
126 (c-shift-line-indentation shift-amt
)))
127 (when (and c-fix-backslashes line-cont-backslash
)
132 (when c-auto-align-backslashes
133 ;; Realign the line continuation backslash.
134 (c-backslash-region (point) (point) nil t
))))
137 (defun c-newline-and-indent (&optional newline-arg
)
138 "Insert a newline and indent the new line.
139 This function fixes line continuation backslashes if inside a macro,
140 and takes care to set the indentation before calling
141 `indent-according-to-mode', so that lineup functions like
142 `c-lineup-dont-change' works better."
144 ;; TODO: Backslashes before eol in comments and literals aren't
146 (let ((c-macro-start (c-query-macro-start))
147 ;; Avoid calling c-backslash-region from c-indent-line if it's
148 ;; called during the newline call, which can happen due to
149 ;; c-electric-continued-statement, for example. We also don't
150 ;; want any backslash alignment from indent-according-to-mode.
151 (c-fix-backslashes nil
)
152 has-backslash insert-backslash
157 (while (and (looking-at "[ \t]*\\\\?$")
158 (= (forward-line -
1) 0)))
159 (setq col
(current-indentation)))
161 (if (and (eolp) (eq (char-before) ?
\\))
162 (setq insert-backslash t
164 (setq has-backslash
(eq (char-before (c-point 'eol
)) ?
\\))))
165 (newline newline-arg
)
170 ;; The backslash stayed on the previous line. Insert one
171 ;; before calling c-backslash-region, so that
172 ;; bs-col-after-end in it works better. Fixup the
173 ;; backslashes on the newly inserted line.
176 (c-backslash-region (point) (point) nil t
))
177 ;; The backslash moved to the new line, if there was any. Let
178 ;; c-backslash-region fix a backslash on the previous line,
179 ;; and the one that might be on the new line.
180 ;; c-auto-align-backslashes is intentionally ignored here;
181 ;; maybe the moved backslash should be left alone if it's set,
182 ;; but we fix both lines on the grounds that the old backslash
183 ;; has been moved anyway and is now in a different context.
184 (c-backslash-region start
(if has-backslash
(point) start
) nil t
)))
185 (when c-syntactic-indentation
186 ;; Reindent syntactically. The indentation done above is not
187 ;; wasted, since c-indent-line might look at the current
189 (let ((c-syntactic-context (c-save-buffer-state nil
190 (c-guess-basic-syntax))))
191 ;; We temporarily insert another line break, so that the
192 ;; lineup functions will see the line as empty. That makes
193 ;; e.g. c-lineup-cpp-define more intuitive since it then
194 ;; proceeds to the preceding line in this case.
196 (delete-horizontal-space)
197 (setq start
(- (point-max) (point)))
201 (indent-according-to-mode))
202 (goto-char (- (point-max) start
))
205 ;; Must align the backslash again after reindentation. The
206 ;; c-backslash-region call above can't be optimized to ignore
207 ;; this line, since it then won't align correctly with the
208 ;; lines below if the first line in the macro is broken.
209 (c-backslash-region (point) (point) nil t
)))))
211 (defun c-show-syntactic-information (arg)
212 "Show syntactic information for current line.
213 With universal argument, inserts the analysis as a comment on that line."
215 (let* ((c-parsing-error nil
)
216 (syntax (if (boundp 'c-syntactic-context
)
217 ;; Use `c-syntactic-context' in the same way as
218 ;; `c-indent-line', to be consistent.
220 (c-save-buffer-state nil
221 (c-guess-basic-syntax)))))
222 (if (not (consp arg
))
224 (message "Syntactic analysis: %s" syntax
)
228 (setq elem
(pop syntax
))
229 (when (setq pos
(c-langelem-pos elem
))
230 (push (c-put-overlay pos
(1+ pos
)
233 (when (setq pos
(c-langelem-2nd-pos elem
))
234 (push (c-put-overlay pos
(1+ pos
)
235 'face
'secondary-selection
)
239 (c-delete-overlay (pop ols
)))))
241 (insert-and-inherit (format "%s" syntax
))
243 (c-keep-region-active))
245 (defun c-syntactic-information-on-region (from to
)
246 "Insert a comment with the syntactic analysis on every line in the region."
250 (narrow-to-region from to
)
251 (goto-char (point-min))
253 (c-show-syntactic-information '(0))
257 ;; Minor mode functions.
258 (defun c-update-modeline ()
259 (let ((fmt (format "/%s%s%s%s"
260 (if c-electric-flag
"l" "")
261 (if (and c-electric-flag c-auto-newline
)
263 (if c-hungry-delete-key
"h" "")
265 ;; cc-subword might not be loaded.
266 (boundp 'c-subword-mode
)
267 (symbol-value 'c-subword-mode
))
270 (bare-mode-name (if (string-match "\\(^[^/]*\\)/" mode-name
)
271 (substring mode-name
(match-beginning 1) (match-end 1))
273 ;; (setq c-submode-indicators
274 ;; (if (> (length fmt) 1)
277 (if (> (length fmt
) 1)
278 (concat bare-mode-name fmt
)
280 (force-mode-line-update)))
282 (defun c-toggle-syntactic-indentation (&optional arg
)
283 "Toggle syntactic indentation.
284 Optional numeric ARG, if supplied, turns on syntactic indentation when
285 positive, turns it off when negative, and just toggles it when zero or
288 When syntactic indentation is turned on (the default), the indentation
289 functions and the electric keys indent according to the syntactic
290 context keys, when applicable.
292 When it's turned off, the electric keys don't reindent, the indentation
293 functions indents every new line to the same level as the previous
294 nonempty line, and \\[c-indent-command] adjusts the indentation in steps
295 specified by `c-basic-offset'. The indentation style has no effect in
296 this mode, nor any of the indentation associated variables,
297 e.g. `c-special-indent-hook'.
299 This command sets the variable `c-syntactic-indentation'."
301 (setq c-syntactic-indentation
302 (c-calculate-state arg c-syntactic-indentation
))
303 (c-keep-region-active))
305 (defun c-toggle-auto-newline (&optional arg
)
306 "Toggle auto-newline feature.
307 Optional numeric ARG, if supplied, turns on auto-newline when
308 positive, turns it off when negative, and just toggles it when zero or
311 Turning on auto-newline automatically enables electric indentation.
313 When the auto-newline feature is enabled (indicated by \"/la\" on the
314 modeline after the mode name) newlines are automatically inserted
315 after special characters such as brace, comma, semi-colon, and colon."
318 (c-calculate-state arg
(and c-auto-newline c-electric-flag
)))
319 (if c-auto-newline
(setq c-electric-flag t
))
321 (c-keep-region-active))
323 (defalias 'c-toggle-auto-state
'c-toggle-auto-newline
)
324 (make-obsolete 'c-toggle-auto-state
'c-toggle-auto-newline
)
326 (defun c-toggle-hungry-state (&optional arg
)
327 "Toggle hungry-delete-key feature.
328 Optional numeric ARG, if supplied, turns on hungry-delete when
329 positive, turns it off when negative, and just toggles it when zero or
332 When the hungry-delete-key feature is enabled (indicated by \"/h\" on
333 the modeline after the mode name) the delete key gobbles all preceding
334 whitespace in one fell swoop."
336 (setq c-hungry-delete-key
(c-calculate-state arg c-hungry-delete-key
))
338 (c-keep-region-active))
340 (defun c-toggle-auto-hungry-state (&optional arg
)
341 "Toggle auto-newline and hungry-delete-key features.
342 Optional numeric ARG, if supplied, turns on auto-newline and
343 hungry-delete when positive, turns them off when negative, and just
344 toggles them when zero or left out.
346 See `c-toggle-auto-newline' and `c-toggle-hungry-state' for details."
348 (setq c-auto-newline
(c-calculate-state arg c-auto-newline
))
349 (setq c-hungry-delete-key
(c-calculate-state arg c-hungry-delete-key
))
351 (c-keep-region-active))
353 (defun c-toggle-electric-state (&optional arg
)
354 "Toggle the electric indentation feature.
355 Optional numeric ARG, if supplied, turns on electric indentation when
356 positive, turns it off when negative, and just toggles it when zero or
359 (setq c-electric-flag
(c-calculate-state arg c-electric-flag
))
361 (c-keep-region-active))
366 (defun c-electric-backspace (arg)
367 "Delete the preceding character or whitespace.
368 If `c-hungry-delete-key' is non-nil (indicated by \"/h\" on the mode
369 line) then all preceding whitespace is consumed. If however a prefix
370 argument is supplied, or `c-hungry-delete-key' is nil, or point is
371 inside a literal then the function in the variable
372 `c-backspace-function' is called."
374 (if (c-save-buffer-state ()
375 (or (not c-hungry-delete-key
)
378 (funcall c-backspace-function
(prefix-numeric-value arg
))
379 (c-hungry-delete-backwards)))
381 (defun c-hungry-delete-backwards ()
382 "Delete the preceding character or all preceding whitespace
383 back to the previous non-whitespace character.
384 See also \\[c-hungry-delete-forward]."
386 (let ((here (point)))
388 (if (/= (point) here
)
389 (delete-region (point) here
)
390 (funcall c-backspace-function
1))))
392 (defalias 'c-hungry-backspace
'c-hungry-delete-backwards
)
394 (defun c-electric-delete-forward (arg)
395 "Delete the following character or whitespace.
396 If `c-hungry-delete-key' is non-nil (indicated by \"/h\" on the mode
397 line) then all following whitespace is consumed. If however a prefix
398 argument is supplied, or `c-hungry-delete-key' is nil, or point is
399 inside a literal then the function in the variable `c-delete-function'
402 (if (c-save-buffer-state ()
403 (or (not c-hungry-delete-key
)
406 (funcall c-delete-function
(prefix-numeric-value arg
))
407 (c-hungry-delete-forward)))
409 (defun c-hungry-delete-forward ()
410 "Delete the following character or all following whitespace
411 up to the next non-whitespace character.
412 See also \\[c-hungry-delete-backwards]."
414 (let ((here (point)))
416 (if (/= (point) here
)
417 (delete-region (point) here
)
418 (funcall c-delete-function
1))))
420 ;; This function is only used in XEmacs.
421 (defun c-electric-delete (arg)
422 "Deletes preceding or following character or whitespace.
423 This function either deletes forward as `c-electric-delete-forward' or
424 backward as `c-electric-backspace', depending on the configuration: If
425 the function `delete-forward-p' is defined and returns non-nil, it
426 deletes forward. Otherwise it deletes backward.
428 Note: This is the way in XEmacs to choose the correct action for the
429 \[delete] key, whichever key that means. Other flavors don't use this
430 function to control that."
432 (if (and (fboundp 'delete-forward-p
)
434 (c-electric-delete-forward arg
)
435 (c-electric-backspace arg
)))
437 ;; This function is only used in XEmacs.
438 (defun c-hungry-delete ()
439 "Delete a non-whitespace char, or all whitespace up to the next non-whitespace char.
440 The direction of deletion depends on the configuration: If the
441 function `delete-forward-p' is defined and returns non-nil, it deletes
442 forward using `c-hungry-delete-forward'. Otherwise it deletes
443 backward using `c-hungry-backspace'.
445 Note: This is the way in XEmacs to choose the correct action for the
446 \[delete] key, whichever key that means. Other flavors don't use this
447 function to control that."
449 (if (and (fboundp 'delete-forward-p
)
451 (c-hungry-delete-forward)
452 (c-hungry-delete-backwards)))
454 (defun c-electric-pound (arg)
456 If `c-electric-flag' is set, handle it specially according to the variable
457 `c-electric-pound-behavior'. If a numeric ARG is supplied, or if point is
458 inside a literal or a macro, nothing special happens."
460 (if (c-save-buffer-state ()
462 (not c-electric-flag
)
463 (not (memq 'alignleft c-electric-pound-behavior
))
465 (skip-chars-backward " \t")
468 (and (= (forward-line -
1) 0)
470 (eq (char-before) ?
\\))))
472 ;; do nothing special
473 (self-insert-command (prefix-numeric-value arg
))
474 ;; place the pound character at the left edge
475 (let ((pos (- (point-max) (point)))
478 (delete-horizontal-space)
479 (insert last-command-char
)
481 (goto-char (- (point-max) pos
)))
484 (defun c-point-syntax ()
485 ;; Return the syntactic context of the construct at point. (This is NOT
486 ;; nec. the same as the s.c. of the line point is on). N.B. This won't work
487 ;; between the `#' of a cpp thing and what follows (see c-opt-cpp-prefix).
488 (c-save-buffer-state (;; shut this up too
489 (c-echo-syntactic-information-p nil
)
491 (c-tentative-buffer-changes
492 ;; insert a newline to isolate the construct at point for syntactic
495 ;; In AWK (etc.) or in a macro, make sure this CR hasn't changed
496 ;; the syntax. (There might already be an escaped NL there.)
497 (when (or (c-at-vsemi-p (1- (point)))
501 (and (c-beginning-of-macro)
502 (progn (c-end-of-macro)
507 (let ((c-syntactic-indentation-in-macros t
)
508 (c-auto-newline-analysis t
))
509 ;; Turn on syntactic macro analysis to help with auto
511 (setq syntax
(c-guess-basic-syntax))
515 (defun c-brace-newlines (syntax)
516 ;; A brace stands at point. SYNTAX is the syntactic context of this brace
517 ;; (not necessarily the same as the S.C. of the line it is on). Return
518 ;; NEWLINES, the list containing some combination of the symbols `before'
519 ;; and `after' saying where newlines should be inserted.
522 ;; This is the list of brace syntactic symbols that can hang.
523 ;; If any new ones are added to c-offsets-alist, they should be
524 ;; added here as well.
526 ;; The order of this list is important; if SYNTAX has several
527 ;; elements, the element that "wins" is the earliest in SYMS.
528 '(arglist-cont-nonempty ; e.g. an array literal.
529 class-open class-close defun-open defun-close
530 inline-open inline-close
531 brace-list-open brace-list-close
532 brace-list-intro brace-entry-open
533 block-open block-close
534 substatement-open statement-case-open
535 extern-lang-open extern-lang-close
536 namespace-open namespace-close
537 module-open module-close
538 composition-open composition-close
539 inexpr-class-open inexpr-class-close
540 ;; `statement-cont' is here for the case with a brace
541 ;; list opener inside a statement. C.f. CASE B.2 in
542 ;; `c-guess-continued-construct'.
545 (c-echo-syntactic-information-p nil
)
546 symb-newlines
) ; e.g. (substatement-open . (after))
549 ;; Do not try to insert newlines around a special
550 ;; (Pike-style) brace list.
551 (if (and c-special-brace-lists
553 (c-safe (if (= (char-before) ?
{)
556 (c-looking-at-special-brace-list))))
558 ;; Seek the matching entry in c-hanging-braces-alist.
561 ;; Substitute inexpr-class and class-open or
562 ;; class-close with inexpr-class-open or
563 ;; inexpr-class-close.
564 (if (assq 'inexpr-class syntax
)
565 (cond ((assq 'class-open syntax
)
566 '((inexpr-class-open)))
567 ((assq 'class-close syntax
)
568 '((inexpr-class-close)))
571 c-hanging-braces-alist
)
572 '(ignore before after
)))) ; Default, when not in c-h-b-l.
574 ;; If syntax is a function symbol, then call it using the
575 ;; defined semantics.
576 (if (and (not (consp (cdr symb-newlines
)))
577 (functionp (cdr symb-newlines
)))
578 (let ((c-syntactic-context syntax
))
579 (funcall (cdr symb-newlines
)
582 (cdr symb-newlines
))))
584 (defun c-try-one-liner ()
585 ;; Point is just after a newly inserted }. If the non-whitespace
586 ;; content of the braces is a single line of code, compact the whole
587 ;; construct to a single line, if this line isn't too long. The Right
588 ;; Thing is done with comments.
590 ;; Point will be left after the }, regardless of whether the clean-up is
591 ;; done. Return NON-NIL if the clean-up happened, NIL if it didn't.
594 (pos (- (point-max) (point)))
595 mbeg1 mend1 mbeg4 mend4
596 eol-col cmnt-pos cmnt-col cmnt-gap
)
601 ;; Avoid backtracking over a very large block. The one we
602 ;; deal with here can never be more than three lines.
603 (narrow-to-region (save-excursion
607 (and (c-safe (c-backward-sexp))
610 (narrow-to-region (point) (1- here
)) ; innards of {.}
612 (cc-eval-when-compile
614 "\\(" ; (match-beginning 1)
615 "[ \t]*\\([\r\n][ \t]*\\)?" ; WS with opt. NL
616 "\\)" ; (match-end 1)
617 "[^ \t\r\n]+\\([ \t]+[^ \t\r\n]+\\)*" ; non-WS
618 "\\(" ; (match-beginning 4)
619 "[ \t]*\\([\r\n][ \t]*\\)?" ; WS with opt. NL
620 "\\)\\'"))))))) ; (match-end 4) at EOB.
622 (if (c-tentative-buffer-changes
623 (setq mbeg1
(match-beginning 1) mend1
(match-end 1)
624 mbeg4
(match-beginning 4) mend4
(match-end 4))
625 (backward-char) ; back over the `}'
627 (setq cmnt-pos
(and (c-backward-single-comment)
628 (- (point) (- mend1 mbeg1
)))))
629 (delete-region mbeg4 mend4
)
630 (delete-region mbeg1 mend1
)
631 (setq eol-col
(save-excursion (end-of-line) (current-column)))
633 ;; Necessary to put the closing brace before any line
634 ;; oriented comment to keep it syntactically significant.
635 ;; This isn't necessary for block comments, but the result
636 ;; looks nicer anyway.
638 (delete-char 1) ; the `}' has blundered into a comment
640 (setq cmnt-col
(1+ (current-column)))
641 (setq cmnt-pos
(1+ cmnt-pos
)) ; we're inserting a `}'
643 (insert-char ?\
} 1) ; reinsert the `}' before the comment.
644 (setq cmnt-gap
(- cmnt-col
(current-column)))
645 (when (zerop cmnt-gap
)
646 (insert-char ?\
1) ; Put a space before a bare comment.
649 (or (null c-max-one-liner-length
)
650 (zerop c-max-one-liner-length
)
651 (<= eol-col c-max-one-liner-length
)
652 ;; Can we trim space before comment to make the line fit?
654 (< (- eol-col cmnt-gap
) c-max-one-liner-length
)
655 (progn (goto-char cmnt-pos
)
656 (backward-delete-char-untabify
657 (- eol-col c-max-one-liner-length
))
659 (goto-char (- (point-max) pos
))))))
661 (defun c-electric-brace (arg)
664 If `c-electric-flag' is non-nil, the brace is not inside a literal and a
665 numeric ARG hasn't been supplied, the command performs several electric
668 \(a) If the auto-newline feature is turned on (indicated by \"/la\" on
669 the mode line) newlines are inserted before and after the brace as
670 directed by the settings in `c-hanging-braces-alist'.
672 \(b) Any auto-newlines are indented. The original line is also
673 reindented unless `c-syntactic-indentation' is nil.
675 \(c) If auto-newline is turned on, various newline cleanups based on the
676 settings of `c-cleanup-list' are done."
679 (let (safepos literal
680 ;; We want to inhibit blinking the paren since this would be
681 ;; most disruptive. We'll blink it ourselves later on.
682 (old-blink-paren blink-paren-function
)
683 blink-paren-function
)
685 (c-save-buffer-state ()
686 (setq safepos
(c-safe-position (point) (c-parse-state))
687 literal
(c-in-literal safepos
)))
689 ;; Insert the brace. Note that expand-abbrev might reindent
690 ;; the line here if there's a preceding "else" or something.
691 (self-insert-command (prefix-numeric-value arg
))
693 (when (and c-electric-flag
(not literal
) (not arg
))
694 (if (not (looking-at "[ \t]*\\\\?$"))
695 (if c-syntactic-indentation
696 (indent-according-to-mode))
698 (let ( ;; shut this up too
699 (c-echo-syntactic-information-p nil
)
701 ln-syntax br-syntax syntax
) ; Syntactic context of the original line,
702 ; of the brace itself, of the line the brace ends up on.
703 (c-save-buffer-state ((c-syntactic-indentation-in-macros t
)
704 (c-auto-newline-analysis t
))
705 (setq ln-syntax
(c-guess-basic-syntax)))
706 (if c-syntactic-indentation
707 (c-indent-line ln-syntax
))
711 (setq br-syntax
(c-point-syntax)
712 newlines
(c-brace-newlines br-syntax
))
714 ;; Insert the BEFORE newline, if wanted, and reindent the newline.
715 (if (and (memq 'before newlines
)
716 (> (current-column) (current-indentation)))
717 (if c-syntactic-indentation
718 ;; Only a plain newline for now - it's indented
719 ;; after the cleanups when the line has its final
722 (c-newline-and-indent)))
725 ;; `syntax' is the syntactic context of the line which ends up
726 ;; with the brace on it.
727 (setq syntax
(if (memq 'before newlines
) br-syntax ln-syntax
))
729 ;; Do all appropriate clean ups
731 (pos (- (point-max) (point)))
735 ;; `}': clean up empty defun braces
736 (when (c-save-buffer-state ()
737 (and (memq 'empty-defun-braces c-cleanup-list
)
738 (eq last-command-char ?\
})
739 (c-intersect-lists '(defun-close class-close inline-close
)
744 (eq (char-before) ?\
{))
745 ;; make sure matching open brace isn't in a comment
746 (not (c-in-literal))))
747 (delete-region (point) (1- here
))
748 (setq here
(- (point-max) pos
)))
751 ;; `}': compact to a one-liner defun?
754 (and (eq last-command-char ?\
})
755 (memq 'one-liner-defun
c-cleanup-list)
756 (c-intersect-lists '(defun-close) syntax
)
758 (setq here
(- (point-max) pos
))))
760 ;; `{': clean up brace-else-brace and brace-elseif-brace
761 (when (eq last-command-char ?\
{)
763 ((and (memq 'brace-else-brace c-cleanup-list
)
766 "\\([ \t\n]\\|\\\\\n\\)*"
768 "\\([ \t\n]\\|\\\\\n\\)*"
772 (delete-region (match-beginning 0) (match-end 0))
773 (insert-and-inherit "} else {"))
774 ((and (memq 'brace-elseif-brace c-cleanup-list
)
776 (goto-char (1- here
))
780 (eq (char-before) ?\
)))
781 (zerop (c-save-buffer-state nil
(c-backward-token-2 1 t
)))
782 (eq (char-after) ?\
()
787 "\\([ \t\n]\\|\\\\\n\\)*"
789 "\\([ \t\n]\\|\\\\\n\\)+"
791 "\\([ \t\n]\\|\\\\\n\\)*"
794 ;(eq (match-end 0) tmp);
796 (delete-region mbeg mend
)
800 (goto-char (- (point-max) pos
))
802 ;; Indent the line after the cleanups since it might
803 ;; very well indent differently due to them, e.g. if
804 ;; c-indent-one-line-block is used together with the
805 ;; one-liner-defun cleanup.
806 (when c-syntactic-indentation
809 ;; does a newline go after the brace?
810 (if (memq 'after newlines
)
811 (c-newline-and-indent))
815 (and (eq last-command-char ?\
})
816 (not executing-kbd-macro
)
819 (c-save-buffer-state nil
820 (c-backward-syntactic-ws safepos
))
821 (funcall old-blink-paren
)))))
823 (defun c-electric-slash (arg)
824 "Insert a slash character.
826 If the slash is inserted immediately after the comment prefix in a c-style
827 comment, the comment might get closed by removing whitespace and possibly
828 inserting a \"*\". See the variable `c-cleanup-list'.
830 Indent the line as a comment, if:
832 1. The slash is second of a \"//\" line oriented comment introducing
833 token and we are on a comment-only-line, or
835 2. The slash is part of a \"*/\" token that closes a block oriented
838 If a numeric ARG is supplied, point is inside a literal, or
839 `c-syntactic-indentation' is nil or `c-electric-flag' is nil, indentation
842 (let ((literal (c-save-buffer-state () (c-in-literal)))
845 (c-echo-syntactic-information-p nil
))
847 ;; comment-close-slash cleanup? This DOESN'T need `c-electric-flag' or
848 ;; `c-syntactic-indentation' set.
851 (memq 'comment-close-slash c-cleanup-list
)
852 (eq last-command-char ?
/)
853 (looking-at (concat "[ \t]*\\("
854 (regexp-quote comment-end
) "\\)?$"))
855 ; (eq c-block-comment-ender "*/") ; C-style comments ALWAYS end in */
858 (narrow-to-region (point-min) (point))
859 (back-to-indentation)
860 (looking-at (concat c-current-comment-prefix
"[ \t]*$")))))
861 (delete-region (progn (forward-line 0) (point))
862 (progn (end-of-line) (point)))
863 (insert-char ?
* 1)) ; the / comes later. ; Do I need a t (retain sticky properties) here?
865 (setq indentp
(and (not arg
)
866 c-syntactic-indentation
868 (eq last-command-char ?
/)
869 (eq (char-before) (if literal ?
* ?
/))))
870 (self-insert-command (prefix-numeric-value arg
))
872 (indent-according-to-mode))))
874 (defun c-electric-star (arg)
875 "Insert a star character.
876 If `c-electric-flag' and `c-syntactic-indentation' are both non-nil, and
877 the star is the second character of a C style comment starter on a
878 comment-only-line, indent the line as a comment. If a numeric ARG is
879 supplied, point is inside a literal, or `c-syntactic-indentation' is nil,
880 this indentation is inhibited."
883 (self-insert-command (prefix-numeric-value arg
))
884 ;; if we are in a literal, or if arg is given do not reindent the
885 ;; current line, unless this star introduces a comment-only line.
886 (if (c-save-buffer-state ()
887 (and c-syntactic-indentation
890 (eq (c-in-literal) 'c
)
891 (eq (char-before) ?
*)
894 (skip-chars-backward "*")
895 (if (eq (char-before) ?
/)
897 (skip-chars-backward " \t")
899 (let (c-echo-syntactic-information-p) ; shut this up
900 (indent-according-to-mode))
903 (defun c-electric-semi&comma
(arg)
904 "Insert a comma or semicolon.
906 If `c-electric-flag' is non-nil, point isn't inside a literal and a
907 numeric ARG hasn't been supplied, the command performs several electric
910 \(a) When the auto-newline feature is turned on (indicated by \"/la\" on
911 the mode line) a newline might be inserted. See the variable
912 `c-hanging-semi&comma-criteria' for how newline insertion is determined.
914 \(b) Any auto-newlines are indented. The original line is also
915 reindented unless `c-syntactic-indentation' is nil.
917 \(c) If auto-newline is turned on, a comma following a brace list or a
918 semicolon following a defun might be cleaned up, depending on the
919 settings of `c-cleanup-list'."
921 (let* (lim literal c-syntactic-context
924 (c-echo-syntactic-information-p nil
))
926 (c-save-buffer-state ()
927 (setq lim
(c-most-enclosing-brace (c-parse-state))
928 literal
(c-in-literal lim
)))
930 (self-insert-command (prefix-numeric-value arg
))
932 (if (and c-electric-flag
(not literal
) (not arg
))
933 ;; do all cleanups and newline insertions if c-auto-newline is on.
934 (if (or (not c-auto-newline
)
935 (not (looking-at "[ \t]*\\\\?$")))
936 (if c-syntactic-indentation
938 ;; clean ups: list-close-comma or defun-close-semi
939 (let ((pos (- (point-max) (point))))
940 (if (c-save-buffer-state ()
942 (eq last-command-char ?
,)
943 (memq 'list-close-comma c-cleanup-list
))
945 (eq last-command-char ?\
;)
946 (memq 'defun-close-semi c-cleanup-list
)))
950 (eq (char-before) ?
}))
951 ;; make sure matching open brace isn't in a comment
952 (not (c-in-literal lim
))))
953 (delete-region (point) here
))
954 (goto-char (- (point-max) pos
)))
956 (when c-syntactic-indentation
957 (setq c-syntactic-context
(c-guess-basic-syntax))
958 (c-indent-line c-syntactic-context
))
959 ;; check to see if a newline should be added
960 (let ((criteria c-hanging-semi
&comma-criteria
)
961 answer add-newline-p
)
963 (setq answer
(funcall (car criteria
)))
964 ;; only nil value means continue checking
966 (setq criteria
(cdr criteria
))
968 ;; only 'stop specifically says do not add a newline
969 (setq add-newline-p
(not (eq answer
'stop
)))
972 (c-newline-and-indent))
975 (defun c-electric-colon (arg)
978 If `c-electric-flag' is non-nil, the colon is not inside a literal and a
979 numeric ARG hasn't been supplied, the command performs several electric
982 \(a) If the auto-newline feature is turned on (indicated by \"/la\" on
983 the mode line) newlines are inserted before and after the colon based on
984 the settings in `c-hanging-colons-alist'.
986 \(b) Any auto-newlines are indented. The original line is also
987 reindented unless `c-syntactic-indentation' is nil.
989 \(c) If auto-newline is turned on, whitespace between two colons will be
990 \"cleaned up\" leaving a scope operator, if this action is set in
994 (let* ((bod (c-point 'bod
))
995 (literal (c-save-buffer-state () (c-in-literal bod
)))
998 (c-echo-syntactic-information-p nil
))
999 (self-insert-command (prefix-numeric-value arg
))
1000 ;; Any electric action?
1001 (if (and c-electric-flag
(not literal
) (not arg
))
1002 ;; Unless we're at EOL, only re-indentation happens.
1003 (if (not (looking-at "[ \t]*\\\\?$"))
1004 (if c-syntactic-indentation
1005 (indent-according-to-mode))
1007 ;; scope-operator clean-up?
1008 (let ((pos (- (point-max) (point)))
1010 (if (c-save-buffer-state () ; Why do we need this? [ACM, 2003-03-12]
1012 (memq 'scope-operator c-cleanup-list
)
1013 (eq (char-before) ?
:)
1016 (c-skip-ws-backward)
1017 (eq (char-before) ?
:))
1018 (not (c-in-literal))
1019 (not (eq (char-after (- (point) 2)) ?
:))))
1021 (delete-region (point) (1- here
))
1022 (setq is-scope-op t
)))
1023 (goto-char (- (point-max) pos
)))
1025 ;; indent the current line if it's done syntactically.
1026 (if c-syntactic-indentation
1027 ;; Cannot use the same syntax analysis as we find below,
1028 ;; since that's made with c-syntactic-indentation-in-macros
1030 (indent-according-to-mode))
1032 ;; Calculate where, if anywhere, we want newlines.
1033 (c-save-buffer-state
1034 ((c-syntactic-indentation-in-macros t
)
1035 (c-auto-newline-analysis t
)
1036 ;; Turn on syntactic macro analysis to help with auto newlines
1038 (syntax (c-guess-basic-syntax))
1040 ;; Translate substatement-label to label for this operation.
1042 (if (eq (car (car elem
)) 'substatement-label
)
1043 (setcar (car elem
) 'label
))
1044 (setq elem
(cdr elem
)))
1045 ;; some language elements can only be determined by checking
1046 ;; the following line. Lets first look for ones that can be
1047 ;; found when looking on the line with the colon
1050 (or (c-lookup-lists '(case-label label access-label
)
1051 syntax c-hanging-colons-alist
)
1052 (c-lookup-lists '(member-init-intro inher-intro
)
1056 (c-guess-basic-syntax)
1058 c-hanging-colons-alist
)))))
1059 ;; does a newline go before the colon? Watch out for already
1060 ;; non-hung colons. However, we don't unhang them because that
1061 ;; would be a cleanup (and anti-social).
1062 (if (and (memq 'before newlines
)
1065 (skip-chars-backward ": \t")
1067 (let ((pos (- (point-max) (point))))
1069 (c-newline-and-indent)
1070 (goto-char (- (point-max) pos
))))
1071 ;; does a newline go after the colon?
1072 (if (and (memq 'after
(cdr-safe newlines
))
1074 (c-newline-and-indent))
1077 (defun c-electric-lt-gt (arg)
1078 "Insert a \"<\" or \">\" character.
1079 If the current language uses angle bracket parens (e.g. template
1080 arguments in C++), try to find out if the inserted character is a
1081 paren and give it paren syntax if appropriate.
1083 If `c-electric-flag' and `c-syntactic-indentation' are both non-nil, the
1084 line will be reindented if the inserted character is a paren or if it
1085 finishes a C++ style stream operator in C++ mode. Exceptions are when a
1086 numeric argument is supplied, or the point is inside a literal."
1089 (let ((c-echo-syntactic-information-p nil
)
1090 final-pos close-paren-inserted
)
1092 (self-insert-command (prefix-numeric-value arg
))
1093 (setq final-pos
(point))
1095 (c-save-buffer-state (c-parse-and-markup-<>-arglists
1096 c-restricted-
<>-arglists
1099 (when c-recognize-
<>-arglists
1100 (if (eq last-command-char ?
<)
1105 (c-beginning-of-current-token)
1108 (c-backward-token-2)
1109 (looking-at c-opt-
<>-sexp-key
)))
1110 (c-mark-<-as-paren
(1- final-pos
)))
1112 ;; It's a ">". Check if there's an earlier "<" which either has
1113 ;; open paren syntax already or that can be recognized as an arglist
1114 ;; together with this ">". Note that this won't work in cases like
1115 ;; "template <x, a < b, y>" but they ought to be rare.
1118 ;; Narrow to avoid that `c-forward-<>-arglist' below searches past
1120 (narrow-to-region (point-min) final-pos
)
1124 (goto-char final-pos
)
1125 (c-syntactic-skip-backward "^<;}" nil t
)
1126 (eq (char-before) ?
<))
1129 ;; If the "<" already got open paren syntax we know we
1130 ;; have the matching closer. Handle it and exit the
1132 (if (looking-at "\\s\(")
1134 (c-mark->-as-paren
(1- final-pos
))
1135 (setq close-paren-inserted t
)
1140 (setq <-pos
(point))
1141 (c-backward-syntactic-ws)
1142 (c-simple-skip-symbol-backward))
1143 (or (looking-at c-opt-
<>-sexp-key
)
1144 (not (looking-at c-keywords-regexp
)))
1146 (let ((c-parse-and-markup-<>-arglists t
)
1147 c-restricted-
<>-arglists
1149 (c-most-enclosing-brace (c-parse-state))))
1150 (when (and containing-sexp
1151 (progn (goto-char containing-sexp
)
1152 (eq (char-after) ?\
())
1153 (not (eq (get-text-property (point) 'c-type
)
1154 'c-decl-arg-start
)))
1155 (setq c-restricted-
<>-arglists t
))
1157 (c-forward-<>-arglist nil
))
1159 ;; Loop here if the "<" we found above belongs to a nested
1160 ;; angle bracket sexp. When we start over we'll find the
1161 ;; previous or surrounding sexp.
1162 (if (< (point) final-pos
)
1164 (setq close-paren-inserted t
)
1166 (goto-char final-pos
)
1168 ;; Indent the line if appropriate.
1169 (when (and c-electric-flag c-syntactic-indentation
)
1171 (when (prog1 (or (looking-at "\\s\(\\|\\s\)")
1172 (and (c-major-mode-is 'c
++-mode
)
1174 (c-beginning-of-current-token)
1175 (looking-at "<<\\|>>"))
1176 (= (match-end 0) final-pos
)))
1177 (goto-char final-pos
))
1178 (indent-according-to-mode)))
1180 (when (and close-paren-inserted
1181 (not executing-kbd-macro
)
1182 blink-paren-function
)
1183 ;; Note: Most paren blink functions, such as the standard
1184 ;; `blink-matching-open', currently doesn't handle paren chars
1185 ;; marked with text properties very well. Maybe we should avoid
1186 ;; this call for the time being?
1187 (funcall blink-paren-function
))))
1189 (defun c-electric-paren (arg)
1190 "Insert a parenthesis.
1192 If `c-syntactic-indentation' and `c-electric-flag' are both non-nil, the
1193 line is reindented unless a numeric ARG is supplied, or the parenthesis
1194 is inserted inside a literal.
1196 Whitespace between a function name and the parenthesis may get added or
1197 removed; see the variable `c-cleanup-list'.
1199 Also, if `c-electric-flag' and `c-auto-newline' are both non-nil, some
1200 newline cleanups are done if appropriate; see the variable `c-cleanup-list'."
1202 (let ((literal (c-save-buffer-state () (c-in-literal)))
1204 (c-echo-syntactic-information-p nil
))
1205 (self-insert-command (prefix-numeric-value arg
))
1207 (if (and (not arg
) (not literal
))
1208 (let* ( ;; We want to inhibit blinking the paren since this will
1209 ;; be most disruptive. We'll blink it ourselves
1211 (old-blink-paren blink-paren-function
)
1212 blink-paren-function
)
1213 (if (and c-syntactic-indentation c-electric-flag
)
1214 (indent-according-to-mode))
1216 ;; If we're at EOL, check for new-line clean-ups.
1217 (when (and c-electric-flag c-auto-newline
1218 (looking-at "[ \t]*\\\\?$"))
1220 ;; clean up brace-elseif-brace
1222 (and (memq 'brace-elseif-brace c-cleanup-list
)
1223 (eq last-command-char ?\
()
1226 "\\([ \t\n]\\|\\\\\n\\)*"
1228 "\\([ \t\n]\\|\\\\\n\\)+"
1230 "\\([ \t\n]\\|\\\\\n\\)*"
1234 (not (c-save-buffer-state () (c-in-literal))))
1235 (delete-region (match-beginning 0) (match-end 0))
1236 (insert-and-inherit "} else if ("))
1238 ;; clean up brace-catch-brace
1240 (and (memq 'brace-catch-brace c-cleanup-list
)
1241 (eq last-command-char ?\
()
1244 "\\([ \t\n]\\|\\\\\n\\)*"
1246 "\\([ \t\n]\\|\\\\\n\\)*"
1250 (not (c-save-buffer-state () (c-in-literal))))
1251 (delete-region (match-beginning 0) (match-end 0))
1252 (insert-and-inherit "} catch (")))
1254 ;; Check for clean-ups at function calls. These two DON'T need
1255 ;; `c-electric-flag' or `c-syntactic-indentation' set.
1256 ;; Point is currently just after the inserted paren.
1257 (let (beg (end (1- (point))))
1260 ;; space-before-funcall clean-up?
1261 ((and (memq 'space-before-funcall c-cleanup-list
)
1262 (eq last-command-char ?\
()
1265 (skip-chars-backward " \t")
1267 (and (c-save-buffer-state () (c-on-identifier))
1268 ;; Don't add a space into #define FOO()....
1269 (not (and (c-beginning-of-macro)
1270 (c-forward-over-cpp-define-id)
1271 (eq (point) beg
))))))
1273 (delete-region beg end
)
1277 ;; compact-empty-funcall clean-up?
1278 ((c-save-buffer-state ()
1279 (and (memq 'compact-empty-funcall c-cleanup-list
)
1280 (eq last-command-char ?\
))
1282 (c-safe (backward-char 2))
1283 (when (looking-at "()")
1285 (skip-chars-backward " \t")
1287 (c-on-identifier)))))
1288 (delete-region beg end
))))
1289 (and (eq last-input-event ?\
))
1290 (not executing-kbd-macro
)
1292 (funcall old-blink-paren
))))))
1294 (defun c-electric-continued-statement ()
1295 "Reindent the current line if appropriate.
1297 This function is used to reindent the line after a keyword which
1298 continues an earlier statement is typed, e.g. an \"else\" or the
1299 \"while\" in a do-while block.
1301 The line is reindented if there is nothing but whitespace before the
1302 keyword on the line, the keyword is not inserted inside a literal, and
1303 `c-electric-flag' and `c-syntactic-indentation' are both non-nil."
1304 (let (;; shut this up
1305 (c-echo-syntactic-information-p nil
))
1306 (when (c-save-buffer-state ()
1307 (and c-electric-flag
1308 c-syntactic-indentation
1309 (not (eq last-command-char ?_
))
1311 (skip-syntax-backward "w")
1314 (not (c-in-literal (c-point 'bod
)))))
1315 ;; Have to temporarily insert a space so that
1316 ;; c-guess-basic-syntax recognizes the keyword. Follow the
1317 ;; space with a nonspace to avoid messing up any whitespace
1318 ;; sensitive meddling that might be done, e.g. by
1319 ;; `c-backslash-region'.
1320 (insert-and-inherit " x")
1322 (indent-according-to-mode)
1323 (delete-char -
2)))))
1326 ;; "nomenclature" functions + c-scope-operator.
1327 (defun c-forward-into-nomenclature (&optional arg
)
1328 "Compatibility alias for `c-forward-subword'."
1330 (require 'cc-subword
)
1331 (c-forward-subword arg
))
1332 (make-obsolete 'c-forward-into-nomenclature
'c-forward-subword
)
1334 (defun c-backward-into-nomenclature (&optional arg
)
1335 "Compatibility alias for `c-backward-subword'."
1337 (require 'cc-subword
)
1338 (c-backward-subword arg
))
1339 (make-obsolete 'c-backward-into-nomenclature
'c-backward-subword
)
1341 (defun c-scope-operator ()
1342 "Insert a double colon scope operator at point.
1343 No indentation or other \"electric\" behavior is performed."
1345 (insert-and-inherit "::"))
1348 ;; Movement (etc.) by defuns.
1349 (defun c-in-function-trailer-p (&optional lim
)
1350 ;; Return non-nil if point is between the closing brace and the semicolon of
1351 ;; a brace construct which needs a semicolon, e.g. within the "variables"
1352 ;; portion of a declaration like "struct foo {...} bar ;".
1354 ;; Return the position of the main declaration. Otherwise, return nil.
1355 ;; Point is assumed to be at the top level and outside of any macro or
1358 ;; If LIM is non-nil, it is the bound on a the backward search for the
1359 ;; beginning of the declaration.
1361 ;; This function might do hidden buffer changes.
1362 (and c-opt-block-decls-with-vars-key
1364 (c-syntactic-skip-backward "^;}" lim
)
1365 (let ((eo-block (point))
1367 (and (eq (char-before) ?\
})
1368 (eq (car (c-beginning-of-decl-1 lim
)) 'previous
)
1370 ;; Look for struct or union or ... If we find one, it might
1371 ;; be the return type of a function, or the like. Exclude
1373 (c-syntactic-re-search-forward
1374 (concat "[;=\(\[{]\\|\\("
1375 c-opt-block-decls-with-vars-key
1378 (match-beginning 1) ; Is there a "struct" etc., somewhere?
1379 (not (eq (char-before) ?_
))
1380 (c-syntactic-re-search-forward "[;=\(\[{]" eo-block t t t
)
1381 (eq (char-before) ?\
{)
1384 (defun c-where-wrt-brace-construct ()
1385 ;; Determine where we are with respect to functions (or other brace
1386 ;; constructs, included in the term "function" in the rest of this comment).
1387 ;; Point is assumed to be outside any macro or literal.
1388 ;; This is used by c-\(begining\|end\)-of-defun.
1390 ;; Return one of these symbols:
1391 ;; at-header : we're at the start of a function's header.
1392 ;; in-header : we're inside a function's header, this extending right
1393 ;; up to the brace. This bit includes any k&r declarations.
1394 ;; in-block : we're inside a function's brace block.
1395 ;; in-trailer : we're in the area between the "}" and ";" of something
1396 ;; like "struct foo {...} bar, baz;".
1397 ;; at-function-end : we're just after the closing brace (or semicolon) that
1398 ;; terminates the function.
1399 ;; outwith-function: we're not at or in any function. Being inside a
1400 ;; non-brace construct also counts as 'outwith-function'.
1402 ;; This function might do hidden buffer changes.
1405 decl-result brace-decl-p
1407 (paren-state (c-parse-state))
1408 (least-enclosing (c-least-enclosing-brace paren-state
)))
1411 ((and least-enclosing
1412 (eq (char-after least-enclosing
) ?\
{))
1414 ((c-in-function-trailer-p)
1416 ((and (not least-enclosing
)
1418 (consp (car paren-state
))
1419 (eq start
(cdar paren-state
)))
1422 ;; Find the start of the current declaration. NOTE: If we're in the
1423 ;; variables after a "struct/eval" type block, we don't get to the
1424 ;; real declaration here - we detect and correct for this later.
1426 ;;If we're in the parameters' parens, move back out of them.
1427 (if least-enclosing
(goto-char least-enclosing
))
1428 ;; Kluge so that c-beginning-of-decl-1 won't go back if we're already
1429 ;; at a declaration.
1430 (if (or (and (eolp) (not (eobp))) ; EOL is matched by "\\s>"
1432 "\\([;#]\\|\\'\\|\\s(\\|\\s)\\|\\s\"\\|\\s\\\\|\\s$\\|\\s<\\|\\s>\\|\\s!\\)")))
1434 (setq kluge-start
(point))
1436 (car (c-beginning-of-decl-1
1437 ;; NOTE: If we're in a K&R region, this might be the start
1438 ;; of a parameter declaration, not the actual function.
1439 (and least-enclosing
; LIMIT for c-b-of-decl-1
1440 (c-safe-position least-enclosing paren-state
)))))
1442 ;; Has the declaration we've gone back to got braces?
1445 (and (c-syntactic-re-search-forward "[;{]" nil t t
)
1446 (or (eq (char-before) ?\
{)
1447 (and c-recognize-knr-p
1448 ;; Might have stopped on the
1449 ;; ';' in a K&R argdecl. In
1450 ;; that case the declaration
1451 ;; should contain a block.
1452 (c-in-knr-argdecl))))))
1455 ((= (point) kluge-start
) ; might be BOB or unbalanced parens.
1457 ((eq decl-result
'same
)
1459 (if (eq (point) start
)
1463 ((eq decl-result
'previous
)
1464 (if (and (not brace-decl-p
)
1465 (c-in-function-trailer-p))
1469 "c-where-wrt-brace-construct: c-beginning-of-decl-1 returned %s"
1472 (defun c-backward-to-nth-BOF-{ (n where
)
1473 ;; Skip to the opening brace of the Nth function before point. If
1474 ;; point is inside a function, this counts as the first. Point must be
1475 ;; outside any comment/string or macro.
1477 ;; N must be strictly positive.
1478 ;; WHERE describes the position of point, one of the symbols `at-header',
1479 ;; `in-header', `in-block', `in-trailer', `at-function-end',
1480 ;; `outwith-function' as returned by c-where-wrt-brace-construct.
1482 ;; If we run out of functions, leave point at BOB. Return zero on success,
1483 ;; otherwise the number of {s still to go.
1485 ;; This function may do hidden buffer changes
1487 ;; What we do to go back the first defun depends on where we start.
1489 ((eq where
'in-block
)
1490 (goto-char (c-least-enclosing-brace (c-parse-state)))
1492 ((eq where
'in-header
)
1493 (c-syntactic-re-search-forward "{")
1496 ((memq where
'(at-header outwith-function at-function-end in-trailer
))
1497 (c-syntactic-skip-backward "^}")
1498 (when (eq (char-before) ?\
})
1501 (t (error "Unknown `where' %s in c-backward-to-nth-EOF-{" where
)))
1503 ;; Each time round the loop, go back to a "{" at the outermost level.
1504 (while (and (> n
0) (not (bobp)))
1505 (c-parse-state) ; This call speeds up the following one
1506 ; by a factor of ~6. Hmmm. 2006/4/5.
1507 (c-syntactic-skip-backward "^}")
1508 (when (eq (char-before) ?\
})
1513 (defun c-beginning-of-defun (&optional arg
)
1514 "Move backward to the beginning of a defun.
1515 Every top level declaration that contains a brace paren block is
1516 considered to be a defun.
1518 With a positive argument, move backward that many defuns. A negative
1519 argument -N means move forward to the Nth following beginning. Return
1520 t unless search stops due to beginning or end of buffer.
1522 Unlike the built-in `beginning-of-defun' this tries to be smarter
1523 about finding the char with open-parenthesis syntax that starts the
1527 (or arg
(setq arg
1))
1529 (c-save-buffer-state
1530 (beginning-of-defun-function end-of-defun-function
1532 where paren-state pos
)
1534 ;; Move back out of any macro/comment/string we happen to be in.
1535 (c-beginning-of-macro)
1536 (setq pos
(c-literal-limits))
1537 (if pos
(goto-char (car pos
)))
1539 (setq where
(c-where-wrt-brace-construct))
1542 ;; Move forward to the closing brace of a function.
1544 (if (memq where
'(at-function-end outwith-function
))
1545 (setq arg
(1+ arg
)))
1547 (setq arg
(c-forward-to-nth-EOF-} (- arg
) where
)))
1548 ;; Move forward to the next opening brace....
1549 (when (and (= arg
0)
1550 (c-syntactic-re-search-forward "{" nil
'eob
))
1552 ;; ... and backward to the function header.
1553 (c-beginning-of-decl-1)
1556 ;; Move backward to the opening brace of a function.
1557 (when (and (> arg
0)
1558 (eq (setq arg
(c-backward-to-nth-BOF-{ arg where
)) 0))
1560 ;; Go backward to this function's header.
1561 (c-beginning-of-decl-1)
1564 ;; We're now there, modulo comments and whitespace.
1565 ;; Try to be line oriented; position point at the closest
1566 ;; preceding boi that isn't inside a comment, but if we hit
1567 ;; the previous declaration then we use the current point
1569 (while (and (/= (point) (c-point 'boi
))
1570 (c-backward-single-comment)))
1571 (if (/= (point) (c-point 'boi
))
1574 (c-keep-region-active)
1577 (defun c-forward-to-nth-EOF-} (n where
)
1578 ;; Skip to the closing brace of the Nth function after point. If
1579 ;; point is inside a function, this counts as the first. Point must be
1580 ;; outside any comment/string or macro.
1582 ;; N must be strictly positive.
1583 ;; WHERE describes the position of point, one of the symbols `at-header',
1584 ;; `in-header', `in-block', `in-trailer', `at-function-end',
1585 ;; `outwith-function' as returned by c-where-wrt-brace-construct.
1587 ;; If we run out of functions, leave point at EOB. Return zero on success,
1588 ;; otherwise the number of }s still to go.
1590 ;; This function may do hidden buffer changes.
1593 ;; What we do to go forward over the first defun depends on where we
1594 ;; start. We go to the closing brace of that defun, even when we go
1595 ;; backwards to it (in a "struct foo {...} bar ;").
1597 ((eq where
'in-block
)
1598 (goto-char (c-least-enclosing-brace (c-parse-state)))
1601 ((eq where
'in-trailer
)
1602 (c-syntactic-skip-backward "^}")
1604 ((memq where
'(at-function-end outwith-function at-header in-header
))
1605 (when (c-syntactic-re-search-forward "{" nil
'eob
)
1609 (t (error "c-forward-to-nth-EOF-}: `where' is %s" where
)))
1611 ;; Each time round the loop, go forward to a "}" at the outermost level.
1612 (while (and (> n
0) (not (eobp)))
1613 ;(c-parse-state) ; This call speeds up the following one by a factor
1614 ; of ~6. Hmmm. 2006/4/5.
1615 (when (c-syntactic-re-search-forward "{" nil
'eob
)
1621 (defun c-end-of-defun (&optional arg
)
1622 "Move forward to the end of a top level declaration.
1623 With argument, do it that many times. Negative argument -N means move
1624 back to Nth preceding end. Returns t unless search stops due to
1625 beginning or end of buffer.
1627 An end of a defun occurs right after the close-parenthesis that matches
1628 the open-parenthesis that starts a defun; see `beginning-of-defun'."
1630 (or arg
(setq arg
1))
1632 (c-save-buffer-state
1633 (beginning-of-defun-function end-of-defun-function
1635 where paren-state pos
)
1637 ;; Move back out of any macro/comment/string we happen to be in.
1638 (c-beginning-of-macro)
1639 (setq pos
(c-literal-limits))
1640 (if pos
(goto-char (car pos
)))
1642 (setq where
(c-where-wrt-brace-construct))
1645 ;; Move backwards to the } of a function
1647 (if (memq where
'(at-header outwith-function
))
1648 (setq arg
(1+ arg
)))
1650 (setq arg
(c-backward-to-nth-BOF-{ (- arg
) where
)))
1652 (c-syntactic-skip-backward "^}")))
1654 ;; Move forward to the } of a function
1656 (setq arg
(c-forward-to-nth-EOF-} arg where
))))
1658 ;; Do we need to move forward from the brace to the semicolon?
1660 (if (c-in-function-trailer-p) ; after "}" of struct/enum, etc.
1661 (c-syntactic-re-search-forward ";"))
1664 ;; We're there now, modulo comments and whitespace.
1665 ;; Try to be line oriented; position point after the next
1666 ;; newline that isn't inside a comment, but if we hit the
1667 ;; next declaration then we use the current point instead.
1668 (while (and (not (bolp))
1669 (not (looking-at "\\s *$"))
1670 (c-forward-single-comment)))
1672 ((looking-at "\\s *$")
1677 (c-keep-region-active)
1680 (defun c-defun-name ()
1681 "Return the name of the current defun, or NIL if there isn't one.
1682 \"Defun\" here means a function, or other top level construct
1683 with a brace block."
1685 (c-save-buffer-state
1686 (beginning-of-defun-function end-of-defun-function
1690 ;; Move back out of any macro/comment/string we happen to be in.
1691 (c-beginning-of-macro)
1692 (setq pos
(c-literal-limits))
1693 (if pos
(goto-char (car pos
)))
1695 (setq where
(c-where-wrt-brace-construct))
1697 ;; Move to the beginning of the current defun, if any, if we're not
1699 (if (eq where
'outwith-function
)
1701 (unless (eq where
'at-header
)
1702 (c-backward-to-nth-BOF-{ 1 where
)
1703 (c-beginning-of-decl-1))
1705 ;; Pick out the defun name, according to the type of defun.
1707 ((and (looking-at c-type-prefix-key
)
1708 (progn (c-forward-token-2 2) ; over "struct foo "
1709 (eq (char-after) ?\
{)))
1710 ;; struct, union, enum, or similar:
1711 (c-backward-syntactic-ws)
1712 (setq name-end
(point))
1713 (buffer-substring-no-properties
1715 (c-backward-token-2 2)
1719 ((looking-at "DEFUN\\_>")
1720 ;; DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory, ...) ==> Ffile_name_directory
1721 ;; DEFUN(POSIX::STREAM-LOCK, stream lockp &key BLOCK SHARED START LENGTH) ==> POSIX::STREAM-LOCK
1723 (c-forward-syntactic-ws)
1724 (when (eq (char-after) ?
\")
1726 (c-forward-token-2)) ; over the comma and following WS.
1727 (buffer-substring-no-properties
1731 (c-backward-syntactic-ws)
1735 ;; Normal function or initializer.
1736 (when (c-syntactic-re-search-forward "[{(]" nil t
)
1738 (c-backward-syntactic-ws)
1739 (when (eq (char-before) ?\
=) ; struct foo bar = {0, 0} ;
1740 (c-backward-token-2)
1741 (c-backward-syntactic-ws))
1742 (setq name-end
(point))
1743 (c-backward-token-2)
1744 (buffer-substring-no-properties (point) name-end
))))))))
1746 (defun c-declaration-limits (near)
1747 ;; Return a cons of the beginning and end positions of the current
1748 ;; top level declaration or macro. If point is not inside any then
1749 ;; nil is returned, unless NEAR is non-nil in which case the closest
1750 ;; following one is chosen instead (if there is any). The end
1751 ;; position is at the next line, providing there is one before the
1754 ;; This function might do hidden buffer changes.
1757 ;; Note: Some code duplication in `c-beginning-of-defun' and
1758 ;; `c-end-of-defun'.
1760 (let ((start (point))
1761 (paren-state (c-parse-state))
1764 (goto-char (c-least-enclosing-brace paren-state
))
1765 ;; If we moved to the outermost enclosing paren then we
1766 ;; can use c-safe-position to set the limit. Can't do
1767 ;; that otherwise since the earlier paren pair on
1768 ;; paren-state might very well be part of the
1769 ;; declaration we should go to.
1770 (setq lim
(c-safe-position (point) paren-state
))
1772 ;; At top level. Make sure we aren't inside a literal.
1773 (setq pos
(c-literal-limits
1774 (c-safe-position (point) paren-state
)))
1775 (if pos
(goto-char (car pos
))))
1777 (when (c-beginning-of-macro)
1786 (when (or (eq (car (c-beginning-of-decl-1 lim
)) 'previous
)
1788 ;; We moved back over the previous defun. Skip to the next
1789 ;; one. Not using c-forward-syntactic-ws here since we
1790 ;; should not skip a macro. We can also be directly after
1791 ;; the block in a `c-opt-block-decls-with-vars-key'
1792 ;; declaration, but then we won't move significantly far
1795 (c-forward-comments)
1797 (when (and near
(c-beginning-of-macro))
1805 (if (eobp) (throw 'exit nil
))
1807 ;; Check if `c-beginning-of-decl-1' put us after the block in a
1808 ;; declaration that doesn't end there. We're searching back and
1809 ;; forth over the block here, which can be expensive.
1811 (if (and c-opt-block-decls-with-vars-key
1813 (c-backward-syntactic-ws)
1814 (eq (char-before) ?
}))
1815 (eq (car (c-beginning-of-decl-1))
1819 (and (> (point) pos
)
1820 (setq end-pos
(point)))))
1824 (if (and (not near
) (> (point) start
))
1827 ;; Try to be line oriented; position the limits at the
1828 ;; closest preceding boi, and after the next newline, that
1829 ;; isn't inside a comment, but if we hit a neighboring
1830 ;; declaration then we instead use the exact declaration
1831 ;; limit in that direction.
1834 (while (and (/= (point) (c-point 'boi
))
1835 (c-backward-single-comment)))
1836 (if (/= (point) (c-point 'boi
))
1844 (while (and (not (bolp))
1845 (not (looking-at "\\s *$"))
1846 (c-forward-single-comment)))
1849 ((looking-at "\\s *$")
1856 (defun c-mark-function ()
1857 "Put mark at end of the current top-level declaration or macro, point at beginning.
1858 If point is not inside any then the closest following one is chosen.
1860 As opposed to \\[c-beginning-of-defun] and \\[c-end-of-defun], this
1861 function does not require the declaration to contain a brace block."
1865 (c-save-buffer-state nil
1866 ;; We try to be line oriented, unless there are several
1867 ;; declarations on the same line.
1868 (if (looking-at c-syntactic-eol
)
1869 (c-backward-token-2 1 nil
(c-point 'bol
)))
1870 (setq decl-limits
(c-declaration-limits t
)))
1872 (if (not decl-limits
)
1873 (error "Cannot find any declaration")
1874 (goto-char (car decl-limits
))
1875 (push-mark (cdr decl-limits
) nil t
))))
1877 (defun c-cpp-define-name ()
1878 "Return the name of the current CPP macro, or NIL if we're not in one."
1881 (and c-opt-cpp-macro-define-start
1882 (c-beginning-of-macro)
1883 (looking-at c-opt-cpp-macro-define-start
)
1884 (match-string-no-properties 1))))
1887 ;; Movement by statements.
1888 (defun c-in-comment-line-prefix-p ()
1889 ;; Point is within a comment. Is it also within a comment-prefix?
1890 ;; Space at BOL which precedes a comment-prefix counts as part of it.
1892 ;; This function might do hidden buffer changes.
1893 (let ((here (point)))
1896 (skip-chars-forward " \t")
1897 (and (looking-at c-current-comment-prefix
)
1898 (/= (match-beginning 0) (match-end 0))
1899 (< here
(match-end 0))))))
1901 (defun c-narrow-to-comment-innards (range)
1902 ;; Narrow to the "inside" of the comment (block) defined by range, as
1905 ;; A c-style block comment has its opening "/*" and its closing "*/" (if
1906 ;; present) removed. A c++-style line comment retains its opening "//" but
1907 ;; has any final NL removed. If POINT is currently outwith these innards,
1908 ;; move it to the appropriate boundary.
1910 ;; This narrowing simplifies the sentence movement functions, since it
1911 ;; eliminates awkward things at the boundaries of the comment (block).
1913 ;; This function might do hidden buffer changes.
1914 (let* ((lit-type (c-literal-type range
))
1915 (beg (if (eq lit-type
'c
) (+ (car range
) 2) (car range
)))
1916 (end (if (eq lit-type
'c
)
1917 (if (and (eq (char-before (cdr range
)) ?
/)
1918 (eq (char-before (1- (cdr range
))) ?
*))
1921 (if (eq (cdr range
) (point-max))
1923 (- (cdr range
) 1)))))
1925 (goto-char end
)) ; This would be done automatically by ...
1927 (goto-char beg
)) ; ... narrow-to-region but is not documented.
1928 (narrow-to-region beg end
)))
1930 (defun c-beginning-of-sentence-in-comment (range)
1931 ;; Move backwards to the "beginning of a sentence" within the comment
1932 ;; defined by RANGE, a cons of its starting and ending positions. If we
1933 ;; find a BOS, return NIL. Otherwise, move point to just before the start
1934 ;; of the comment and return T.
1936 ;; The BOS is either text which follows a regexp match of sentence-end,
1937 ;; or text which is a beginning of "paragraph".
1938 ;; Comment-prefixes are treated like WS when calculating BOSes or BOPs.
1940 ;; This code was adapted from GNU Emacs's forward-sentence in paragraphs.el.
1941 ;; It is not a general function, but is intended only for calling from
1942 ;; c-move-over-sentence. Not all preconditions have been explicitly stated.
1944 ;; This function might do hidden buffer changes.
1946 (let ((start-point (point)))
1948 (c-narrow-to-comment-innards range
) ; This may move point back.
1949 (let* ((here (point))
1951 (here-filler ; matches WS and comment-prefices at point.
1952 (concat "\\=\\(^[ \t]*\\(" c-current-comment-prefix
"\\)"
1953 "\\|[ \t\n\r\f]\\)*"))
1954 (prefix-at-bol-here ; matches WS and prefix at BOL, just before point
1955 (concat "^[ \t]*\\(" c-current-comment-prefix
"\\)[ \t\n\r\f]*\\="))
1956 ;; First, find the previous paragraph start, if any.
1957 (par-beg ; point where non-WS/non-prefix text of paragraph starts.
1959 (forward-paragraph -
1) ; uses cc-mode values of
1960 ; paragraph-\(start\|separate\)
1961 (if (> (re-search-forward here-filler nil t
) here
)
1963 (when (>= (point) here
)
1964 (forward-paragraph -
2)
1965 (if (> (re-search-forward here-filler nil t
) here
)
1969 ;; Now seek successively earlier sentence ends between PAR-BEG and
1970 ;; HERE, until the "start of sentence" following it is earlier than
1971 ;; HERE, or we hit PAR-BEG. Beware of comment prefices!
1972 (while (and (re-search-backward (c-sentence-end) par-beg
'limit
)
1974 (goto-char (match-end 0)) ; tentative beginning of sentence
1975 (or (>= (point) here
)
1976 (and (not (bolp)) ; Found a non-blank comment-prefix?
1978 (if (re-search-backward prefix-at-bol-here nil t
)
1979 (/= (match-beginning 1) (match-end 1)))))
1980 (progn ; Skip the crud to find a real b-o-s.
1981 (if (c-in-comment-line-prefix-p)
1982 (beginning-of-line))
1983 (re-search-forward here-filler
) ; always succeeds.
1984 (>= (point) here
))))
1986 (re-search-forward here-filler
)))
1988 (if (< (point) start-point
)
1990 (goto-char (car range
))
1993 (defun c-end-of-sentence-in-comment (range)
1994 ;; Move forward to the "end of a sentence" within the comment defined by
1995 ;; RANGE, a cons of its starting and ending positions (enclosing the opening
1996 ;; comment delimiter and the terminating */ or newline). If we find an EOS,
1997 ;; return NIL. Otherwise, move point to just after the end of the comment
2000 ;; The EOS is just after the non-WS part of the next match of the regexp
2001 ;; sentence-end. Typically, this is just after one of [.!?]. If there is
2002 ;; no sentence-end match following point, any WS before the end of the
2003 ;; comment will count as EOS, providing we're not already in it.
2005 ;; This code was adapted from GNU Emacs's forward-sentence in paragraphs.el.
2006 ;; It is not a general function, but is intended only for calling from
2007 ;; c-move-over-sentence.
2009 ;; This function might do hidden buffer changes.
2011 (let ((start-point (point))
2012 ;; (lit-type (c-literal-type range)) ; Commented out, 2005/11/23, ACM
2015 (c-narrow-to-comment-innards range
) ; This might move point forwards.
2016 (let* ((here (point))
2017 (par-end ; EOL position of last text in current/next paragraph.
2019 ;; The cc-mode values of paragraph-\(start\|separate\), set
2020 ;; in c-setup-paragraph-variables, are used in the
2022 (forward-paragraph 1)
2023 (if (eq (preceding-char) ?
\n) (forward-char -
1))
2024 (when (<= (point) here
) ; can happen, e.g., when HERE is at EOL.
2026 (forward-paragraph 2)
2027 (if (eq (preceding-char) ?
\n) (forward-char -
1)))
2032 (concat "^[ \t]*\\(" c-current-comment-prefix
"\\)\\=")))
2033 ;; Go forward one "comment-prefix which looks like sentence-end"
2034 ;; each time round the following:
2035 (while (and (re-search-forward (c-sentence-end) par-end
'limit
)
2038 (skip-chars-backward " \t\n")
2039 (or (and (not (bolp))
2040 (re-search-backward prefix-at-bol-here nil t
)
2041 (/= (match-beginning 1) (match-end 1)))
2042 (<= (point) here
))))
2045 ;; Take special action if we're up against the end of a comment (of
2046 ;; either sort): Leave point just after the last non-ws text.
2047 (if (eq (point) (point-max))
2048 (while (or (/= (skip-chars-backward " \t\n") 0)
2049 (and (re-search-backward prefix-at-bol-here nil t
)
2050 (/= (match-beginning 1) (match-end 1))))))))
2052 (if (> (point) start-point
)
2054 (goto-char (cdr range
))
2057 (defun c-beginning-of-sentence-in-string (range)
2058 ;; Move backwards to the "beginning of a sentence" within the string defined
2059 ;; by RANGE, a cons of its starting and ending positions (enclosing the
2060 ;; string quotes). If we find a BOS, return NIL. Otherwise, move point to
2061 ;; just before the start of the string and return T.
2063 ;; The BOS is either the text which follows a regexp match of sentence-end
2064 ;; or text which is a beginning of "paragraph". For the purposes of
2065 ;; determining paragraph boundaries, escaped newlines are treated as
2066 ;; ordinary newlines.
2068 ;; This code was adapted from GNU Emacs's forward-sentence in paragraphs.el.
2069 ;; It is not a general function, but is intended only for calling from
2070 ;; c-move-over-sentence.
2072 ;; This function might do hidden buffer changes.
2074 (let* ((here (point)) last
2075 (end (1- (cdr range
)))
2076 (here-filler ; matches WS and escaped newlines at point.
2077 "\\=\\([ \t\n\r\f]\\|\\\\[\n\r]\\)*")
2078 ;; Enhance paragraph-start and paragraph-separate also to recognise
2079 ;; blank lines terminated by escaped EOLs. IT MAY WELL BE that
2080 ;; these values should be customizable user options, or something.
2081 (paragraph-start c-string-par-start
)
2082 (paragraph-separate c-string-par-separate
)
2084 (par-beg ; beginning of current (or previous) paragraph.
2087 (narrow-to-region (1+ (car range
)) end
)
2088 (forward-paragraph -
1) ; uses above values of
2089 ; paragraph-\(start\|separate\)
2090 (if (> (re-search-forward here-filler nil t
) here
)
2092 (when (>= (point) here
)
2093 (forward-paragraph -
2)
2094 (if (> (re-search-forward here-filler nil t
) here
)
2097 ;; Now see if we can find a sentence end after PAR-BEG.
2098 (while (and (re-search-backward c-sentence-end-with-esc-eol par-beg
'limit
)
2100 (goto-char (match-end 0))
2104 here-filler end t
) ; always succeeds. Use end rather
2105 ; than here, in case point starts
2106 ; beyond the closing quote.
2107 (>= (point) here
))))
2109 (re-search-forward here-filler here t
)
2110 (if (< (point) here
)
2112 (goto-char (car range
))
2115 (defun c-end-of-sentence-in-string (range)
2116 ;; Move forward to the "end of a sentence" within the string defined by
2117 ;; RANGE, a cons of its starting and ending positions. If we find an EOS,
2118 ;; return NIL. Otherwise, move point to just after the end of the string
2121 ;; The EOS is just after the non-WS part of the next match of the regexp
2122 ;; sentence-end. Typically, this is just after one of [.!?]. If there is
2123 ;; no sentence-end match following point, any WS before the end of the
2124 ;; string will count as EOS, providing we're not already in it.
2126 ;; This code was adapted from GNU Emacs's forward-sentence in paragraphs.el.
2127 ;; It is not a general function, but is intended only for calling from
2128 ;; c-move-over-sentence.
2130 ;; This function might do hidden buffer changes.
2132 (let* ((here (point))
2134 ;; Enhance paragraph-start and paragraph-separate to recognise
2135 ;; blank lines terminated by escaped EOLs.
2136 (paragraph-start c-string-par-start
)
2137 (paragraph-separate c-string-par-separate
)
2139 (par-end ; EOL position of last text in current/next paragraph.
2142 (narrow-to-region (car range
) (1- (cdr range
)))
2143 ;; The above values of paragraph-\(start\|separate\) are used
2144 ;; in the following.
2145 (forward-paragraph 1)
2147 ;; (re-search-backward filler-here nil t) would find an empty
2148 ;; string. Therefore we simulate it by the following:
2149 (while (or (/= (skip-chars-backward " \t\n\r\f") 0)
2150 (re-search-backward "\\\\\\($\\)\\=" nil t
)))
2151 (unless (> (point) here
)
2153 (forward-paragraph 1)
2154 (while (or (/= (skip-chars-backward " \t\n\r\f") 0)
2155 (re-search-backward "\\\\\\($\\)\\=" nil t
))))
2157 ;; Try to go forward a sentence.
2158 (when (re-search-forward c-sentence-end-with-esc-eol par-end
'limit
)
2160 (while (or (/= (skip-chars-backward " \t\n") 0)
2161 (re-search-backward "\\\\\\($\\)\\=" nil t
))))
2162 ;; Did we move a sentence, or did we hit the end of the string?
2163 (if (> (point) here
)
2165 (goto-char (cdr range
))
2168 (defun c-ascertain-preceding-literal ()
2169 ;; Point is not in a literal (i.e. comment or string (include AWK regexp)).
2170 ;; If a literal is the next thing (aside from whitespace) to be found before
2171 ;; point, return a cons of its start.end positions (enclosing the
2172 ;; delimiters). Otherwise return NIL.
2174 ;; This function might do hidden buffer changes.
2176 (c-collect-line-comments
2177 (let ((here (point))
2179 (if (c-backward-single-comment)
2180 (cons (point) (progn (c-forward-single-comment) (point)))
2182 ;; to prevent `looking-at' seeing a " at point.
2183 (narrow-to-region (point-min) here
)
2186 ;; An EOL can act as an "open string" terminator in AWK.
2187 (looking-at c-ws
*-string-limit-regexp
)
2189 (progn (backward-char)
2190 (looking-at c-string-limit-regexp
))))
2191 (goto-char (match-end 0)) ; just after the string terminator.
2193 (c-safe (c-backward-sexp 1) ; move back over the string.
2194 (cons (point) pos
)))))))))
2196 (defun c-ascertain-following-literal ()
2197 ;; Point is not in a literal (i.e. comment or string (include AWK regexp)).
2198 ;; If a literal is the next thing (aside from whitespace) following point,
2199 ;; return a cons of its start.end positions (enclosing the delimiters).
2200 ;; Otherwise return NIL.
2202 ;; This function might do hidden buffer changes.
2204 (c-collect-line-comments
2207 (if (looking-at c-string-limit-regexp
) ; string-delimiter.
2208 (cons (point) (or (c-safe (progn (c-forward-sexp 1) (point)))
2211 (if (c-forward-single-comment)
2212 (cons pos
(point))))))))
2214 (defun c-after-statement-terminator-p () ; Should we pass in LIM here?
2215 ;; Does point immediately follow a statement "terminator"? A virtual
2216 ;; semicolon is regarded here as such. So is a an opening brace ;-)
2218 ;; This function might do hidden buffer changes.
2221 (and (looking-at "[;{}]")
2222 (not (and c-special-brace-lists
; Pike special brace lists.
2223 (eq (char-after) ?
{)
2224 (c-looking-at-special-brace-list)))))
2226 ;; The following (for macros) is not strict about exactly where we are
2227 ;; wrt white space at the end of the macro. Doesn't seem to matter too
2228 ;; much. ACM 2004/3/29.
2231 (if (c-beginning-of-macro)
2232 (setq eom
(progn (c-end-of-macro)
2236 (c-forward-comments)
2237 (>= (point) eom
))))))
2239 (defun c-back-over-illiterals (macro-start)
2240 ;; Move backwards over code which isn't a literal (i.e. comment or string),
2241 ;; stopping before reaching BOB or a literal or the boundary of a
2242 ;; preprocessor statement or the "beginning of a statement". MACRO-START is
2243 ;; the position of the '#' beginning the current preprocessor directive, or
2244 ;; NIL if we're not in such.
2246 ;; Return a cons (A.B), where
2247 ;; A is NIL if we moved back to a BOS (and know it), T otherwise (we
2248 ;; didn't move, or we hit a literal, or we're not sure about BOS).
2249 ;; B is MACRO-BOUNDARY if we are about to cross the boundary out of or
2250 ;; into a macro, otherwise LITERAL if we've hit a literal, otherwise NIL
2252 ;; The total collection of returned values is as follows:
2253 ;; (nil . nil): Found a BOS whilst remaining inside the illiterals.
2254 ;; (t . literal): No BOS found: only a comment/string. We _might_ be at
2255 ;; a BOS - the caller must check this.
2256 ;; (nil . macro-boundary): only happens with non-nil macro-start. We've
2257 ;; moved and reached the opening # of the macro.
2258 ;; (t . macro-boundary): Every other circumstance in which we're at a
2259 ;; macro-boundary. We might be at a BOS.
2261 ;; Point is left either at the beginning-of-statement, or at the last non-ws
2262 ;; code before encountering the literal/BOB or macro-boundary.
2264 ;; Note that this function moves within either preprocessor commands
2265 ;; (macros) or normal code, but will not cross a boundary between the two,
2266 ;; or between two distinct preprocessor commands.
2268 ;; Stop before `{' and after `;', `{', `}' and `};' when not followed by `}'
2269 ;; or `)', but on the other side of the syntactic ws. Move by sexps and
2270 ;; move into parens. Also stop before `#' when it's at boi on a line.
2272 ;; This function might do hidden buffer changes.
2274 (let ((here (point))
2275 last
) ; marks the position of non-ws code, what'll be BOS if, say, a
2276 ; semicolon precedes it.
2278 (while t
;; We go back one "token" each iteration of the loop.
2281 ;; Stop at the token after a comment.
2282 ((c-backward-single-comment) ; Also functions as backwards-ws.
2284 (throw 'done
'(t . literal
)))
2286 ;; If we've gone back over a LF, we might have moved into or out of
2287 ;; a preprocessor line.
2288 ((and (save-excursion
2290 (re-search-forward "\\(^\\|[^\\]\\)[\n\r]" last t
))
2292 (< (point) macro-start
)
2293 (c-beginning-of-macro)))
2295 ;; Return a car of NIL ONLY if we've hit the opening # of a macro.
2296 (throw 'done
(cons (or (eq (point) here
)
2300 ;; Have we found a virtual semicolon? If so, stop, unless the next
2301 ;; statement is where we started from.
2302 ((and (c-at-vsemi-p)
2304 (not (memq (char-after last
) '(?\
) ?
})))) ; we've moved back from ) or }
2306 (throw 'done
'(nil . nil
)))
2308 ;; Hit the beginning of the buffer/region?
2312 (throw 'done
'(nil . nil
)))
2314 ;; Move back a character.
2315 ((progn (backward-char) nil
))
2317 ;; Stop at "{" (unless it's a PIKE special brace list.)
2318 ((eq (char-after) ?\
{)
2319 (if (and c-special-brace-lists
2320 (c-looking-at-special-brace-list))
2321 (skip-syntax-backward "w_") ; Speedup only.
2324 (throw 'done
'(nil . nil
))))
2326 ;; Have we reached the start of a macro? This always counts as
2327 ;; BOS. (N.B. I don't think (eq (point) here) can ever be true
2328 ;; here. FIXME!!! ACM 2004/3/29)
2329 ((and macro-start
(eq (point) macro-start
))
2330 (throw 'done
(cons (eq (point) here
) 'macro-boundary
)))
2332 ;; Stop at token just after "}" or ";".
2333 ((looking-at "[;}]")
2334 ;; If we've gone back over ;, {, or }, we're done.
2335 (if (or (= here last
)
2336 (memq (char-after last
) '(?\
) ?
}))) ; we've moved back from ) or }
2337 (if (and (eq (char-before) ?
}) ; If };, treat them as a unit.
2338 (eq (char-after) ?\
;))
2340 (goto-char last
) ; To the statement starting after the ; or }.
2341 (throw 'done
'(nil . nil
))))
2343 ;; Stop at the token after a string.
2344 ((looking-at c-string-limit-regexp
) ; Just gone back over a string terminator?
2346 (throw 'done
'(t . literal
)))
2348 ;; Nothing special: go back word characters.
2349 (t (skip-syntax-backward "w_")) ; Speedup only.
2352 (defun c-forward-over-illiterals (macro-end allow-early-stop
)
2353 ;; Move forwards over code, stopping before reaching EOB or a literal
2354 ;; (i.e. a comment/string) or the boundary of a preprocessor statement or
2355 ;; the "end of a statement". MACRO-END is the position of the EOL/EOB which
2356 ;; terminates the current preprocessor directive, or NIL if we're not in
2359 ;; ALLOW-EARLY-STOP is non-nil if it is permissible to return without moving
2360 ;; forward at all, should we encounter a `{'. This is an ugly kludge, but
2361 ;; seems unavoidable. Depending on the context this function is called
2362 ;; from, we _sometimes_ need to stop there. Currently (2004/4/3),
2363 ;; ALLOW-EARLY-STOP is applied only to open braces, not to virtual
2364 ;; semicolons, or anything else.
2366 ;; Return a cons (A.B), where
2367 ;; A is NIL if we moved forward to an EOS, or stay at one (when
2368 ;; ALLOW-EARLY-STOP is set), T otherwise (we hit a literal).
2369 ;; B is 'MACRO-BOUNDARY if we are about to cross the boundary out of or
2370 ;; into a macro, otherwise 'LITERAL if we've hit a literal, otherwise NIL
2372 ;; Point is left either after the end-of-statement, or at the last non-ws
2373 ;; code before encountering the literal, or the # of the preprocessor
2374 ;; statement, or at EOB [or just after last non-WS stuff??].
2376 ;; As a clarification of "after the end-of-statement", if a comment or
2377 ;; whitespace follows a completed AWK statement, that statement is treated
2378 ;; as ending just after the last non-ws character before the comment.
2380 ;; Note that this function moves within either preprocessor commands
2381 ;; (macros) or normal code, but not both within the same invocation.
2383 ;; Stop before `{', `}', and `#' when it's at boi on a line, but on the
2384 ;; other side of the syntactic ws, and after `;', `}' and `};'. Only
2385 ;; stop before `{' if at top level or inside braces, though. Move by
2386 ;; sexps and move into parens. Also stop at eol of lines with `#' at
2389 ;; This function might do hidden buffer changes.
2390 (let ((here (point))
2393 (while t
;; We go one "token" forward each time round this loop.
2396 ;; If we've moved forward to a virtual semicolon, we're done.
2397 (if (and (> last here
) ; Should we check ALLOW-EARLY-STOP, here? 2004/4/3
2399 (throw 'done
'(nil . nil
)))
2403 ;; Gone past the end of a macro?
2404 ((and macro-end
(> (point) macro-end
))
2406 (throw 'done
(cons (eq (point) here
) 'macro-boundary
)))
2408 ;; About to hit a comment?
2409 ((save-excursion (c-forward-single-comment))
2411 (throw 'done
'(t . literal
)))
2417 (throw 'done
'(nil . nil
)))
2419 ;; If we encounter a '{', stop just after the previous token.
2420 ((and (eq (char-after) ?
{)
2421 (not (and c-special-brace-lists
2422 (c-looking-at-special-brace-list)))
2423 (or allow-early-stop
(/= here last
))
2424 (save-excursion ; Is this a check that we're NOT at top level?
2425 ;;;; NO! This seems to check that (i) EITHER we're at the top level; OR (ii) The next enclosing
2426 ;;;; level of bracketing is a '{'. HMM. Doesn't seem to make sense.
2427 ;;;; 2003/8/8 This might have something to do with the GCC extension "Statement Expressions", e.g.
2428 ;;;; while ({stmt1 ; stmt2 ; exp ;}). This form excludes such Statement Expressions.
2429 (or (not (c-safe (up-list -
1) t
))
2430 (= (char-after) ?
{))))
2432 (throw 'done
'(nil . nil
)))
2434 ;; End of a PIKE special brace list? If so, step over it and continue.
2435 ((and c-special-brace-lists
2436 (eq (char-after) ?
})
2438 (and (c-safe (up-list -
1) t
)
2439 (c-looking-at-special-brace-list))))
2441 (skip-syntax-forward "w_")) ; Speedup only.
2443 ;; Have we got a '}' after having moved? If so, stop after the
2445 ((and (eq (char-after) ?
})
2448 (throw 'done
'(nil . nil
)))
2450 ;; Stop if we encounter a preprocessor line.
2451 ((and (not macro-end
)
2452 (eq (char-after) ?
#)
2453 (= (point) (c-point 'boi
)))
2455 ;(throw 'done (cons (eq (point) here) 'macro-boundary))) ; Changed 2003/3/26
2456 (throw 'done
'(t . macro-boundary
)))
2458 ;; Stop after a ';', '}', or "};"
2459 ((looking-at ";\\|};?")
2460 (goto-char (match-end 0))
2461 (throw 'done
'(nil . nil
)))
2463 ;; Found a string (this subsumes AWK regexps)?
2464 ((looking-at c-string-limit-regexp
)
2466 (throw 'done
'(t . literal
)))
2469 (forward-char) ; Can't fail - we checked (eobp) earlier on.
2470 (skip-syntax-forward "w_") ; Speedup only.
2471 (when (and macro-end
(> (point) macro-end
))
2473 (throw 'done
(cons (eq (point) here
) 'macro-boundary
))))
2476 (defun c-one-line-string-p (range)
2477 ;; Is the literal defined by RANGE a string contained in a single line?
2479 ;; This function might do hidden buffer changes.
2481 (goto-char (car range
))
2482 (and (looking-at c-string-limit-regexp
)
2483 (progn (skip-chars-forward "^\n" (cdr range
))
2484 (eq (point) (cdr range
))))))
2486 (defun c-beginning-of-statement (&optional count lim sentence-flag
)
2487 "Go to the beginning of the innermost C statement.
2488 With prefix arg, go back N - 1 statements. If already at the
2489 beginning of a statement then go to the beginning of the closest
2490 preceding one, moving into nested blocks if necessary (use
2491 \\[backward-sexp] to skip over a block). If within or next to a
2492 comment or multiline string, move by sentences instead of statements.
2494 When called from a program, this function takes 3 optional args: the
2495 repetition count, a buffer position limit which is the farthest back
2496 to search for the syntactic context, and a flag saying whether to do
2497 sentence motion in or near comments and multiline strings.
2499 Note that for use in programs, `c-beginning-of-statement-1' is
2500 usually better. It has much better defined semantics than this one,
2501 which is intended for interactive use, and might therefore change to
2502 be more \"DWIM:ey\"."
2503 (interactive (list (prefix-numeric-value current-prefix-arg
)
2506 (c-end-of-statement (- count
) lim sentence-flag
)
2507 (c-save-buffer-state
2508 ((count (or count
1))
2509 last
; start point for going back ONE chunk. Updated each chunk movement.
2511 (save-excursion (and (not (bobp)) (c-beginning-of-macro) (point))))
2512 res
; result from sub-function call
2513 not-bos
; "not beginning-of-statement"
2514 (range (c-collect-line-comments (c-literal-limits lim
)))) ; (start.end) of current literal or NIL
2516 ;; Go back one statement at each iteration of the following loop.
2517 (while (and (/= count
0)
2518 (or (not lim
) (> (point) lim
)))
2519 ;; Go back one "chunk" each time round the following loop, stopping
2520 ;; when we reach a statement boundary, etc.
2523 (cond ; Each arm of this cond returns NIL on reaching a desired
2524 ; statement boundary, non-NIL otherwise.
2529 (range ; point is within or approaching a literal.
2531 ;; Single line string or sentence-flag is null => skip the
2533 ((or (null sentence-flag
)
2534 (c-one-line-string-p range
))
2535 (goto-char (car range
))
2536 (setq range
(c-ascertain-preceding-literal))
2537 ;; N.B. The following is essentially testing for an AWK regexp
2539 ;; Was the previous non-ws thing an end of statement?
2542 (c-backward-comments)
2543 (c-backward-syntactic-ws))
2544 (not (or (bobp) (c-after-statement-terminator-p)))))
2546 ;; Comment inside a statement or a multi-line string.
2547 (t (when (setq res
; returns non-nil when we go out of the literal
2548 (if (eq (c-literal-type range
) 'string
)
2549 (c-beginning-of-sentence-in-string range
)
2550 (c-beginning-of-sentence-in-comment range
)))
2551 (setq range
(c-ascertain-preceding-literal)))
2554 ;; Non-literal code.
2555 (t (setq res
(c-back-over-illiterals macro-fence
))
2556 (setq not-bos
; "not reached beginning-of-statement".
2557 (or (= (point) last
)
2558 (memq (char-after) '(?\
) ?\
}))
2561 ;; We're at a tentative BOS. The next form goes
2562 ;; back over WS looking for an end of previous
2564 (not (save-excursion
2566 (c-backward-comments)
2567 (c-backward-syntactic-ws))
2568 (or (bobp) (c-after-statement-terminator-p)))))))
2569 ;; Are we about to move backwards into or out of a
2570 ;; preprocessor command? If so, locate it's beginning.
2571 (when (eq (cdr res
) 'macro-boundary
)
2576 (progn (c-skip-ws-backward) (c-beginning-of-macro))
2578 ;; Are we about to move backwards into a literal?
2579 (when (memq (cdr res
) '(macro-boundary literal
))
2580 (setq range
(c-ascertain-preceding-literal)))
2582 (setq last
(point)))
2584 (if (/= count
0) (setq count
(1- count
))))
2585 (c-keep-region-active))))
2587 (defun c-end-of-statement (&optional count lim sentence-flag
)
2588 "Go to the end of the innermost C statement.
2589 With prefix arg, go forward N - 1 statements. Move forward to the end
2590 of the next statement if already at end, and move into nested blocks
2591 \(use \\[forward-sexp] to skip over a block). If within or next to a
2592 comment or multiline string, move by sentences instead of statements.
2594 When called from a program, this function takes 3 optional args: the
2595 repetition count, a buffer position limit which is the farthest back
2596 to search for the syntactic context, and a flag saying whether to do
2597 sentence motion in or near comments and multiline strings."
2598 (interactive (list (prefix-numeric-value current-prefix-arg
)
2600 (setq count
(or count
1))
2601 (if (< count
0) (c-beginning-of-statement (- count
) lim sentence-flag
)
2603 (c-save-buffer-state
2604 (here ; start point for going forward ONE statement. Updated each statement.
2607 (and (not (eobp)) (c-beginning-of-macro)
2608 (progn (c-end-of-macro) (point)))))
2610 (range (c-collect-line-comments (c-literal-limits lim
)))) ; (start.end) of current literal or NIL
2612 ;; Go back/forward one statement at each iteration of the following loop.
2613 (while (and (/= count
0)
2614 (or (not lim
) (< (point) lim
)))
2615 (setq here
(point)) ; ONLY HERE is HERE updated
2617 ;; Go forward one "chunk" each time round the following loop, stopping
2618 ;; when we reach a statement boundary, etc.
2620 (cond ; Each arm of this cond returns NIL on reaching a desired
2621 ; statement boundary, non-NIL otherwise.
2626 (range ; point is within a literal.
2628 ;; sentence-flag is null => skip the entire literal.
2629 ;; or a Single line string.
2630 ((or (null sentence-flag
)
2631 (c-one-line-string-p range
))
2632 (goto-char (cdr range
))
2633 (setq range
(c-ascertain-following-literal))
2634 ;; Is there a virtual semicolon here (e.g. for AWK)?
2635 (not (c-at-vsemi-p)))
2637 ;; Comment or multi-line string.
2638 (t (when (setq res
; gets non-nil when we go out of the literal
2639 (if (eq (c-literal-type range
) 'string
)
2640 (c-end-of-sentence-in-string range
)
2641 (c-end-of-sentence-in-comment range
)))
2642 (setq range
(c-ascertain-following-literal)))
2643 ;; If we've just come forward out of a literal, check for
2644 ;; vsemi. (N.B. AWK can't have a vsemi after a comment, but
2645 ;; some other language may do in the future)
2647 (not (c-at-vsemi-p))))))
2649 ;; Non-literal code.
2650 (t (setq res
(c-forward-over-illiterals macro-fence
2652 ;; Are we about to move forward into or out of a
2653 ;; preprocessor command?
2654 (when (eq (cdr res
) 'macro-boundary
)
2659 (progn (c-skip-ws-forward)
2660 (c-beginning-of-macro))
2661 (progn (c-end-of-macro)
2663 ;; Are we about to move forward into a literal?
2664 (when (memq (cdr res
) '(macro-boundary literal
))
2665 (setq range
(c-ascertain-following-literal)))
2668 (if (/= count
0) (setq count
(1- count
))))
2669 (c-keep-region-active))))
2672 ;; set up electric character functions to work with pending-del,
2673 ;; (a.k.a. delsel) mode. All symbols get the t value except
2674 ;; the functions which delete, which gets 'supersede.
2678 (put sym
'delete-selection t
) ; for delsel (Emacs)
2679 (put sym
'pending-delete t
))) ; for pending-del (XEmacs)
2684 c-electric-semi
&comma
2688 (put 'c-electric-delete
'delete-selection
'supersede
) ; delsel
2689 (put 'c-electric-delete
'pending-delete
'supersede
) ; pending-del
2690 (put 'c-electric-backspace
'delete-selection
'supersede
) ; delsel
2691 (put 'c-electric-backspace
'pending-delete
'supersede
) ; pending-del
2692 (put 'c-electric-delete-forward
'delete-selection
'supersede
) ; delsel
2693 (put 'c-electric-delete-forward
'pending-delete
'supersede
) ; pending-del
2696 ;; Inserting/indenting comments
2697 (defun c-calc-comment-indent (entry)
2698 ;; This function might do hidden buffer changes.
2700 (setq entry
(or (assq entry c-indent-comment-alist
)
2701 (assq 'other c-indent-comment-alist
)
2702 '(default .
(column . nil
)))))
2703 (let ((action (car (cdr entry
)))
2704 (value (cdr (cdr entry
)))
2705 (col (current-column)))
2706 (cond ((eq action
'space
)
2708 ((eq action
'column
)
2709 (unless value
(setq value comment-column
))
2711 ;; Do not pad with one space if we're at bol.
2713 (max (1+ col
) value
)))
2719 (let ((lim (c-literal-limits (c-point 'bol
) t
)))
2721 (goto-char (car lim
))
2722 (when (looking-at "/[/*]") ; FIXME!!! Adapt for AWK! (ACM, 2005/11/18)
2723 ;; Found comment to align with.
2725 ;; Do not pad with one space if we're at bol.
2727 (max (1+ col
) (current-column))))))))
2728 ;; Recurse to handle value as a new spec.
2729 (c-calc-comment-indent (cdr entry
)))))))
2731 (defun c-comment-indent ()
2732 "Used by `indent-for-comment' to create and indent comments.
2733 See `c-indent-comment-alist' for a description."
2736 (c-save-buffer-state
2737 ((eot (let ((lim (c-literal-limits (c-point 'bol
) t
)))
2738 (or (when (consp lim
)
2739 (goto-char (car lim
))
2740 (when (looking-at "/[/*]")
2741 (skip-chars-backward " \t")
2744 (skip-chars-backward " \t")
2747 (cond ((looking-at "^/[/*]")
2749 ((progn (beginning-of-line)
2752 ((progn (back-to-indentation)
2753 (and (eq (char-after) ?
})
2754 (eq (point) (1- eot
))))
2756 ((and (looking-at "#[ \t]*\\(endif\\|else\\)")
2757 (eq (match-end 0) eot
))
2761 (if (and (memq line-type
'(anchored-comment empty-line
))
2762 c-indent-comments-syntactically-p
)
2763 (let ((c-syntactic-context (c-guess-basic-syntax)))
2764 ;; BOGOSITY ALERT: if we're looking at the eol, its
2765 ;; because indent-for-comment hasn't put the comment-start
2766 ;; in the buffer yet. this will screw up the syntactic
2767 ;; analysis so we kludge in the necessary info. Another
2768 ;; kludge is that if we're at the bol, then we really want
2769 ;; to ignore any anchoring as specified by
2770 ;; c-comment-only-line-offset since it doesn't apply here.
2772 (c-add-syntax 'comment-intro
))
2773 (let ((c-comment-only-line-offset
2774 (if (consp c-comment-only-line-offset
)
2775 c-comment-only-line-offset
2776 (cons c-comment-only-line-offset
2777 c-comment-only-line-offset
))))
2778 (c-get-syntactic-indentation c-syntactic-context
)))
2780 (c-calc-comment-indent line-type
)))))
2783 ;; used by outline-minor-mode
2784 (defun c-outline-level ()
2785 (let (buffer-invisibility-spec);; This so that `current-column' DTRT
2786 ;; in otherwise-hidden text.
2788 (skip-chars-forward "\t ")
2792 ;; Movement by CPP conditionals.
2793 (defun c-up-conditional (count)
2794 "Move back to the containing preprocessor conditional, leaving mark behind.
2795 A prefix argument acts as a repeat count. With a negative argument,
2796 move forward to the end of the containing preprocessor conditional.
2798 \"#elif\" is treated like \"#else\" followed by \"#if\", so the
2799 function stops at them when going backward, but not when going
2802 (c-forward-conditional (- count
) -
1)
2803 (c-keep-region-active))
2805 (defun c-up-conditional-with-else (count)
2806 "Move back to the containing preprocessor conditional, including \"#else\".
2807 Just like `c-up-conditional', except it also stops at \"#else\"
2810 (c-forward-conditional (- count
) -
1 t
)
2811 (c-keep-region-active))
2813 (defun c-down-conditional (count)
2814 "Move forward into the next preprocessor conditional, leaving mark behind.
2815 A prefix argument acts as a repeat count. With a negative argument,
2816 move backward into the previous preprocessor conditional.
2818 \"#elif\" is treated like \"#else\" followed by \"#if\", so the
2819 function stops at them when going forward, but not when going
2822 (c-forward-conditional count
1)
2823 (c-keep-region-active))
2825 (defun c-down-conditional-with-else (count)
2826 "Move forward into the next preprocessor conditional, including \"#else\".
2827 Just like `c-down-conditional', except it also stops at \"#else\"
2830 (c-forward-conditional count
1 t
)
2831 (c-keep-region-active))
2833 (defun c-backward-conditional (count &optional target-depth with-else
)
2834 "Move back across a preprocessor conditional, leaving mark behind.
2835 A prefix argument acts as a repeat count. With a negative argument,
2836 move forward across a preprocessor conditional."
2838 (c-forward-conditional (- count
) target-depth with-else
)
2839 (c-keep-region-active))
2841 (defun c-forward-conditional (count &optional target-depth with-else
)
2842 "Move forward across a preprocessor conditional, leaving mark behind.
2843 A prefix argument acts as a repeat count. With a negative argument,
2844 move backward across a preprocessor conditional.
2846 \"#elif\" is treated like \"#else\" followed by \"#if\", except that
2847 the nesting level isn't changed when tracking subconditionals.
2849 The optional argument TARGET-DEPTH specifies the wanted nesting depth
2850 after each scan. I.e. if TARGET-DEPTH is -1, the function will move
2851 out of the enclosing conditional. A non-integer non-nil TARGET-DEPTH
2854 If the optional argument WITH-ELSE is non-nil, \"#else\" directives
2855 are treated as conditional clause limits. Normally they are ignored."
2857 (let* ((forward (> count
0))
2858 (increment (if forward -
1 1))
2859 (search-function (if forward
're-search-forward
're-search-backward
))
2861 (unless (integerp target-depth
)
2862 (setq target-depth
(if target-depth -
1 0)))
2866 ;; subdepth is the depth in "uninteresting" subtrees,
2867 ;; i.e. those that takes us farther from the target
2868 ;; depth instead of closer.
2872 ;; Find the "next" significant line in the proper direction.
2873 (while (and (not found
)
2874 ;; Rather than searching for a # sign that
2875 ;; comes at the beginning of a line aside from
2876 ;; whitespace, search first for a string
2877 ;; starting with # sign. Then verify what
2878 ;; precedes it. This is faster on account of
2879 ;; the fastmap feature of the regexp matcher.
2880 (funcall search-function
2881 "#[ \t]*\\(if\\|elif\\|endif\\|else\\)"
2884 ;; Now verify it is really a preproc line.
2885 (if (looking-at "^[ \t]*#[ \t]*\\(if\\|elif\\|endif\\|else\\)")
2886 (let (dchange (directive (match-string 1)))
2887 (cond ((string= directive
"if")
2888 (setq dchange
(- increment
)))
2889 ((string= directive
"endif")
2890 (setq dchange increment
))
2892 ;; When we're not in an "uninteresting"
2893 ;; subtree, we might want to act on "elif"
2895 (if (cond (with-else
2896 ;; Always move toward the target depth.
2898 (if (> target-depth
0) 1 -
1)))
2899 ((string= directive
"elif")
2900 (setq dchange
(- increment
))))
2901 ;; Ignore the change if it'd take us
2902 ;; into an "uninteresting" subtree.
2903 (if (eq (> dchange
0) (<= target-depth
0))
2904 (setq dchange nil
)))))
2906 (when (or (/= subdepth
0)
2907 (eq (> dchange
0) (<= target-depth
0)))
2908 (setq subdepth
(+ subdepth dchange
)))
2909 (setq depth
(+ depth dchange
))
2910 ;; If we are trying to move across, and we find an
2911 ;; end before we find a beginning, get an error.
2912 (if (and (< depth target-depth
) (< dchange
0))
2914 "No following conditional at this level"
2915 "No previous conditional at this level"))))
2916 ;; When searching forward, start from next line so
2917 ;; that we don't find the same line again.
2918 (if forward
(forward-line 1))
2919 ;; We found something if we've arrived at the
2921 (if (and dchange
(= depth target-depth
))
2922 (setq found
(point))))
2924 (if forward
(forward-line 1)))))
2926 (error "No containing preprocessor conditional"))
2927 (goto-char (setq new found
)))
2928 (setq count
(+ count increment
))))
2931 (c-keep-region-active))
2934 ;; commands to indent lines, regions, defuns, and expressions
2935 (defun c-indent-command (&optional arg
)
2936 "Indent current line as C code, and/or insert some whitespace.
2938 If `c-tab-always-indent' is t, always just indent the current line.
2939 If nil, indent the current line only if point is at the left margin or
2940 in the line's indentation; otherwise insert some whitespace[*]. If
2941 other than nil or t, then some whitespace[*] is inserted only within
2942 literals (comments and strings), but the line is always reindented.
2944 If `c-syntactic-indentation' is t, indentation is done according to
2945 the syntactic context. A numeric argument, regardless of its value,
2946 means indent rigidly all the lines of the expression starting after
2947 point so that this line becomes properly indented. The relative
2948 indentation among the lines of the expression is preserved.
2950 If `c-syntactic-indentation' is nil, the line is just indented one
2951 step according to `c-basic-offset'. In this mode, a numeric argument
2952 indents a number of such steps, positive or negative, and an empty
2953 prefix argument is equivalent to -1.
2955 [*] The amount and kind of whitespace inserted is controlled by the
2956 variable `c-insert-tab-function', which is called to do the actual
2957 insertion of whitespace. Normally the function in this variable
2958 just inserts a tab character, or the equivalent number of spaces,
2959 depending on the variable `indent-tabs-mode'."
2962 (let ((indent-function
2963 (if c-syntactic-indentation
2964 (symbol-function 'indent-according-to-mode
)
2966 (let ((c-macro-start c-macro-start
)
2967 (steps (if (equal arg
'(4))
2969 (prefix-numeric-value arg
))))
2970 (c-shift-line-indentation (* steps c-basic-offset
))
2971 (when (and c-auto-align-backslashes
2974 (eq (char-before) ?
\\))
2975 (c-query-and-set-macro-start))
2976 ;; Realign the line continuation backslash if inside a macro.
2977 (c-backslash-region (point) (point) nil t
)))
2979 (if (and c-syntactic-indentation arg
)
2980 ;; If c-syntactic-indentation and got arg, always indent this
2981 ;; line as C and shift remaining lines of expression the same
2983 (let ((shift-amt (save-excursion
2984 (back-to-indentation)
2988 (setq shift-amt
(- (save-excursion
2989 (back-to-indentation)
2993 (if (eq c-tab-always-indent t
)
2994 (beginning-of-line)) ; FIXME!!! What is this here for? ACM 2005/10/31
3002 (indent-code-rigidly beg end shift-amt
"#")))
3003 ;; Else use c-tab-always-indent to determine behavior.
3005 ;; CASE 1: indent when at column zero or in line's indentation,
3006 ;; otherwise insert a tab
3007 ((not c-tab-always-indent
)
3009 (skip-chars-backward " \t")
3011 (funcall c-insert-tab-function
)
3012 (funcall indent-function
)))
3013 ;; CASE 2: just indent the line
3014 ((eq c-tab-always-indent t
)
3015 (funcall indent-function
))
3016 ;; CASE 3: if in a literal, insert a tab, but always indent the
3019 (if (c-save-buffer-state () (c-in-literal))
3020 (funcall c-insert-tab-function
))
3021 (funcall indent-function
)
3024 (defun c-indent-exp (&optional shutup-p
)
3025 "Indent each line in the balanced expression following point syntactically.
3026 If optional SHUTUP-P is non-nil, no errors are signaled if no
3027 balanced expression is found."
3029 (let ((here (point-marker))
3031 (set-marker-insertion-type here t
)
3033 (let ((start (save-restriction
3034 ;; Find the closest following open paren that
3035 ;; ends on another line.
3036 (narrow-to-region (point-min) (c-point 'eol
))
3037 (let (beg (end (point)))
3038 (while (and (setq beg
(c-down-list-forward end
))
3039 (setq end
(c-up-list-forward beg
))))
3041 (eq (char-syntax (char-before beg
)) ?\
()
3046 (error "Cannot find start of balanced expression to indent"))
3048 (setq end
(c-safe (scan-sexps (point) 1)))
3051 (error "Cannot find end of balanced expression to indent"))
3054 (c-indent-region (point) end
)))))
3056 (set-marker here nil
))))
3058 (defun c-indent-defun ()
3059 "Indent the current top-level declaration or macro syntactically.
3060 In the macro case this also has the effect of realigning any line
3061 continuation backslashes, unless `c-auto-align-backslashes' is nil."
3063 (let ((here (point-marker)) decl-limits
)
3066 (c-save-buffer-state nil
3067 ;; We try to be line oriented, unless there are several
3068 ;; declarations on the same line.
3069 (if (looking-at c-syntactic-eol
)
3070 (c-backward-token-2 1 nil
(c-point 'bol
))
3071 (c-forward-token-2 0 nil
(c-point 'eol
)))
3072 (setq decl-limits
(c-declaration-limits nil
)))
3074 (c-indent-region (car decl-limits
)
3075 (cdr decl-limits
))))
3077 (set-marker here nil
))))
3079 (defun c-indent-region (start end
&optional quiet
)
3080 "Indent syntactically every line whose first char is between START
3081 and END inclusive. If the optional argument QUIET is non-nil then no
3082 syntactic errors are reported, even if `c-report-syntactic-errors' is
3086 (skip-chars-backward " \t\n\r\f\v")
3089 ;; Advance to first nonblank line.
3091 (skip-chars-forward " \t\n\r\f\v")
3092 (setq start
(point))
3094 (setq c-parsing-error
3095 (or (let ((endmark (copy-marker end
))
3096 (c-parsing-error nil
)
3097 ;; shut up any echo msgs on indiv lines
3098 (c-echo-syntactic-information-p nil
)
3099 (in-macro (and c-auto-align-backslashes
3100 (c-save-buffer-state ()
3101 (save-excursion (c-beginning-of-macro)))
3103 (c-fix-backslashes nil
)
3107 (c-progress-init start end
'c-indent-region
)
3110 (< (point) endmark
))
3114 (skip-chars-forward " \t\n")
3116 ;; Get syntax and indent.
3117 (c-save-buffer-state nil
3118 (setq syntax
(c-guess-basic-syntax)))
3119 (if (and c-auto-align-backslashes
3120 (assq 'cpp-macro syntax
))
3121 ;; Record macro start.
3122 (setq in-macro
(point)))
3124 (if (looking-at "\\s *\\\\$")
3126 (c-indent-line syntax t t
)
3127 (if (progn (end-of-line)
3128 (not (eq (char-before) ?
\\)))
3130 ;; Fixup macro backslashes.
3132 (c-backslash-region in-macro
(point) nil
)
3133 (setq in-macro nil
))
3135 (c-indent-line syntax t t
)
3138 (c-backslash-region in-macro
(c-point 'bopl
) nil t
)))
3139 (set-marker endmark nil
)
3140 (c-progress-fini 'c-indent-region
))
3141 (c-echo-parsing-error quiet
))
3144 (defun c-fn-region-is-active-p ()
3145 ;; Function version of the macro for use in places that aren't
3146 ;; compiled, e.g. in the menus.
3147 (c-region-is-active-p))
3149 (defun c-indent-line-or-region (&optional arg region
)
3150 "Indent active region, current line, or block starting on this line.
3151 In Transient Mark mode, when the region is active, reindent the region.
3152 Othewise, with a prefix argument, rigidly reindent the expression
3153 starting on the current line.
3154 Otherwise reindent just the current line."
3156 (list current-prefix-arg
(use-region-p)))
3158 (c-indent-region (region-beginning) (region-end))
3159 (c-indent-command arg
)))
3161 ;; for progress reporting
3162 (defvar c-progress-info nil
)
3164 (defun c-progress-init (start end context
)
3167 ((not c-progress-interval
))
3168 ;; Start the progress update messages. If this Emacs doesn't have
3169 ;; a built-in timer, just be dumb about it.
3170 ((not (fboundp 'current-time
))
3171 (message "Indenting region... (this may take a while)"))
3172 ;; If progress has already been initialized, do nothing. otherwise
3173 ;; initialize the counter with a vector of:
3174 ;; [start end lastsec context]
3176 (t (setq c-progress-info
(vector start
3180 (nth 1 (current-time))
3182 (message "Indenting region..."))
3185 (defun c-progress-update ()
3186 (if (not (and c-progress-info c-progress-interval
))
3188 (let ((now (nth 1 (current-time)))
3189 (start (aref c-progress-info
0))
3190 (end (aref c-progress-info
1))
3191 (lastsecs (aref c-progress-info
2)))
3192 ;; should we update? currently, update happens every 2 seconds,
3193 ;; what's the right value?
3194 (if (< c-progress-interval
(- now lastsecs
))
3196 (message "Indenting region... (%d%% complete)"
3197 (/ (* 100 (- (point) start
)) (- end start
)))
3198 (aset c-progress-info
2 now
)))
3201 (defun c-progress-fini (context)
3202 (if (not c-progress-interval
)
3204 (if (or (eq context
(aref c-progress-info
3))
3207 (set-marker (aref c-progress-info
1) nil
)
3208 (setq c-progress-info nil
)
3209 (message "Indenting region... done")))))
3213 ;;; This page handles insertion and removal of backslashes for C macros.
3215 (defun c-backslash-region (from to delete-flag
&optional line-mode
)
3216 "Insert, align, or delete end-of-line backslashes on the lines in the region.
3217 With no argument, inserts backslashes and aligns existing backslashes.
3218 With an argument, deletes the backslashes. The backslash alignment is
3219 done according to the settings in `c-backslash-column',
3220 `c-backslash-max-column' and `c-auto-align-backslashes'.
3222 This function does not modify blank lines at the start of the region.
3223 If the region ends at the start of a line and the macro doesn't
3224 continue below it, the backslash (if any) at the end of the previous
3227 You can put the region around an entire macro definition and use this
3228 command to conveniently insert and align the necessary backslashes."
3229 (interactive "*r\nP")
3230 (let ((endmark (make-marker))
3231 ;; Keep the backslash trimming functions from changing the
3232 ;; whitespace around point, since in this case it's only the
3233 ;; position of point that tells the indentation of the line.
3234 (point-pos (if (save-excursion
3235 (skip-chars-backward " \t")
3236 (and (bolp) (looking-at "[ \t]*\\\\?$")))
3239 column longest-line-col bs-col-after-end
)
3242 (if (and (not line-mode
) (bobp))
3243 ;; Nothing to do if to is at bob, since we should back up
3244 ;; and there's no line to back up to.
3246 (when (and (not line-mode
) (bolp))
3247 ;; Do not back up the to line if line-mode is set, to make
3248 ;; e.g. c-newline-and-indent consistent regardless whether
3249 ;; the (newline) call leaves point at bol or not.
3254 (set-marker endmark
(point))
3256 (c-delete-backslashes-forward endmark point-pos
))
3257 ;; Set bs-col-after-end to the column of any backslash
3258 ;; following the region, or nil if there is none.
3259 (setq bs-col-after-end
3260 (and (progn (end-of-line)
3261 (eq (char-before) ?
\\))
3262 (= (forward-line 1) 0)
3263 (progn (end-of-line)
3264 (eq (char-before) ?
\\))
3265 (1- (current-column))))
3267 ;; Back up the to line if line-mode is set, since the line
3268 ;; after the newly inserted line break should not be
3269 ;; touched in c-newline-and-indent.
3270 (setq to
(max from
(or (c-safe (c-point 'eopl
)) from
)))
3271 (unless bs-col-after-end
3272 ;; Set bs-col-after-end to non-nil in any case, since we
3273 ;; do not want to delete the backslash at the last line.
3274 (setq bs-col-after-end t
)))
3276 (not c-auto-align-backslashes
))
3278 ;; Compute the smallest column number past the ends of all
3280 (setq longest-line-col
0)
3282 (if bs-col-after-end
3283 ;; Include one more line in the max column
3284 ;; calculation, since the to line will be backslashed
3288 (while (and (>= (point) from
)
3290 (if (eq (char-before) ?
\\)
3292 (skip-chars-backward " \t")
3293 (setq longest-line-col
(max longest-line-col
3294 (1+ (current-column))))
3298 ;; Try to align with surrounding backslashes.
3301 (if (and (not (bobp))
3302 (progn (backward-char)
3303 (eq (char-before) ?
\\)))
3305 (setq column
(1- (current-column)))
3306 (if (numberp bs-col-after-end
)
3307 ;; Both a preceding and a following backslash.
3308 ;; Choose the greatest of them.
3309 (setq column
(max column bs-col-after-end
)))
3311 ;; No preceding backslash. Try to align with one
3312 ;; following the region. Disregard the backslash at the
3313 ;; to line since it's likely to be bogus (e.g. when
3314 ;; called from c-newline-and-indent).
3315 (if (numberp bs-col-after-end
)
3316 (setq column bs-col-after-end
))
3317 ;; Don't modify blank lines at start of region.
3319 (while (and (< (point) to
) (bolp) (eolp))
3321 (if (and column
(< column longest-line-col
))
3322 ;; Don't try to align with surrounding backslashes if
3323 ;; any line is too long.
3326 ;; Impose minimum limit and tab width alignment only if
3327 ;; we can't align with surrounding backslashes.
3328 (if (> (% longest-line-col tab-width
) 0)
3329 (setq longest-line-col
3330 (* (/ (+ longest-line-col tab-width -
1)
3333 (setq column
(max c-backslash-column
3335 ;; Always impose maximum limit.
3336 (setq column
(min column c-backslash-max-column
)))
3337 (if bs-col-after-end
3338 ;; Add backslashes on all lines if the macro continues
3339 ;; after the to line.
3341 (set-marker endmark to
)
3342 (c-append-backslashes-forward endmark column point-pos
))
3343 ;; Add backslashes on all lines except the last, and
3344 ;; remove any on the last line.
3349 (set-marker endmark
(1- (point)))))
3351 (c-append-backslashes-forward endmark column point-pos
)
3352 ;; The function above leaves point on the line
3353 ;; following endmark.
3354 (set-marker endmark
(point)))
3355 (set-marker endmark to
))
3356 (c-delete-backslashes-forward endmark point-pos
)))))
3357 (set-marker endmark nil
)
3358 (if (markerp point-pos
)
3359 (set-marker point-pos nil
))))
3361 (defun c-append-backslashes-forward (to-mark column point-pos
)
3362 (let ((state (parse-partial-sexp (c-point 'bol
) (point))))
3366 (<= (point) to-mark
)
3368 (let ((start (point)) (inserted nil
) end col
)
3370 (unless (eq (char-before) ?
\\)
3373 (setq state
(parse-partial-sexp
3374 start
(point) nil nil state
))
3376 (setq col
(current-column))
3378 ;; Avoid unnecessary changes of the buffer.
3379 (cond ((and (not inserted
) (nth 3 state
))
3380 ;; Don't realign backslashes in string literals
3381 ;; since that would change them.
3388 (skip-chars-backward
3389 " \t" (if (>= (point) point-pos
) point-pos
))
3393 ((and (= col column
)
3394 (memq (char-before) '(?\ ?
\t))))
3398 (or (/= (skip-chars-backward
3399 " \t" (if (>= (point) point-pos
) point-pos
))
3401 (/= (char-after) ?\
)))
3402 (delete-region (point) end
)
3403 (indent-to column
1)))
3405 (zerop (forward-line 1)))
3406 (bolp))) ; forward-line has funny behavior at eob.
3408 ;; Make sure there are backslashes with at least one space in
3412 (<= (point) to-mark
)
3414 (let ((start (point)))
3416 (setq state
(parse-partial-sexp
3417 start
(point) nil nil state
))
3419 (if (eq (char-before) ?
\\)
3420 (unless (nth 3 state
)
3422 (unless (and (memq (char-before) '(?\ ?
\t))
3423 (/= (point) point-pos
))
3426 (if (and (memq (char-before) '(?\ ?
\t))
3427 (/= (point) point-pos
))
3431 (zerop (forward-line 1)))
3432 (bolp)))))) ; forward-line has funny behavior at eob.
3434 (defun c-delete-backslashes-forward (to-mark point-pos
)
3436 (and (<= (point) to-mark
)
3439 (if (eq (char-before) ?
\\)
3442 (progn (backward-char)
3443 (skip-chars-backward " \t" (if (>= (point) point-pos
)
3446 (zerop (forward-line 1)))
3447 (bolp)))) ; forward-line has funny behavior at eob.
3451 ;;; Line breaking and paragraph filling.
3453 (defvar c-auto-fill-prefix t
)
3454 (defvar c-lit-limits nil
)
3455 (defvar c-lit-type nil
)
3457 ;; The filling code is based on a simple theory; leave the intricacies
3458 ;; of the text handling to the currently active mode for that
3459 ;; (e.g. adaptive-fill-mode or filladapt-mode) and do as little as
3460 ;; possible to make them work correctly wrt the comment and string
3461 ;; separators, one-line paragraphs etc. Unfortunately, when it comes
3462 ;; to it, there's quite a lot of special cases to handle which makes
3463 ;; the code anything but simple. The intention is that it will work
3464 ;; with any well-written text filling package that preserves a fill
3467 ;; We temporarily mask comment starters and enders as necessary for
3468 ;; the filling code to do its job on a seemingly normal text block.
3469 ;; We do _not_ mask the fill prefix, so it's up to the filling code to
3470 ;; preserve it correctly (especially important when filling C++ style
3471 ;; line comments). By default, we set up and use adaptive-fill-mode,
3472 ;; which is standard in all supported Emacs flavors.
3474 (defun c-guess-fill-prefix (lit-limits lit-type
)
3475 ;; Determine the appropriate comment fill prefix for a block or line
3476 ;; comment. Return a cons of the prefix string and the column where
3477 ;; it ends. If fill-prefix is set, it'll override. Note that this
3478 ;; function also uses the value of point in some heuristics.
3480 ;; This function might do hidden buffer changes.
3482 (let* ((here (point))
3483 (prefix-regexp (concat "[ \t]*\\("
3484 c-current-comment-prefix
3486 (comment-start-regexp (if (eq lit-type
'c
++)
3488 comment-start-skip
))
3489 prefix-line comment-prefix res comment-text-end
)
3493 (setq res
(cons fill-prefix
3494 ;; Ugly way of getting the column after the fill
3495 ;; prefix; it'd be nice with a current-column
3496 ;; that works on strings..
3497 (let ((start (point)))
3500 (insert-and-inherit "\n" fill-prefix
)
3502 (delete-region start
(point)))))))
3506 ;; Set fallback for comment-prefix if none is found.
3507 (setq comment-prefix
"// "
3508 comment-text-end
(cdr lit-limits
))
3511 (if (> (point) (car lit-limits
))
3512 ;; The current line is not the comment starter, so the
3513 ;; comment has more than one line, and it can therefore be
3514 ;; used to find the comment fill prefix.
3515 (setq prefix-line
(point))
3517 (goto-char (car lit-limits
))
3518 (if (and (= (forward-line 1) 0)
3519 (< (point) (cdr lit-limits
)))
3520 ;; The line after the comment starter is inside the
3521 ;; comment, so we can use it.
3522 (setq prefix-line
(point))
3524 ;; The comment is only one line. Take the comment prefix
3525 ;; from it and keep the indentation.
3526 (goto-char (car lit-limits
))
3527 (if (looking-at prefix-regexp
)
3528 (goto-char (match-end 0))
3530 (skip-chars-forward " \t"))
3533 (if (eq (c-point 'boi
) (car lit-limits
))
3534 ;; There is only whitespace before the comment
3535 ;; starter; take the prefix straight from this line.
3536 (setq str
(buffer-substring-no-properties
3537 (c-point 'bol
) (point))
3538 col
(current-column))
3540 ;; There is code before the comment starter, so we
3541 ;; have to temporarily insert and indent a new line to
3542 ;; get the right space/tab mix in the indentation.
3543 (let ((prefix-len (- (point) (car lit-limits
)))
3547 (goto-char (car lit-limits
))
3548 (indent-to (prog1 (current-column)
3551 (forward-char prefix-len
)
3552 (setq str
(buffer-substring-no-properties
3553 (c-point 'bol
) (point))
3554 col
(current-column)))
3555 (delete-region (car lit-limits
) tmp
))))
3558 (if (or (string-match "\\s \\'" str
) (not (eolp)))
3560 ;; The prefix ends the line with no whitespace
3561 ;; after it. Default to a single space.
3562 (cons (concat str
" ") (1+ col
))))
3566 (setq comment-text-end
3568 (goto-char (- (cdr lit-limits
) 2))
3569 (if (looking-at "\\*/") (point) (cdr lit-limits
))))
3573 (if (and (> (point) (car lit-limits
))
3574 (not (and (looking-at "[ \t]*\\*/")
3575 (eq (cdr lit-limits
) (match-end 0)))))
3576 ;; The current line is not the comment starter and
3577 ;; contains more than just the ender, so it's good enough
3578 ;; to be used for the comment fill prefix.
3579 (setq prefix-line
(point))
3580 (goto-char (car lit-limits
))
3582 (cond ((or (/= (forward-line 1) 0)
3583 (>= (point) (cdr lit-limits
))
3584 (and (looking-at "[ \t]*\\*/")
3585 (eq (cdr lit-limits
) (match-end 0)))
3586 (and (looking-at prefix-regexp
)
3587 (<= (1- (cdr lit-limits
)) (match-end 0))))
3588 ;; The comment is either one line or the next line contains
3589 ;; just the comment ender. In this case we have no
3590 ;; information about a suitable comment prefix, so we resort
3591 ;; to c-block-comment-prefix.
3592 (setq comment-prefix
(or c-block-comment-prefix
"")))
3595 ;; The point was on the comment opener line, so we might want
3596 ;; to treat this as a not yet closed comment.
3598 (if (and (match-beginning 1)
3599 (/= (match-beginning 1) (match-end 1)))
3600 ;; Above `prefix-regexp' matched a nonempty prefix on the
3601 ;; second line, so let's use it. Normally it should do
3602 ;; to set `prefix-line' and let the code below pick up
3603 ;; the whole prefix, but if there's no text after the
3604 ;; match then it will probably fall back to no prefix at
3605 ;; all if the comment isn't closed yet, so in that case
3606 ;; it's better to force use of the prefix matched now.
3607 (if (= (match-end 0) (c-point 'eol
))
3608 (setq comment-prefix
(match-string 1))
3609 (setq prefix-line
(point)))
3611 ;; There's no nonempty prefix on the line after the
3612 ;; comment opener. If the line is empty, or if the
3613 ;; text on it has less or equal indentation than the
3614 ;; comment starter we assume it's an unclosed
3615 ;; comment starter, i.e. that
3616 ;; `c-block-comment-prefix' should be used.
3617 ;; Otherwise we assume it's a closed comment where
3618 ;; the prefix really is the empty string.
3619 ;; E.g. this is an unclosed comment:
3630 ;; (Looking for the presence of the comment closer
3631 ;; rarely works since it's probably the closer of
3632 ;; some comment further down when the comment
3633 ;; really is unclosed.)
3634 (if (<= (save-excursion (back-to-indentation)
3636 (save-excursion (goto-char (car lit-limits
))
3638 (setq comment-prefix
(or c-block-comment-prefix
""))
3639 (setq prefix-line
(point)))))
3642 ;; Otherwise the line after the comment starter is good
3643 ;; enough to find the prefix in.
3644 (setq prefix-line
(point))))
3646 (when comment-prefix
3647 ;; Haven't got the comment prefix on any real line that we
3648 ;; can take it from, so we have to temporarily insert
3649 ;; `comment-prefix' on a line and indent it to find the
3650 ;; correct column and the correct mix of tabs and spaces.
3652 (let (tmp-pre tmp-post
)
3656 (goto-char (car lit-limits
))
3657 (if (looking-at comment-start-regexp
)
3658 (goto-char (min (match-end 0)
3661 (skip-chars-forward " \t"))
3663 (when (eq (char-syntax (char-before)) ?\
)
3664 ;; If there's ws on the current line, we'll use it
3665 ;; instead of what's ending comment-prefix.
3666 (setq comment-prefix
3667 (concat (substring comment-prefix
3671 (buffer-substring-no-properties
3673 (skip-chars-backward " \t")
3677 (setq tmp-pre
(point-marker))
3679 ;; We insert an extra non-whitespace character
3680 ;; before the line break and after comment-prefix in
3681 ;; case it's "" or ends with whitespace.
3682 (insert-and-inherit "x\n" comment-prefix
"x")
3683 (setq tmp-post
(point-marker))
3685 (indent-according-to-mode)
3687 (goto-char (1- tmp-post
))
3688 (cons (buffer-substring-no-properties
3689 (c-point 'bol
) (point))
3693 (delete-region tmp-pre tmp-post
)
3694 (set-marker tmp-pre nil
)
3695 (set-marker tmp-post nil
))))))))))
3697 (or res
; Found a good prefix above.
3700 ;; prefix-line is the bol of a line on which we should try
3701 ;; to find the prefix.
3702 (let* (fb-string fb-endpos
; Contains any fallback prefix found.
3705 (when (and (looking-at prefix-regexp
)
3706 (<= (match-end 0) comment-text-end
))
3707 (unless (eq (match-end 0) (c-point 'eol
))
3708 ;; The match is fine if there's text after it.
3709 (throw 'found
(cons (buffer-substring-no-properties
3710 (match-beginning 0) (match-end 0))
3711 (progn (goto-char (match-end 0))
3712 (current-column)))))
3714 ;; This match is better than nothing, so let's
3715 ;; remember it in case nothing better is found
3717 (setq fb-string
(buffer-substring-no-properties
3718 (match-beginning 0) (match-end 0))
3719 fb-endpos
(match-end 0)))
3723 ;; Search for a line which has text after the prefix
3724 ;; so that we get the proper amount of whitespace
3725 ;; after it. We start with the current line, then
3726 ;; search backwards, then forwards.
3728 (goto-char prefix-line
)
3729 (when (and (funcall test-line
)
3730 (or (/= (match-end 1) (match-end 0))
3731 ;; The whitespace is sucked up by the
3732 ;; first [ \t]* glob if the prefix is empty.
3733 (and (= (match-beginning 1) (match-end 1))
3734 (/= (match-beginning 0) (match-end 0)))))
3735 ;; If the current line doesn't have text but do
3736 ;; have whitespace after the prefix, we'll use it.
3737 (throw 'found
(cons fb-string
3738 (progn (goto-char fb-endpos
)
3739 (current-column)))))
3741 (if (eq lit-type
'c
++)
3742 ;; For line comments we can search up to and
3743 ;; including the first line.
3744 (while (and (zerop (forward-line -
1))
3745 (>= (point) (car lit-limits
)))
3746 (funcall test-line
))
3747 ;; For block comments we must stop before the
3749 (while (and (zerop (forward-line -
1))
3750 (> (point) (car lit-limits
)))
3751 (funcall test-line
)))
3753 (goto-char prefix-line
)
3754 (while (and (zerop (forward-line 1))
3755 (< (point) (cdr lit-limits
)))
3756 (funcall test-line
))
3758 (goto-char prefix-line
)
3762 ;; A good line wasn't found, but at least we have a
3763 ;; fallback that matches the comment prefix regexp.
3764 (cond ((or (string-match "\\s \\'" fb-string
)
3766 (goto-char fb-endpos
)
3768 ;; There are ws or text after the prefix, so
3770 (cons fb-string
(current-column)))
3773 ;; Check if there's any whitespace padding
3774 ;; on the comment start line that we can
3775 ;; use after the prefix.
3776 (goto-char (car lit-limits
))
3777 (if (looking-at comment-start-regexp
)
3778 (goto-char (match-end 0))
3780 (skip-chars-forward " \t"))
3782 (eq (char-syntax (char-before)) ?\
)))
3784 (setq fb-string
(buffer-substring-no-properties
3786 (skip-chars-backward " \t")
3789 (goto-char fb-endpos
)
3790 (skip-chars-backward " \t")
3792 (let ((tmp (point)))
3793 ;; Got to mess in the buffer once again to
3794 ;; ensure the column gets correct. :P
3797 (insert-and-inherit fb-string
)
3798 (cons (buffer-substring-no-properties
3802 (delete-region tmp
(point)))))
3805 ;; Last resort: Just add a single space after
3807 (cons (concat fb-string
" ")
3808 (progn (goto-char fb-endpos
)
3809 (1+ (current-column)))))))
3811 ;; The line doesn't match the comment prefix regexp.
3813 ;; We have a fallback for line comments that we must use.
3814 (cons (concat (buffer-substring-no-properties
3815 prefix-line
(c-point 'boi
))
3817 (progn (back-to-indentation)
3818 (+ (current-column) (length comment-prefix
))))
3820 ;; Assume we are dealing with a "free text" block
3821 ;; comment where the lines doesn't have any comment
3822 ;; prefix at all and we should just fill it as
3827 (defun c-mask-paragraph (fill-paragraph apply-outside-literal fun
&rest args
)
3828 ;; Calls FUN with ARGS ar arguments while the current paragraph is
3829 ;; masked to allow adaptive filling to work correctly. That
3830 ;; includes narrowing the buffer and, if point is inside a comment,
3831 ;; masking the comment starter and ender appropriately.
3833 ;; FILL-PARAGRAPH is non-nil if called for whole paragraph filling.
3834 ;; The position of point is then less significant when doing masking
3837 ;; If APPLY-OUTSIDE-LITERAL is nil then the function will be called
3838 ;; only if the point turns out to be inside a comment or a string.
3840 ;; Note that this function does not do any hidden buffer changes.
3843 ;; beg and end limit the region to narrow. end is a marker.
3845 ;; tmp-pre and tmp-post mark strings that are temporarily
3846 ;; inserted at the start and end of the region. tmp-pre is a
3847 ;; cons of the positions of the prepended string. tmp-post is
3848 ;; a marker pointing to the single character of the appended
3851 ;; If hang-ender-stuck isn't nil, the comment ender is
3852 ;; hanging. In that case it's set to the number of spaces
3853 ;; that should be between the text and the ender.
3855 ;; auto-fill-spaces is the exact sequence of whitespace between a
3856 ;; comment's last word and the comment ender, temporarily replaced
3857 ;; with 'x's before calling FUN when FILL-PARAGRAPH is nil.
3860 (c-lit-limits c-lit-limits
)
3861 (c-lit-type c-lit-type
))
3863 ;; Restore point on undo. It's necessary since we do a lot of
3864 ;; hidden inserts and deletes below that should be as transparent
3866 (if (and buffer-undo-list
(not (eq buffer-undo-list t
)))
3867 (setq buffer-undo-list
(cons (point) buffer-undo-list
)))
3869 ;; Determine the limits and type of the containing literal (if any):
3870 ;; C-LIT-LIMITS, C-LIT-TYPE; and the limits of the current paragraph:
3872 (c-save-buffer-state ()
3874 ;; Widen to catch comment limits correctly.
3876 (unless c-lit-limits
3877 (setq c-lit-limits
(c-literal-limits nil fill-paragraph
)))
3878 (setq c-lit-limits
(c-collect-line-comments c-lit-limits
))
3880 (setq c-lit-type
(c-literal-type c-lit-limits
))))
3883 (unless (c-safe (backward-char)
3887 (forward-paragraph))
3888 (setq end
(point-marker)))
3890 (unless (c-safe (forward-char)
3891 (backward-paragraph)
3894 (backward-paragraph))
3895 (setq beg
(point))))
3899 ;; For each of the possible types of text (string, C comment ...)
3900 ;; determine BEG and END, the region we will narrow to. If we're in
3901 ;; a literal, constrain BEG and END to the limits of this literal.
3903 ;; For some of these text types, particularly a block comment, we
3904 ;; may need to massage whitespace near literal delimiters, so that
3905 ;; these don't get filled inappropriately.
3908 ((eq c-lit-type
'c
++) ; Line comment.
3910 ;; Limit to the comment or paragraph end, whichever
3912 (set-marker end
(min end
(cdr c-lit-limits
)))
3914 (when (<= beg
(car c-lit-limits
))
3915 ;; The region includes the comment starter, so we must
3917 (goto-char (car c-lit-limits
))
3918 (back-to-indentation)
3919 (if (eq (point) (car c-lit-limits
))
3920 ;; Include the first line in the region.
3921 (setq beg
(c-point 'bol
))
3922 ;; The first line contains code before the
3923 ;; comment. We must fake a line that doesn't.
3926 (setq apply-outside-literal t
))
3928 ((eq c-lit-type
'c
) ; Block comment.
3930 (or (> end
(cdr c-lit-limits
))
3931 (and (= end
(cdr c-lit-limits
))
3932 (eq (char-before end
) ?
/)
3933 (eq (char-before (1- end
)) ?
*)
3935 (> (- (cdr c-lit-limits
) (car c-lit-limits
)) 3)))
3936 ;; There is a comment ender, and the region includes it. If
3937 ;; it's on its own line, it stays on its own line. If it's got
3938 ;; company on the line, it keeps (at least one word of) it.
3939 ;; "=====*/" counts as a comment ender here, but "===== */"
3940 ;; doesn't and "foo*/" doesn't.
3943 (goto-char (cdr c-lit-limits
))
3945 ;; The following conjunct was added to avoid an
3946 ;; "Invalid search bound (wrong side of point)"
3947 ;; error in the subsequent re-search. Maybe
3948 ;; another fix would be needed (2007-12-08).
3949 (and (> (- (cdr c-lit-limits
) 2) (point))
3950 (search-forward-regexp
3951 (concat "\\=[ \t]*\\(" c-current-comment-prefix
"\\)")
3952 (- (cdr c-lit-limits
) 2) t
)
3953 (not (search-forward-regexp
3955 (- (cdr c-lit-limits
) 2) 'limit
))
3956 ;; The comment ender IS on its own line. Exclude
3957 ;; this line from the filling.
3958 (set-marker end
(c-point 'bol
))))
3960 ;; The comment ender is hanging. Replace all space between it
3961 ;; and the last word either by one or two 'x's (when
3962 ;; FILL-PARAGRAPH is non-nil), or a row of x's the same width
3963 ;; as the whitespace (when auto filling), and include it in
3964 ;; the region. We'll change them back to whitespace
3965 ;; afterwards. The effect of this is to glue the comment
3966 ;; ender to the last word in the comment during filling.
3967 (let* ((ender-start (save-excursion
3968 (goto-char (cdr c-lit-limits
))
3969 (skip-syntax-backward "^w ")
3971 (ender-column (save-excursion
3972 (goto-char ender-start
)
3974 (point-rel (- ender-start here
))
3978 ;; Insert a CR after the "*/", adjust END
3979 (goto-char (cdr c-lit-limits
))
3980 (setq tmp-post
(point-marker))
3982 (set-marker end
(point))
3984 (forward-line -
1) ; last line of the comment
3985 (if (and (looking-at (concat "[ \t]*\\(\\("
3986 c-current-comment-prefix
3988 (eq ender-start
(match-end 0)))
3989 ;; The comment ender is prefixed by nothing but a
3990 ;; comment line prefix. IS THIS POSSIBLE? (ACM,
3991 ;; 2006/4/28). Remove it along with surrounding ws.
3992 (setq spaces
(- (match-end 1) (match-end 2)))
3993 (goto-char ender-start
))
3994 (skip-chars-backward " \t\r\n") ; Surely this can be
3995 ; " \t"? "*/" is NOT alone on the line (ACM, 2005/8/18)
3997 ;; What's being tested here? 2006/4/20. FIXME!!!
3998 (if (/= (point) ender-start
)
4000 (if (<= here
(point))
4001 ;; Don't adjust point below if it's
4002 ;; before the string we replace.
4003 (setq point-rel -
1))
4004 ;; Keep one or two spaces between the
4005 ;; text and the ender, depending on how
4006 ;; many there are now.
4008 (setq spaces
(- ender-column
(current-column))))
4009 (setq auto-fill-spaces
(c-delete-and-extract-region
4010 (point) ender-start
))
4011 ;; paragraph filling condenses multiple spaces to
4012 ;; single or double spaces. auto-fill doesn't.
4017 (if sentence-end-double-space
2 1))
4019 ;; Insert the filler first to keep marks right.
4020 (insert-char ?x spaces t
)
4021 (setq hang-ender-stuck spaces
)
4023 (and (>= point-rel
0)
4024 (- (point) (min point-rel spaces
)))))
4025 (setq point-rel nil
)))
4028 ;; Point was in the middle of the string we
4029 ;; replaced above, so put it back in the same
4030 ;; relative position, counting from the end.
4031 (goto-char point-rel
)))
4034 (when (<= beg
(car c-lit-limits
))
4035 ;; The region includes the comment starter.
4037 (goto-char (car c-lit-limits
))
4038 (if (looking-at (concat "\\(" comment-start-skip
"\\)$"))
4039 ;; Begin with the next line.
4040 (setq beg
(c-point 'bonl
))
4041 ;; Fake the fill prefix in the first line.
4044 (setq apply-outside-literal t
))
4046 ((eq c-lit-type
'string
) ; String.
4048 (when (>= end
(cdr c-lit-limits
))
4049 (goto-char (1- (cdr c-lit-limits
)))
4050 (setq tmp-post
(point-marker))
4052 (set-marker end
(point)))
4053 (when (<= beg
(car c-lit-limits
))
4054 (goto-char (1+ (car c-lit-limits
)))
4055 (setq beg
(if (looking-at "\\\\$")
4056 ;; Leave the start line if it's
4057 ;; nothing but an escaped newline.
4060 (setq apply-outside-literal t
))
4062 ((eq c-lit-type
'pound
) ; Macro
4063 ;; Narrow to the macro limits if they are nearer than the
4064 ;; paragraph limits. Don't know if this is necessary but
4065 ;; do it for completeness sake (doing auto filling at all
4066 ;; inside macros is bogus to begin with since the line
4067 ;; continuation backslashes aren't handled).
4069 (c-save-buffer-state ()
4070 (c-beginning-of-macro)
4077 (set-marker end
(point))))))
4080 ;; Try to avoid comments and macros in the paragraph to
4081 ;; avoid that the adaptive fill mode gets the prefix from
4083 (c-save-buffer-state nil
4086 (c-forward-syntactic-ws end
)
4090 (c-backward-syntactic-ws beg
)
4092 (set-marker end
(point))))))
4095 ;; Temporarily insert the fill prefix after the comment
4096 ;; starter so that the first line looks like any other
4097 ;; comment line in the narrowed region.
4098 (setq fill
(c-save-buffer-state nil
4099 (c-guess-fill-prefix c-lit-limits c-lit-type
)))
4100 (unless (string-match (concat "\\`[ \t]*\\("
4101 c-current-comment-prefix
4104 ;; Oops, the prefix doesn't match the comment prefix
4105 ;; regexp. This could produce very confusing
4106 ;; results with adaptive fill packages together with
4107 ;; the insert prefix magic below, since the prefix
4108 ;; often doesn't appear at all. So let's warn about
4111 Warning: Regexp from `c-comment-prefix-regexp' doesn't match the comment prefix %S"
4113 ;; Find the right spot on the line, break it, insert
4114 ;; the fill prefix and make sure we're back in the
4115 ;; same column by temporarily prefixing the first word
4116 ;; with a number of 'x'.
4118 (goto-char (car c-lit-limits
))
4119 (if (looking-at (if (eq c-lit-type
'c
++)
4120 c-current-comment-prefix
4121 comment-start-skip
))
4122 (goto-char (match-end 0))
4124 (skip-chars-forward " \t"))
4125 (while (and (< (current-column) (cdr fill
))
4128 (let ((col (current-column)))
4129 (setq beg
(1+ (point))
4130 tmp-pre
(list (point)))
4133 (insert-and-inherit "\n" (car fill
))
4134 (insert-char ?x
(- col
(current-column)) t
))
4135 (setcdr tmp-pre
(point))))))
4137 (when apply-outside-literal
4138 ;; `apply-outside-literal' is always set to t here if
4139 ;; we're inside a literal.
4143 ;; Kludge: If the function that adapts the fill prefix
4144 ;; doesn't produce the required comment starter for
4145 ;; line comments, then force it by setting fill-prefix.
4146 (when (and (eq c-lit-type
'c
++)
4147 ;; Kludge the kludge: filladapt-mode doesn't
4148 ;; have this problem, but it currently
4149 ;; doesn't override fill-context-prefix
4151 (not (and (boundp 'filladapt-mode
)
4155 (or (fill-context-prefix beg end
)
4157 (c-save-buffer-state nil
4158 (car (or fill
(c-guess-fill-prefix
4159 c-lit-limits c-lit-type
)))))))
4161 ;; Save the relative position of point if it's outside the
4162 ;; region we're going to narrow. Want to restore it in that
4163 ;; case, but otherwise it should be moved according to the
4165 (point-rel (cond ((< (point) beg
) (- (point) beg
))
4166 ((> (point) end
) (- (point) end
)))))
4168 ;; Preparations finally done! Now we can call the
4172 (narrow-to-region beg end
)
4175 ;; Restore point if it was outside the region.
4177 (goto-char (+ beg point-rel
))
4178 (goto-char (+ end point-rel
))))))))
4180 (when (consp tmp-pre
)
4181 (delete-region (car tmp-pre
) (cdr tmp-pre
)))
4185 (goto-char tmp-post
)
4187 (when hang-ender-stuck
4188 ;; Preserve point even if it's in the middle of the string
4189 ;; we replace; save-excursion doesn't work in that case.
4191 (goto-char tmp-post
)
4192 (skip-syntax-backward "^w ")
4193 (forward-char (- hang-ender-stuck
))
4194 (if (or fill-paragraph
(not auto-fill-spaces
))
4195 (insert-char ?\ hang-ender-stuck t
)
4196 (insert auto-fill-spaces
)
4197 (setq here
(- here
(- hang-ender-stuck
(length auto-fill-spaces
)))))
4198 (delete-char hang-ender-stuck
)
4200 (set-marker tmp-post nil
))
4202 (set-marker end nil
))))
4204 (defun c-fill-paragraph (&optional arg
)
4205 "Like \\[fill-paragraph] but handles C and C++ style comments.
4206 If any of the current line is a comment or within a comment, fill the
4207 comment or the paragraph of it that point is in, preserving the
4208 comment indentation or line-starting decorations (see the
4209 `c-comment-prefix-regexp' and `c-block-comment-prefix' variables for
4212 If point is inside multiline string literal, fill it. This currently
4213 does not respect escaped newlines, except for the special case when it
4214 is the very first thing in the string. The intended use for this rule
4215 is in situations like the following:
4217 char description[] = \"\\
4218 A very long description of something that you want to fill to make
4219 nicely formatted output.\"\;
4221 If point is in any other situation, i.e. in normal code, do nothing.
4223 Optional prefix ARG means justify paragraph as well."
4225 (let ((fill-paragraph-function
4226 ;; Avoid infinite recursion.
4227 (if (not (eq fill-paragraph-function
'c-fill-paragraph
))
4228 fill-paragraph-function
)))
4229 (c-mask-paragraph t nil
'fill-paragraph arg
))
4230 ;; Always return t. This has the effect that if filling isn't done
4231 ;; above, it isn't done at all, and it's therefore effectively
4232 ;; disabled in normal code.
4235 (defun c-do-auto-fill ()
4236 ;; Do automatic filling if not inside a context where it should be
4238 (let ((c-auto-fill-prefix
4239 ;; The decision whether the line should be broken is actually
4240 ;; done in c-indent-new-comment-line, which do-auto-fill
4241 ;; calls to break lines. We just set this special variable
4242 ;; so that we'll know when we're called from there. It's
4243 ;; also used to detect whether fill-prefix is user set or
4244 ;; generated automatically by do-auto-fill.
4246 (c-mask-paragraph nil t
'do-auto-fill
)))
4248 (defun c-indent-new-comment-line (&optional soft allow-auto-fill
)
4249 "Break line at point and indent, continuing comment or macro if within one.
4250 If inside a comment and `comment-multi-line' is non-nil, the
4251 indentation and line prefix are preserved (see the
4252 `c-comment-prefix-regexp' and `c-block-comment-prefix' variables for
4253 details). If inside a single line comment and `comment-multi-line' is
4254 nil, a new comment of the same type is started on the next line and
4255 indented as appropriate for comments. If inside a macro, a line
4256 continuation backslash is inserted and aligned as appropriate, and the
4257 new line is indented according to `c-syntactic-indentation'.
4259 If a fill prefix is specified, it overrides all the above."
4260 ;; allow-auto-fill is used from c-context-line-break to allow auto
4261 ;; filling to break the line more than once. Since this function is
4262 ;; used from auto-fill itself, that's normally disabled to avoid
4263 ;; unnecessary recursion.
4265 (let ((fill-prefix fill-prefix
)
4268 (delete-horizontal-space)
4270 (insert-and-inherit ?
\n)
4271 (newline (if allow-auto-fill nil
1)))))
4272 ;; Already know the literal type and limits when called from
4273 ;; c-context-line-break.
4274 (c-lit-limits c-lit-limits
)
4275 (c-lit-type c-lit-type
)
4276 (c-macro-start c-macro-start
))
4278 (c-save-buffer-state ()
4279 (when (not (eq c-auto-fill-prefix t
))
4280 ;; Called from do-auto-fill.
4281 (unless c-lit-limits
4282 (setq c-lit-limits
(c-literal-limits nil nil t
)))
4284 (setq c-lit-type
(c-literal-type c-lit-limits
)))
4285 (if (memq (cond ((c-query-and-set-macro-start) 'cpp
)
4286 ((null c-lit-type
) 'code
)
4289 (setq fill-prefix t
) ; Used as flag in the cond.
4290 (if (and (null c-auto-fill-prefix
)
4292 (<= (c-point 'bol
) (car c-lit-limits
)))
4293 ;; The adaptive fill function has generated a prefix, but
4294 ;; we're on the first line in a block comment so it'll be
4295 ;; wrong. Ignore it to guess a better one below.
4296 (setq fill-prefix nil
)
4297 (when (and (eq c-lit-type
'c
++)
4298 (not (string-match (concat "\\`[ \t]*"
4299 c-line-comment-starter
)
4300 (or fill-prefix
""))))
4301 ;; Kludge: If the function that adapted the fill prefix
4302 ;; doesn't produce the required comment starter for line
4303 ;; comments, then we ignore it.
4304 (setq fill-prefix nil
)))
4307 (cond ((eq fill-prefix t
)
4308 ;; A call from do-auto-fill which should be ignored.
4311 ;; A fill-prefix overrides anything.
4312 (funcall do-line-break
)
4313 (insert-and-inherit fill-prefix
))
4314 ((c-save-buffer-state ()
4315 (unless c-lit-limits
4316 (setq c-lit-limits
(c-literal-limits)))
4318 (setq c-lit-type
(c-literal-type c-lit-limits
)))
4319 (memq c-lit-type
'(c c
++)))
4320 ;; Some sort of comment.
4321 (if (or comment-multi-line
4323 (goto-char (car c-lit-limits
))
4325 (< (point) (cdr c-lit-limits
))))
4326 ;; Inside a comment that should be continued.
4327 (let ((fill (c-save-buffer-state nil
4328 (c-guess-fill-prefix
4330 (c-collect-line-comments c-lit-limits
))
4333 (start-col (current-column))
4335 (or (and (eq c-lit-type
'c
)
4337 (goto-char (- (cdr c-lit-limits
) 2))
4338 (if (looking-at "\\*/") (point))))
4339 (cdr c-lit-limits
))))
4340 ;; Skip forward past the fill prefix in case
4341 ;; we're standing in it.
4343 ;; FIXME: This doesn't work well in cases like
4345 ;; /* Bla bla bla bla bla
4348 ;; If point is on the 'B' then the line will be
4349 ;; broken after "Bla b".
4351 ;; If we have an empty comment, /* */, the next
4352 ;; lot of code pushes point to the */. We fix
4353 ;; this by never allowing point to end up to the
4354 ;; right of where it started.
4355 (while (and (< (current-column) (cdr fill
))
4358 (if (and (> (point) comment-text-end
)
4359 (> (c-point 'bol
) (car c-lit-limits
)))
4361 ;; The skip takes us out of the (block)
4362 ;; comment; insert the fill prefix at bol
4363 ;; instead and keep the position.
4364 (setq pos
(copy-marker pos t
))
4366 (insert-and-inherit (car fill
))
4367 (if soft
(insert-and-inherit ?
\n) (newline 1))
4369 (set-marker pos nil
))
4370 ;; Don't break in the middle of a comment starter
4372 (cond ((> (point) comment-text-end
)
4373 (goto-char comment-text-end
))
4374 ((< (point) (+ (car c-lit-limits
) 2))
4375 (goto-char (+ (car c-lit-limits
) 2))))
4376 (funcall do-line-break
)
4377 (insert-and-inherit (car fill
))
4378 (if (> (current-column) start-col
)
4379 (move-to-column start-col
)))) ; can this hit the
4381 ;; Inside a comment that should be broken.
4382 (let ((comment-start comment-start
)
4383 (comment-end comment-end
)
4385 (if (eq c-lit-type
'c
)
4386 (unless (string-match "[ \t]*/\\*" comment-start
)
4387 (setq comment-start
"/* " comment-end
" */"))
4388 (unless (string-match "[ \t]*//" comment-start
)
4389 (setq comment-start
"// " comment-end
"")))
4390 (setq col
(save-excursion
4391 (back-to-indentation)
4393 (funcall do-line-break
)
4394 (when (and comment-end
(not (equal comment-end
"")))
4396 (insert-and-inherit comment-end
)
4398 ;; c-comment-indent may look at the current
4399 ;; indentation, so let's start out with the same
4400 ;; indentation as the previous one.
4402 (insert-and-inherit comment-start
)
4403 (indent-for-comment))))
4404 ((c-query-and-set-macro-start)
4406 (unless (looking-at "[ \t]*\\\\$")
4407 ;; Do not clobber the alignment of the line continuation
4408 ;; slash; c-backslash-region might look at it.
4409 (delete-horizontal-space))
4410 ;; Got an asymmetry here: In normal code this command
4411 ;; doesn't indent the next line syntactically, and otoh a
4412 ;; normal syntactically indenting newline doesn't continue
4414 (c-newline-and-indent (if allow-auto-fill nil
1)))
4416 ;; Somewhere else in the code.
4417 (let ((col (save-excursion
4419 (while (and (looking-at "[ \t]*\\\\?$")
4420 (= (forward-line -
1) 0)))
4421 (current-indentation))))
4422 (funcall do-line-break
)
4423 (indent-to col
))))))
4425 (defalias 'c-comment-line-break-function
'c-indent-new-comment-line
)
4426 (make-obsolete 'c-comment-line-break-function
'c-indent-new-comment-line
)
4428 ;; advice for indent-new-comment-line for older Emacsen
4429 (unless (boundp 'comment-line-break-function
)
4430 (defvar c-inside-line-break-advice nil
)
4431 (defadvice indent-new-comment-line
(around c-line-break-advice
4432 activate preactivate
)
4433 "Call `c-indent-new-comment-line' if in CC Mode."
4434 (if (or c-inside-line-break-advice
4435 (not c-buffer-is-cc-mode
))
4437 (let ((c-inside-line-break-advice t
))
4438 (c-indent-new-comment-line (ad-get-arg 0))))))
4440 (defun c-context-line-break ()
4441 "Do a line break suitable to the context.
4443 When point is outside a comment or macro, insert a newline and indent
4444 according to the syntactic context, unless `c-syntactic-indentation'
4445 is nil, in which case the new line is indented as the previous
4446 non-empty line instead.
4448 When point is inside the content of a preprocessor directive, a line
4449 continuation backslash is inserted before the line break and aligned
4450 appropriately. The end of the cpp directive doesn't count as inside
4453 When point is inside a comment, continue it with the appropriate
4454 comment prefix (see the `c-comment-prefix-regexp' and
4455 `c-block-comment-prefix' variables for details). The end of a
4456 C++-style line comment doesn't count as inside it.
4458 When point is inside a string, only insert a backslash when it is also
4459 inside a preprocessor directive."
4462 (let* (c-lit-limits c-lit-type
4463 (c-macro-start c-macro-start
))
4465 (c-save-buffer-state ()
4466 (setq c-lit-limits
(c-literal-limits nil nil t
)
4467 c-lit-type
(c-literal-type c-lit-limits
))
4468 (when (eq c-lit-type
'c
++)
4469 (setq c-lit-limits
(c-collect-line-comments c-lit-limits
)))
4470 (c-query-and-set-macro-start))
4473 ((or (eq c-lit-type
'c
)
4474 (and (eq c-lit-type
'c
++) ; C++ comment, but not at the very end of it.
4476 (skip-chars-forward " \t")
4478 (1- (cdr c-lit-limits
))))
4479 (and (numberp c-macro-start
) ; Macro, but not at the very end of
4480 ; it, not in a string, and not in the
4482 (not (eq c-lit-type
'string
))
4483 (or (not (looking-at "\\s *$"))
4484 (eq (char-before) ?
\\))
4486 (goto-char c-macro-start
)
4487 (if (looking-at c-opt-cpp-start
)
4488 (goto-char (match-end 0)))
4491 (let ((comment-multi-line t
)
4493 (c-indent-new-comment-line nil t
)))
4495 ((eq c-lit-type
'string
)
4496 (if (and (numberp c-macro-start
)
4497 (not (eq (char-before) ?
\\)))
4501 (t (delete-horizontal-space)
4503 ;; c-indent-line may look at the current indentation, so let's
4504 ;; start out with the same indentation as the previous line.
4505 (let ((col (save-excursion
4508 (while (and (looking-at "[ \t]*\\\\?$")
4509 (= (forward-line -
1) 0)))
4510 (current-indentation))))
4512 (indent-according-to-mode)))))
4514 (defun c-context-open-line ()
4515 "Insert a line break suitable to the context and leave point before it.
4516 This is the `c-context-line-break' equivalent to `open-line', which is
4517 normally bound to C-o. See `c-context-line-break' for the details."
4519 (let ((here (point)))
4522 ;; Temporarily insert a non-whitespace char to keep any
4523 ;; preceding whitespace intact.
4525 (c-context-line-break))
4530 (cc-provide 'cc-cmds
)
4532 ;; arch-tag: bf0611dc-d1f4-449e-9e45-4ec7c6936677
4533 ;;; cc-cmds.el ends here