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