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