1 ;;; cc-engine.el --- core syntax guessing engine for CC mode
3 ;; Copyright (C) 1985, 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 ;; Free Software Foundation, Inc.
7 ;; Authors: 2001- Alan Mackenzie
8 ;; 1998- Martin Stjernholm
9 ;; 1992-1999 Barry A. Warsaw
11 ;; 1987 Stewart Clamen
12 ;; 1985 Richard M. Stallman
13 ;; Maintainer: bug-cc-mode@gnu.org
14 ;; Created: 22-Apr-1997 (split from cc-mode.el)
15 ;; Version: See cc-mode.el
16 ;; Keywords: c languages oop
18 ;; This file is part of GNU Emacs.
20 ;; GNU Emacs is free software: you can redistribute it and/or modify
21 ;; it under the terms of the GNU General Public License as published by
22 ;; the Free Software Foundation, either version 3 of the License, or
23 ;; (at your option) any later version.
25 ;; GNU Emacs is distributed in the hope that it will be useful,
26 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
27 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 ;; GNU General Public License for more details.
30 ;; You should have received a copy of the GNU General Public License
31 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
35 ;; The functions which have docstring documentation can be considered
36 ;; part of an API which other packages can use in CC Mode buffers.
37 ;; Otoh, undocumented functions and functions with the documentation
38 ;; in comments are considered purely internal and can change semantics
39 ;; or even disappear in the future.
41 ;; (This policy applies to CC Mode as a whole, not just this file. It
42 ;; probably also applies to many other Emacs packages, but here it's
43 ;; clearly spelled out.)
45 ;; Hidden buffer changes
47 ;; Various functions in CC Mode use text properties for caching and
48 ;; syntactic markup purposes, and those of them that might modify such
49 ;; properties but still don't modify the buffer in a visible way are
50 ;; said to do "hidden buffer changes". They should be used within
51 ;; `c-save-buffer-state' or a similar function that saves and restores
52 ;; buffer modifiedness, disables buffer change hooks, etc.
54 ;; Interactive functions are assumed to not do hidden buffer changes,
55 ;; except in the specific parts of them that do real changes.
57 ;; Lineup functions are assumed to do hidden buffer changes. They
58 ;; must not do real changes, though.
60 ;; All other functions that do hidden buffer changes have that noted
61 ;; in their doc string or comment.
63 ;; The intention with this system is to avoid wrapping every leaf
64 ;; function that do hidden buffer changes inside
65 ;; `c-save-buffer-state'. It should be used as near the top of the
66 ;; interactive functions as possible.
68 ;; Functions called during font locking are allowed to do hidden
69 ;; buffer changes since the font-lock package run them in a context
70 ;; similar to `c-save-buffer-state' (in fact, that function is heavily
71 ;; inspired by `save-buffer-state' in the font-lock package).
73 ;; Use of text properties
75 ;; CC Mode uses several text properties internally to mark up various
76 ;; positions, e.g. to improve speed and to eliminate glitches in
77 ;; interactive refontification.
79 ;; Note: This doc is for internal use only. Other packages should not
80 ;; assume that these text properties are used as described here.
83 ;; Used for "indirection". With its help, some other property can
84 ;; be cheaply and easily switched on or off everywhere it occurs.
87 ;; Used to modify the syntax of some characters. It is used to
88 ;; mark the "<" and ">" of angle bracket parens with paren syntax, and
89 ;; to "hide" obtrusive characters in preprocessor lines.
91 ;; This property is used on single characters and is therefore
92 ;; always treated as front and rear nonsticky (or start and end open
93 ;; in XEmacs vocabulary). It's therefore installed on
94 ;; `text-property-default-nonsticky' if that variable exists (Emacs
97 ;; 'c-is-sws and 'c-in-sws
98 ;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
99 ;; speed them up. See the comment blurb before `c-put-is-sws'
100 ;; below for further details.
103 ;; This property is used on single characters to mark positions with
104 ;; special syntactic relevance of various sorts. Its primary use is
105 ;; to avoid glitches when multiline constructs are refontified
106 ;; interactively (on font lock decoration level 3). It's cleared in
107 ;; a region before it's fontified and is then put on relevant chars
108 ;; in that region as they are encountered during the fontification.
109 ;; The value specifies the kind of position:
112 ;; Put on the last char of the token preceding each declaration
113 ;; inside a declaration style arglist (typically in a function
117 ;; Put on the last char of the token preceding a declaration.
118 ;; This is used in cases where declaration boundaries can't be
119 ;; recognized simply by looking for a token like ";" or "}".
120 ;; `c-type-decl-end-used' must be set if this is used (see also
121 ;; `c-find-decl-spots').
124 ;; Put on the commas that separate arguments in angle bracket
125 ;; arglists like C++ template arglists.
127 ;; 'c-decl-id-start and 'c-decl-type-start
128 ;; Put on the last char of the token preceding each declarator
129 ;; in the declarator list of a declaration. They are also used
130 ;; between the identifiers cases like enum declarations.
131 ;; 'c-decl-type-start is used when the declarators are types,
132 ;; 'c-decl-id-start otherwise.
135 ;; Used in AWK mode to mark the various kinds of newlines. See
142 (if (and (boundp 'byte-compile-dest-file
)
143 (stringp byte-compile-dest-file
))
144 (cons (file-name-directory byte-compile-dest-file
) load-path
)
146 (load "cc-bytecomp" nil t
)))
148 (cc-require 'cc-defs
)
149 (cc-require-when-compile 'cc-langs
)
150 (cc-require 'cc-vars
)
152 ;; Silence the compiler.
153 (cc-bytecomp-defun buffer-syntactic-context) ; XEmacs
156 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
158 (defmacro c-declare-lang-variables
()
161 (mapcar (lambda (init)
163 `(defvar ,(car init
) nil
,(elt init
2))
164 `(defvar ,(car init
) nil
))
165 (make-variable-buffer-local ',(car init
))))
166 (cdr c-lang-variable-inits
)))))
167 (c-declare-lang-variables)
170 ;;; Internal state variables.
172 ;; Internal state of hungry delete key feature
173 (defvar c-hungry-delete-key nil
)
174 (make-variable-buffer-local 'c-hungry-delete-key
)
176 ;; The electric flag (toggled by `c-toggle-electric-state').
177 ;; If t, electric actions (like automatic reindentation, and (if
178 ;; c-auto-newline is also set) auto newlining) will happen when an electric
179 ;; key like `{' is pressed (or an electric keyword like `else').
180 (defvar c-electric-flag t
)
181 (make-variable-buffer-local 'c-electric-flag
)
183 ;; Internal state of auto newline feature.
184 (defvar c-auto-newline nil
)
185 (make-variable-buffer-local 'c-auto-newline
)
187 ;; Included in the mode line to indicate the active submodes.
188 ;; (defvar c-submode-indicators nil)
189 ;; (make-variable-buffer-local 'c-submode-indicators)
191 (defun c-calculate-state (arg prevstate
)
192 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
193 ;; arg is nil or zero, toggle the state. If arg is negative, turn
194 ;; the state off, and if arg is positive, turn the state on
196 (zerop (setq arg
(prefix-numeric-value arg
))))
200 ;; Dynamically bound cache for `c-in-literal'.
201 (defvar c-in-literal-cache t
)
204 ;; Basic handling of preprocessor directives.
206 ;; This is a dynamically bound cache used together with
207 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
208 ;; works as long as point doesn't cross a macro boundary.
209 (defvar c-macro-start
'unknown
)
211 (defsubst c-query-and-set-macro-start
()
212 (if (symbolp c-macro-start
)
213 (setq c-macro-start
(save-excursion
214 (c-save-buffer-state ()
215 (and (c-beginning-of-macro)
219 (defsubst c-query-macro-start
()
220 (if (symbolp c-macro-start
)
222 (c-save-buffer-state ()
223 (and (c-beginning-of-macro)
227 (defun c-beginning-of-macro (&optional lim
)
228 "Go to the beginning of a preprocessor directive.
229 Leave point at the beginning of the directive and return t if in one,
230 otherwise return nil and leave point unchanged.
232 Note that this function might do hidden buffer changes. See the
233 comment at the start of cc-engine.el for more info."
234 (when c-opt-cpp-prefix
235 (let ((here (point)))
237 (if lim
(narrow-to-region lim
(point-max)))
239 (while (eq (char-before (1- (point))) ?
\\)
241 (back-to-indentation)
242 (if (and (<= (point) here
)
243 (looking-at c-opt-cpp-start
))
248 (defun c-end-of-macro ()
249 "Go to the end of a preprocessor directive.
250 More accurately, move the point to the end of the closest following
251 line that doesn't end with a line continuation backslash - no check is
252 done that the point is inside a cpp directive to begin with.
254 Note that this function might do hidden buffer changes. See the
255 comment at the start of cc-engine.el for more info."
258 (when (and (eq (char-before) ?
\\)
263 (defun c-syntactic-end-of-macro ()
264 ;; Go to the end of a CPP directive, or a "safe" pos just before.
266 ;; This is normally the end of the next non-escaped line. A "safe"
267 ;; position is one not within a string or comment. (The EOL on a line
268 ;; comment is NOT "safe").
270 ;; This function must only be called from the beginning of a CPP construct.
272 ;; Note that this function might do hidden buffer changes. See the comment
273 ;; at the start of cc-engine.el for more info.
274 (let* ((here (point))
275 (there (progn (c-end-of-macro) (point)))
276 (s (parse-partial-sexp here there
)))
277 (while (and (or (nth 3 s
) ; in a string
278 (nth 4 s
)) ; in a comment (maybe at end of line comment)
279 (> there here
)) ; No infinite loops, please.
280 (setq there
(1- (nth 8 s
)))
281 (setq s
(parse-partial-sexp here there
)))
284 (defun c-forward-over-cpp-define-id ()
285 ;; Assuming point is at the "#" that introduces a preprocessor
286 ;; directive, it's moved forward to the end of the identifier which is
287 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
288 ;; is returned in this case, in all other cases nil is returned and
289 ;; point isn't moved.
291 ;; This function might do hidden buffer changes.
292 (when (and c-opt-cpp-macro-define-id
293 (looking-at c-opt-cpp-macro-define-id
))
294 (goto-char (match-end 0))))
296 (defun c-forward-to-cpp-define-body ()
297 ;; Assuming point is at the "#" that introduces a preprocessor
298 ;; directive, it's moved forward to the start of the definition body
299 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
300 ;; specifies). Non-nil is returned in this case, in all other cases
301 ;; nil is returned and point isn't moved.
303 ;; This function might do hidden buffer changes.
304 (when (and c-opt-cpp-macro-define-start
305 (looking-at c-opt-cpp-macro-define-start
)
306 (not (= (match-end 0) (c-point 'eol
))))
307 (goto-char (match-end 0))))
310 ;;; Basic utility functions.
312 (defun c-syntactic-content (from to paren-level
)
313 ;; Return the given region as a string where all syntactic
314 ;; whitespace is removed or, where necessary, replaced with a single
315 ;; space. If PAREN-LEVEL is given then all parens in the region are
316 ;; collapsed to "()", "[]" etc.
318 ;; This function might do hidden buffer changes.
322 (narrow-to-region from to
)
324 (let* ((parts (list nil
)) (tail parts
) pos in-paren
)
326 (while (re-search-forward c-syntactic-ws-start to t
)
327 (goto-char (setq pos
(match-beginning 0)))
328 (c-forward-syntactic-ws)
334 (setq in-paren
(= (car (parse-partial-sexp from pos
1)) 1)
337 (if (and (> pos from
)
339 (looking-at "\\w\\|\\s_")
342 (looking-at "\\w\\|\\s_")))
344 (setcdr tail
(list (buffer-substring-no-properties from pos
)
346 (setq tail
(cddr tail
)))
347 (setcdr tail
(list (buffer-substring-no-properties from pos
)))
348 (setq tail
(cdr tail
)))
351 (when (= (car (parse-partial-sexp pos to -
1)) -
1)
352 (setcdr tail
(list (buffer-substring-no-properties
353 (1- (point)) (point))))
354 (setq tail
(cdr tail
))))
356 (setq from
(point))))
358 (setcdr tail
(list (buffer-substring-no-properties from to
)))
359 (apply 'concat
(cdr parts
))))))
361 (defun c-shift-line-indentation (shift-amt)
362 ;; Shift the indentation of the current line with the specified
363 ;; amount (positive inwards). The buffer is modified only if
364 ;; SHIFT-AMT isn't equal to zero.
365 (let ((pos (- (point-max) (point)))
366 (c-macro-start c-macro-start
)
368 (if (zerop shift-amt
)
370 ;; If we're on an empty line inside a macro, we take the point
371 ;; to be at the current indentation and shift it to the
372 ;; appropriate column. This way we don't treat the extra
373 ;; whitespace out to the line continuation as indentation.
374 (when (and (c-query-and-set-macro-start)
375 (looking-at "[ \t]*\\\\$")
377 (skip-chars-backward " \t")
381 (setq tmp-char-inserted t
))
383 (let ((col (current-indentation)))
384 (delete-region (c-point 'bol
) (c-point 'boi
))
386 (indent-to (+ col shift-amt
)))
387 (when tmp-char-inserted
389 ;; If initial point was within line's indentation and we're not on
390 ;; a line with a line continuation in a macro, position after the
391 ;; indentation. Else stay at same point in text.
392 (if (and (< (point) (c-point 'boi
))
393 (not tmp-char-inserted
))
394 (back-to-indentation)
395 (if (> (- (point-max) pos
) (point))
396 (goto-char (- (point-max) pos
))))))
398 (defsubst c-keyword-sym
(keyword)
399 ;; Return non-nil if the string KEYWORD is a known keyword. More
400 ;; precisely, the value is the symbol for the keyword in
401 ;; `c-keywords-obarray'.
402 (intern-soft keyword c-keywords-obarray
))
404 (defsubst c-keyword-member
(keyword-sym lang-constant
)
405 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
406 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
407 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
408 ;; nil then the result is nil.
409 (get keyword-sym lang-constant
))
411 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
412 (defconst c-string-syntax
(if (memq 'gen-string-delim c-emacs-features
)
416 ;; Regexp matching string limit syntax.
417 (defconst c-string-limit-regexp
(if (memq 'gen-string-delim c-emacs-features
)
421 ;; Regexp matching WS followed by string limit syntax.
422 (defconst c-ws
*-string-limit-regexp
423 (concat "[ \t]*\\(" c-string-limit-regexp
"\\)"))
425 ;; Holds formatted error strings for the few cases where parse errors
427 (defvar c-parsing-error nil
)
428 (make-variable-buffer-local 'c-parsing-error
)
430 (defun c-echo-parsing-error (&optional quiet
)
431 (when (and c-report-syntactic-errors c-parsing-error
(not quiet
))
432 (c-benign-error "%s" c-parsing-error
))
435 ;; Faces given to comments and string literals. This is used in some
436 ;; situations to speed up recognition; it isn't mandatory that font
437 ;; locking is in use. This variable is extended with the face in
438 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
439 (defvar c-literal-faces
440 (append '(font-lock-comment-face font-lock-string-face
)
441 (when (facep 'font-lock-comment-delimiter-face
)
443 '(font-lock-comment-delimiter-face))))
445 (defsubst c-put-c-type-property
(pos value
)
446 ;; Put a c-type property with the given value at POS.
447 (c-put-char-property pos
'c-type value
))
449 (defun c-clear-c-type-property (from to value
)
450 ;; Remove all occurrences of the c-type property that has the given
451 ;; value in the region between FROM and TO. VALUE is assumed to not
454 ;; Note: This assumes that c-type is put on single chars only; it's
455 ;; very inefficient if matching properties cover large regions.
459 (when (eq (get-text-property (point) 'c-type
) value
)
460 (c-clear-char-property (point) 'c-type
))
461 (goto-char (next-single-property-change (point) 'c-type nil to
))
465 ;; Some debug tools to visualize various special positions. This
466 ;; debug code isn't as portable as the rest of CC Mode.
468 (cc-bytecomp-defun overlays-in)
469 (cc-bytecomp-defun overlay-get)
470 (cc-bytecomp-defun overlay-start)
471 (cc-bytecomp-defun overlay-end)
472 (cc-bytecomp-defun delete-overlay)
473 (cc-bytecomp-defun overlay-put)
474 (cc-bytecomp-defun make-overlay)
476 (defun c-debug-add-face (beg end face
)
477 (c-save-buffer-state ((overlays (overlays-in beg end
)) overlay
)
479 (setq overlay
(car overlays
)
480 overlays
(cdr overlays
))
481 (when (eq (overlay-get overlay
'face
) face
)
482 (setq beg
(min beg
(overlay-start overlay
))
483 end
(max end
(overlay-end overlay
)))
484 (delete-overlay overlay
)))
485 (overlay-put (make-overlay beg end
) 'face face
)))
487 (defun c-debug-remove-face (beg end face
)
488 (c-save-buffer-state ((overlays (overlays-in beg end
)) overlay
489 (ol-beg beg
) (ol-end end
))
491 (setq overlay
(car overlays
)
492 overlays
(cdr overlays
))
493 (when (eq (overlay-get overlay
'face
) face
)
494 (setq ol-beg
(min ol-beg
(overlay-start overlay
))
495 ol-end
(max ol-end
(overlay-end overlay
)))
496 (delete-overlay overlay
)))
498 (overlay-put (make-overlay ol-beg beg
) 'face face
))
500 (overlay-put (make-overlay end ol-end
) 'face face
))))
503 ;; `c-beginning-of-statement-1' and accompanying stuff.
505 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
506 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
507 ;; better way should be implemented, but this will at least shut up
508 ;; the byte compiler.
509 (defvar c-maybe-labelp
)
511 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
513 ;; Macros used internally in c-beginning-of-statement-1 for the
514 ;; automaton actions.
515 (defmacro c-bos-push-state
()
516 '(setq stack
(cons (cons state saved-pos
)
518 (defmacro c-bos-pop-state
(&optional do-if-done
)
519 `(if (setq state
(car (car stack
))
520 saved-pos
(cdr (car stack
))
525 (defmacro c-bos-pop-state-and-retry
()
526 '(throw 'loop
(setq state
(car (car stack
))
527 saved-pos
(cdr (car stack
))
528 ;; Throw nil if stack is empty, else throw non-nil.
530 (defmacro c-bos-save-pos
()
531 '(setq saved-pos
(vector pos tok ptok pptok
)))
532 (defmacro c-bos-restore-pos
()
533 '(unless (eq (elt saved-pos
0) start
)
534 (setq pos
(elt saved-pos
0)
535 tok
(elt saved-pos
1)
536 ptok
(elt saved-pos
2)
537 pptok
(elt saved-pos
3))
540 (defmacro c-bos-save-error-info
(missing got
)
541 `(setq saved-pos
(vector pos
,missing
,got
)))
542 (defmacro c-bos-report-error
()
544 (setq c-parsing-error
545 (format "No matching `%s' found for `%s' on line %d"
548 (1+ (count-lines (point-min)
549 (c-point 'bol
(elt saved-pos
0))))))))
551 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
553 "Move to the start of the current statement or declaration, or to
554 the previous one if already at the beginning of one. Only
555 statements/declarations on the same level are considered, i.e. don't
556 move into or out of sexps (not even normal expression parentheses).
558 If point is already at the earliest statement within braces or parens,
559 this function doesn't move back into any whitespace preceding it; it
560 returns 'same in this case.
562 Stop at statement continuation tokens like \"else\", \"catch\",
563 \"finally\" and the \"while\" in \"do ... while\" if the start point
564 is within the continuation. If starting at such a token, move to the
565 corresponding statement start. If at the beginning of a statement,
566 move to the closest containing statement if there is any. This might
567 also stop at a continuation clause.
569 Labels are treated as part of the following statements if
570 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
571 statement start keyword.) Otherwise, each label is treated as a
574 Macros are ignored \(i.e. skipped over) unless point is within one, in
575 which case the content of the macro is treated as normal code. Aside
576 from any normal statement starts found in it, stop at the first token
577 of the content in the macro, i.e. the expression of an \"#if\" or the
578 start of the definition in a \"#define\". Also stop at start of
579 macros before leaving them.
582 'label if stopped at a label or \"case...:\" or \"default:\";
583 'same if stopped at the beginning of the current statement;
584 'up if stepped to a containing statement;
585 'previous if stepped to a preceding statement;
586 'beginning if stepped from a statement continuation clause to
588 'macro if stepped to a macro start.
589 Note that 'same and not 'label is returned if stopped at the same
590 label without crossing the colon character.
592 LIM may be given to limit the search. If the search hits the limit,
593 point will be left at the closest following token, or at the start
594 position if that is less ('same is returned in this case).
596 NOERROR turns off error logging to `c-parsing-error'.
598 Normally only ';' and virtual semicolons are considered to delimit
599 statements, but if COMMA-DELIM is non-nil then ',' is treated
602 Note that this function might do hidden buffer changes. See the
603 comment at the start of cc-engine.el for more info."
605 ;; The bulk of this function is a pushdown automaton that looks at statement
606 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
607 ;; purpose is to keep track of nested statements, ensuring that such
608 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
609 ;; does with nested braces/brackets/parentheses).
611 ;; Note: The position of a boundary is the following token.
613 ;; Beginning with the current token (the one following point), move back one
614 ;; sexp at a time (where a sexp is, more or less, either a token or the
615 ;; entire contents of a brace/bracket/paren pair). Each time a statement
616 ;; boundary is crossed or a "while"-like token is found, update the state of
617 ;; the PDA. Stop at the beginning of a statement when the stack (holding
618 ;; nested statement info) is empty and the position has been moved.
620 ;; The following variables constitute the PDA:
622 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
623 ;; scanned back over, 'boundary if we've just gone back over a
624 ;; statement boundary, or nil otherwise.
625 ;; state: takes one of the values (nil else else-boundary while
626 ;; while-boundary catch catch-boundary).
627 ;; nil means "no "while"-like token yet scanned".
628 ;; 'else, for example, means "just gone back over an else".
629 ;; 'else-boundary means "just gone back over a statement boundary
630 ;; immediately after having gone back over an else".
631 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
632 ;; of error reporting information.
633 ;; stack: The stack onto which the PDA pushes its state. Each entry
634 ;; consists of a saved value of state and saved-pos. An entry is
635 ;; pushed when we move back over a "continuation" token (e.g. else)
636 ;; and popped when we encounter the corresponding opening token
640 ;; The following diagram briefly outlines the PDA.
643 ;; "else": Push state, goto state `else'.
644 ;; "while": Push state, goto state `while'.
645 ;; "catch" or "finally": Push state, goto state `catch'.
646 ;; boundary: Pop state.
647 ;; other: Do nothing special.
650 ;; boundary: Goto state `else-boundary'.
651 ;; other: Error, pop state, retry token.
653 ;; State `else-boundary':
655 ;; boundary: Error, pop state.
656 ;; other: See common state.
659 ;; boundary: Save position, goto state `while-boundary'.
660 ;; other: Pop state, retry token.
662 ;; State `while-boundary':
664 ;; boundary: Restore position if it's not at start, pop state. [*see below]
665 ;; other: See common state.
668 ;; boundary: Goto state `catch-boundary'.
669 ;; other: Error, pop state, retry token.
671 ;; State `catch-boundary':
673 ;; "catch": Goto state `catch'.
674 ;; boundary: Error, pop state.
675 ;; other: See common state.
677 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
678 ;; searching for a "do" which would have opened a do-while. If we didn't
679 ;; find it, we discard the analysis done since the "while", go back to this
680 ;; token in the buffer and restart the scanning there, this time WITHOUT
681 ;; pushing the 'while state onto the stack.
683 ;; In addition to the above there is some special handling of labels
686 (let ((case-fold-search nil
)
689 (delims (if comma-delim
'(?\
; ?,) '(?\;)))
690 (c-stmt-delim-chars (if comma-delim
691 c-stmt-delim-chars-with-comma
693 c-in-literal-cache c-maybe-labelp after-case
:-pos saved
696 ;; Position of last stmt boundary character (e.g. ;).
698 ;; The position of the last sexp or bound that follows the
699 ;; first found colon, i.e. the start of the nonlabel part of
700 ;; the statement. It's `start' if a colon is found just after
703 ;; Like `after-labels-pos', but the first such position inside
704 ;; a label, i.e. the start of the last label before the start
705 ;; of the nonlabel part of the statement.
707 ;; The last position where a label is possible provided the
708 ;; statement started there. It's nil as long as no invalid
709 ;; label content has been found (according to
710 ;; `c-nonlabel-token-key'. It's `start' if no valid label
711 ;; content was found in the label. Note that we might still
712 ;; regard it a label if it starts with `c-label-kwds'.
714 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
717 ;; Current state in the automaton. See above.
719 ;; Current saved positions. See above.
721 ;; Stack of conses (state . saved-pos).
723 ;; Regexp which matches "for", "if", etc.
724 (cond-key (or c-opt-block-stmt-key
725 "\\<\\>")) ; Matches nothing.
728 ;; Positions of the last three sexps or bounds we've stopped at.
732 (if lim
(narrow-to-region lim
(point-max)))
735 (and (c-beginning-of-macro)
737 (setq macro-start
(point)))
739 ;; Try to skip back over unary operator characters, to register
743 (c-backward-syntactic-ws)
744 ;; Protect post-++/-- operators just before a virtual semicolon.
745 (and (not (c-at-vsemi-p))
746 (/= (skip-chars-backward "-+!*&~@`#") 0))))
748 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
749 ;; done. Later on we ignore the boundaries for statements that don't
750 ;; contain any sexp. The only thing that is affected is that the error
751 ;; checking is a little less strict, and we really don't bother.
752 (if (and (memq (char-before) delims
)
753 (progn (forward-char -
1)
755 (c-backward-syntactic-ws)
756 (or (memq (char-before) delims
)
757 (memq (char-before) '(?
: nil
))
758 (eq (char-syntax (char-before)) ?\
()
763 ;; Begin at start and not pos to detect macros if we stand
764 ;; directly after the #.
766 (if (looking-at "\\<\\|\\W")
767 ;; Record this as the first token if not starting inside it.
770 ;; The following while loop goes back one sexp (balanced parens,
771 ;; etc. with contents, or symbol or suchlike) each iteration. This
772 ;; movement is accomplished with a call to scan-sexps approx 130 lines
775 (catch 'loop
;; Throw nil to break, non-nil to continue.
778 (and macro-start
; Always NIL for AWK.
779 (progn (skip-chars-backward " \t")
780 (eq (char-before) ?
#))
781 (progn (setq saved
(1- (point)))
783 (not (eq (char-before (1- (point))) ?
\\)))
784 (looking-at c-opt-cpp-start
)
785 (progn (skip-chars-forward " \t")
786 (eq (point) saved
))))
788 (if (and (c-forward-to-cpp-define-body)
789 (progn (c-forward-syntactic-ws start
)
791 ;; Stop at the first token in the content of the macro.
793 ignore-labels t
) ; Avoid the label check on exit.
799 ;; Do a round through the automaton if we've just passed a
800 ;; statement boundary or passed a "while"-like token.
802 (and (looking-at cond-key
)
803 (setq sym
(intern (match-string 1)))))
805 (when (and (< pos start
) (null stack
))
808 ;; The PDA state handling.
810 ;; Refer to the description of the PDA in the opening
811 ;; comments. In the following OR form, the first leaf
812 ;; attempts to handles one of the specific actions detailed
813 ;; (e.g., finding token "if" whilst in state `else-boundary').
814 ;; We drop through to the second leaf (which handles common
815 ;; state) if no specific handler is found in the first cond.
816 ;; If a parsing error is detected (e.g. an "else" with no
817 ;; preceding "if"), we throw to the enclosing catch.
819 ;; Note that the (eq state 'else) means
820 ;; "we've just passed an else", NOT "we're looking for an
824 (if (eq sym
'boundary
)
825 (setq state
'else-boundary
)
827 (c-bos-pop-state-and-retry)))
829 ((eq state
'else-boundary
)
831 (c-bos-pop-state (setq ret
'beginning
)))
837 (if (and (eq sym
'boundary
)
838 ;; Since this can cause backtracking we do a
839 ;; little more careful analysis to avoid it:
840 ;; If there's a label in front of the while
841 ;; it can't be part of a do-while.
842 (not after-labels-pos
))
843 (progn (c-bos-save-pos)
844 (setq state
'while-boundary
))
845 (c-bos-pop-state-and-retry))) ; Can't be a do-while
847 ((eq state
'while-boundary
)
849 (c-bos-pop-state (setq ret
'beginning
)))
850 ((eq sym
'boundary
) ; isn't a do-while
851 (c-bos-restore-pos) ; the position of the while
852 (c-bos-pop-state)))) ; no longer searching for do.
855 (if (eq sym
'boundary
)
856 (setq state
'catch-boundary
)
858 (c-bos-pop-state-and-retry)))
860 ((eq state
'catch-boundary
)
863 (c-bos-pop-state (setq ret
'beginning
)))
868 (c-bos-pop-state)))))
870 ;; This is state common. We get here when the previous
871 ;; cond statement found no particular state handler.
872 (cond ((eq sym
'boundary
)
873 ;; If we have a boundary at the start
874 ;; position we push a frame to go to the
875 ;; previous statement.
881 (c-bos-save-error-info 'if
'else
)
884 ;; Is this a real while, or a do-while?
885 ;; The next `when' triggers unless we are SURE that
886 ;; the `while' is not the tailend of a `do-while'.
887 (when (or (not pptok
)
888 (memq (char-after pptok
) delims
)
889 ;; The following kludge is to prevent
890 ;; infinite recursion when called from
891 ;; c-awk-after-if-for-while-condition-p,
893 (and (eq (point) start
)
894 (c-vsemi-status-unknown-p))
895 (c-at-vsemi-p pptok
))
896 ;; Since this can cause backtracking we do a
897 ;; little more careful analysis to avoid it: If
898 ;; the while isn't followed by a (possibly
899 ;; virtual) semicolon it can't be a do-while.
901 (setq state
'while
)))
902 ((memq sym
'(catch finally
))
904 (c-bos-save-error-info 'try sym
)
905 (setq state
'catch
))))
908 ;; We're either past a statement boundary or at the
909 ;; start of a statement, so throw away any label data
910 ;; for the previous one.
911 (setq after-labels-pos nil
913 c-maybe-labelp nil
))))
915 ;; Step to the previous sexp, but not if we crossed a
916 ;; boundary, since that doesn't consume an sexp.
917 (if (eq sym
'boundary
)
920 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
921 ;; BACKWARDS THROUGH THE SOURCE.
923 ;; This is typically fast with the caching done by
924 ;; c-(backward|forward)-sws.
925 (c-backward-syntactic-ws)
927 (let ((before-sws-pos (point))
928 ;; Set as long as we have to continue jumping by sexps.
929 ;; It's the position to use as end in the next round.
930 sexp-loop-continue-pos
931 ;; The end position of the area to search for statement
932 ;; barriers in this round.
933 (sexp-loop-end-pos pos
))
935 ;; The following while goes back one sexp per iteration.
938 (unless (c-safe (c-backward-sexp) t
)
939 ;; Give up if we hit an unbalanced block. Since the
940 ;; stack won't be empty the code below will report a
944 ;; Check if the sexp movement crossed a statement or
945 ;; declaration boundary. But first modify the point
946 ;; so that `c-crosses-statement-barrier-p' only looks
947 ;; at the non-sexp chars following the sexp.
955 (when (c-beginning-of-macro)
956 ;; Set continuation position in case
957 ;; `c-crosses-statement-barrier-p'
958 ;; doesn't detect anything below.
959 (setq sexp-loop-continue-pos
(point)))))
960 ;; If the sexp movement took us into a
961 ;; macro then there were only some non-sexp
962 ;; chars after it. Skip out of the macro
963 ;; to analyze them but not the non-sexp
964 ;; chars that might be inside the macro.
966 (c-crosses-statement-barrier-p
967 (point) sexp-loop-end-pos
))
971 (not (c-looking-at-inexpr-block lim nil t
)))
972 ;; Passed a block sexp. That's a boundary
976 ((looking-at "\\s\(")
977 ;; Passed some other paren. Only analyze
978 ;; the non-sexp chars after it.
979 (goto-char (1+ (c-down-list-backward
981 ;; We're at a valid token start position
982 ;; (outside the `save-excursion') if
983 ;; `c-crosses-statement-barrier-p' failed.
984 (c-crosses-statement-barrier-p
985 (point) sexp-loop-end-pos
))
988 ;; Passed a symbol sexp or line
989 ;; continuation. It doesn't matter that
990 ;; it's included in the analyzed region.
991 (if (c-crosses-statement-barrier-p
992 (point) sexp-loop-end-pos
)
994 ;; If it was a line continuation then we
995 ;; have to continue looping.
996 (if (looking-at "\\\\$")
997 (setq sexp-loop-continue-pos
(point)))
1004 ;; Like a C "continue". Analyze the next sexp.
1007 sexp-loop-continue-pos
) ; End of "go back a sexp" loop condition.
1008 (goto-char sexp-loop-continue-pos
)
1009 (setq sexp-loop-end-pos sexp-loop-continue-pos
1010 sexp-loop-continue-pos nil
))))
1013 (when (and c-opt-method-key
1014 (setq saved
(c-in-method-def-p)))
1016 ignore-labels t
) ; Avoid the label check on exit.
1020 (unless (eq ignore-labels t
)
1021 (when (numberp c-maybe-labelp
)
1022 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1023 ;; might be in a label now. Have we got a real label
1024 ;; (including a case label) or something like C++'s "public:"?
1025 ;; A case label might use an expression rather than a token.
1026 (setq after-case
:-pos
(or tok start
))
1027 (if (looking-at c-nonlabel-token-key
) ; e.g. "while" or "'a'"
1028 (setq c-maybe-labelp nil
)
1029 (if after-labels-pos
; Have we already encountered a label?
1030 (if (not last-label-pos
)
1031 (setq last-label-pos
(or tok start
)))
1032 (setq after-labels-pos
(or tok start
)))
1033 (setq c-maybe-labelp t
1034 label-good-pos nil
))) ; bogus "label"
1036 (when (and (not label-good-pos
) ; i.e. no invalid "label"'s yet
1038 (looking-at c-nonlabel-token-key
)) ; e.g. "while :"
1039 ;; We're in a potential label and it's the first
1040 ;; time we've found something that isn't allowed in
1042 (setq label-good-pos
(or tok start
))))
1044 ;; We've moved back by a sexp, so update the token positions.
1049 pos tok
))) ; Not nil (for the while loop).
1051 ;; If the stack isn't empty there might be errors to report.
1053 (if (and (vectorp saved-pos
) (eq (length saved-pos
) 3))
1054 (c-bos-report-error))
1055 (setq saved-pos
(cdr (car stack
))
1058 (when (and (eq ret
'same
)
1059 (not (memq sym
'(boundary ignore nil
))))
1060 ;; Need to investigate closer whether we've crossed
1061 ;; between a substatement and its containing statement.
1062 (if (setq saved
(if (looking-at c-block-stmt-1-key
)
1065 (cond ((> start saved
) (setq pos saved
))
1066 ((= start saved
) (setq ret
'up
)))))
1068 (when (and (not ignore-labels
)
1069 (eq c-maybe-labelp t
)
1070 (not (eq ret
'beginning
))
1072 (or (not label-good-pos
)
1073 (<= label-good-pos pos
)
1075 (goto-char (if (and last-label-pos
1076 (< last-label-pos start
))
1079 (looking-at c-label-kwds-regexp
))))
1080 ;; We're in a label. Maybe we should step to the statement
1082 (if (< after-labels-pos start
)
1083 (setq pos after-labels-pos
)
1085 (if (and last-label-pos
(< last-label-pos start
))
1086 ;; Might have jumped over several labels. Go to the last one.
1087 (setq pos last-label-pos
)))))
1089 ;; Have we got "case <expression>:"?
1091 (when (and after-case
:-pos
1092 (not (eq ret
'beginning
))
1093 (looking-at c-case-kwds-regexp
))
1094 (if (< after-case
:-pos start
)
1095 (setq pos after-case
:-pos
))
1099 ;; Skip over the unary operators that can start the statement.
1101 (c-backward-syntactic-ws)
1102 ;; protect AWK post-inc/decrement operators, etc.
1103 (and (not (c-at-vsemi-p (point)))
1104 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1109 (defun c-crosses-statement-barrier-p (from to
)
1110 "Return non-nil if buffer positions FROM to TO cross one or more
1111 statement or declaration boundaries. The returned value is actually
1112 the position of the earliest boundary char. FROM must not be within
1113 a string or comment.
1115 The variable `c-maybe-labelp' is set to the position of the first `:' that
1116 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1117 single `?' is found, then `c-maybe-labelp' is cleared.
1119 For AWK, a statement which is terminated by an EOL (not a \; or a }) is
1120 regarded as having a \"virtual semicolon\" immediately after the last token on
1121 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1123 Note that this function might do hidden buffer changes. See the
1124 comment at the start of cc-engine.el for more info."
1125 (let ((skip-chars c-stmt-delim-chars
)
1130 (while (progn (skip-chars-forward skip-chars to
)
1133 ((setq lit-range
(c-literal-limits from
)) ; Have we landed in a string/comment?
1134 (goto-char (cdr lit-range
)))
1135 ((eq (char-after) ?
:)
1137 (if (and (eq (char-after) ?
:)
1139 ;; Ignore scope operators.
1141 (setq c-maybe-labelp
(1- (point)))))
1142 ((eq (char-after) ??
)
1143 ;; A question mark. Can't be a label, so stop
1144 ;; looking for more : and ?.
1145 (setq c-maybe-labelp nil
1146 skip-chars
(substring c-stmt-delim-chars
0 -
2)))
1147 ((memq (char-after) '(?
# ?
\n ?
\r)) ; A virtual semicolon?
1148 (if (and (eq (char-before) ?
\\) (memq (char-after) '(?
\n ?
\r)))
1150 (skip-chars-backward " \t" from
)
1152 (throw 'done
(point))
1154 (t (throw 'done
(point)))))
1155 ;; In trailing space after an as yet undetected virtual semicolon?
1156 (c-backward-syntactic-ws from
)
1157 (if (and (< (point) to
)
1162 (defun c-at-statement-start-p ()
1163 "Return non-nil if the point is at the first token in a statement
1164 or somewhere in the syntactic whitespace before it.
1166 A \"statement\" here is not restricted to those inside code blocks.
1167 Any kind of declaration-like construct that occur outside function
1168 bodies is also considered a \"statement\".
1170 Note that this function might do hidden buffer changes. See the
1171 comment at the start of cc-engine.el for more info."
1176 (c-syntactic-skip-backward (substring c-stmt-delim-chars
1) nil t
)
1178 (eq (char-before) ?
})
1179 (and (eq (char-before) ?
{)
1180 (not (and c-special-brace-lists
1181 (progn (backward-char)
1182 (c-looking-at-special-brace-list)))))
1183 (c-crosses-statement-barrier-p (point) end
)))))
1185 (defun c-at-expression-start-p ()
1186 "Return non-nil if the point is at the first token in an expression or
1187 statement, or somewhere in the syntactic whitespace before it.
1189 An \"expression\" here is a bit different from the normal language
1190 grammar sense: It's any sequence of expression tokens except commas,
1191 unless they are enclosed inside parentheses of some kind. Also, an
1192 expression never continues past an enclosing parenthesis, but it might
1193 contain parenthesis pairs of any sort except braces.
1195 Since expressions never cross statement boundaries, this function also
1196 recognizes statement beginnings, just like `c-at-statement-start-p'.
1198 Note that this function might do hidden buffer changes. See the
1199 comment at the start of cc-engine.el for more info."
1203 (c-stmt-delim-chars c-stmt-delim-chars-with-comma
)
1205 (c-syntactic-skip-backward (substring c-stmt-delim-chars
1) nil t
)
1207 (memq (char-before) '(?
{ ?
}))
1208 (save-excursion (backward-char)
1209 (looking-at "\\s("))
1210 (c-crosses-statement-barrier-p (point) end
)))))
1213 ;; A set of functions that covers various idiosyncrasies in
1214 ;; implementations of `forward-comment'.
1216 ;; Note: Some emacsen considers incorrectly that any line comment
1217 ;; ending with a backslash continues to the next line. I can't think
1218 ;; of any way to work around that in a reliable way without changing
1219 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1220 ;; changing the syntax for backslash doesn't work since we must treat
1221 ;; escapes in string literals correctly.)
1223 (defun c-forward-single-comment ()
1224 "Move forward past whitespace and the closest following comment, if any.
1225 Return t if a comment was found, nil otherwise. In either case, the
1226 point is moved past the following whitespace. Line continuations,
1227 i.e. a backslashes followed by line breaks, are treated as whitespace.
1228 The line breaks that end line comments are considered to be the
1229 comment enders, so the point will be put on the beginning of the next
1230 line if it moved past a line comment.
1232 This function does not do any hidden buffer changes."
1234 (let ((start (point)))
1235 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1236 (goto-char (match-end 0)))
1238 (when (forward-comment 1)
1240 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1244 ;; Emacs includes the ending newline in a b-style (c++)
1245 ;; comment, but XEmacs doesn't. We depend on the Emacs
1246 ;; behavior (which also is symmetric).
1247 (if (and (eolp) (elt (parse-partial-sexp start
(point)) 7))
1248 (condition-case nil
(forward-char 1)))
1252 (defsubst c-forward-comments
()
1253 "Move forward past all following whitespace and comments.
1254 Line continuations, i.e. a backslashes followed by line breaks, are
1255 treated as whitespace.
1257 Note that this function might do hidden buffer changes. See the
1258 comment at the start of cc-engine.el for more info."
1261 ;; If forward-comment in at least XEmacs 21 is given a large
1262 ;; positive value, it'll loop all the way through if it hits
1264 (and (forward-comment 5)
1265 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1269 (when (looking-at "\\\\[\n\r]")
1273 (defun c-backward-single-comment ()
1274 "Move backward past whitespace and the closest preceding comment, if any.
1275 Return t if a comment was found, nil otherwise. In either case, the
1276 point is moved past the preceding whitespace. Line continuations,
1277 i.e. a backslashes followed by line breaks, are treated as whitespace.
1278 The line breaks that end line comments are considered to be the
1279 comment enders, so the point cannot be at the end of the same line to
1280 move over a line comment.
1282 This function does not do any hidden buffer changes."
1284 (let ((start (point)))
1285 ;; When we got newline terminated comments, forward-comment in all
1286 ;; supported emacsen so far will stop at eol of each line not
1287 ;; ending with a comment when moving backwards. This corrects for
1288 ;; that, and at the same time handles line continuations.
1290 (skip-chars-backward " \t\n\r\f\v")
1291 (and (looking-at "[\n\r]")
1292 (eq (char-before) ?
\\)))
1296 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1297 ;; backwards at bob.
1300 ;; Leave point after the closest following newline if we've
1301 ;; backed up over any above, since forward-comment won't move
1302 ;; backward over a line comment if point is at the end of the
1304 (re-search-forward "\\=\\s *[\n\r]" start t
)
1306 (if (if (forward-comment -
1)
1308 ;; If forward-comment above succeeded and we're at eol
1309 ;; then the newline we moved over above didn't end a
1310 ;; line comment, so we give it another go.
1311 (forward-comment -
1)
1314 ;; Emacs <= 20 and XEmacs move back over the closer of a
1315 ;; block comment that lacks an opener.
1316 (if (looking-at "\\*/")
1317 (progn (forward-char 2) nil
)
1320 (defsubst c-backward-comments
()
1321 "Move backward past all preceding whitespace and comments.
1322 Line continuations, i.e. a backslashes followed by line breaks, are
1323 treated as whitespace. The line breaks that end line comments are
1324 considered to be the comment enders, so the point cannot be at the end
1325 of the same line to move over a line comment. Unlike
1326 c-backward-syntactic-ws, this function doesn't move back over
1327 preprocessor directives.
1329 Note that this function might do hidden buffer changes. See the
1330 comment at the start of cc-engine.el for more info."
1332 (let ((start (point)))
1334 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1335 ;; return t when moving backwards at bob.
1338 (if (forward-comment -
1)
1339 (if (looking-at "\\*/")
1340 ;; Emacs <= 20 and XEmacs move back over the
1341 ;; closer of a block comment that lacks an opener.
1342 (progn (forward-char 2) nil
)
1345 ;; XEmacs treats line continuations as whitespace but
1346 ;; only in the backward direction, which seems a bit
1347 ;; odd. Anyway, this is necessary for Emacs.
1348 (when (and (looking-at "[\n\r]")
1349 (eq (char-before) ?
\\)
1355 ;; Tools for skipping over syntactic whitespace.
1357 ;; The following functions use text properties to cache searches over
1358 ;; large regions of syntactic whitespace. It works as follows:
1360 ;; o If a syntactic whitespace region contains anything but simple
1361 ;; whitespace (i.e. space, tab and line breaks), the text property
1362 ;; `c-in-sws' is put over it. At places where we have stopped
1363 ;; within that region there's also a `c-is-sws' text property.
1364 ;; That since there typically are nested whitespace inside that
1365 ;; must be handled separately, e.g. whitespace inside a comment or
1366 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1367 ;; to jump to another point with that property within the same
1368 ;; `c-in-sws' region. It can be likened to a ladder where
1369 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1371 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1372 ;; a "rung position" and also maybe on the first following char.
1373 ;; As many characters as can be conveniently found in this range
1374 ;; are marked, but no assumption can be made that the whole range
1375 ;; is marked (it could be clobbered by later changes, for
1378 ;; Note that some part of the beginning of a sequence of simple
1379 ;; whitespace might be part of the end of a preceding line comment
1380 ;; or cpp directive and must not be considered part of the "rung".
1381 ;; Such whitespace is some amount of horizontal whitespace followed
1382 ;; by a newline. In the case of cpp directives it could also be
1383 ;; two newlines with horizontal whitespace between them.
1385 ;; The reason to include the first following char is to cope with
1386 ;; "rung positions" that doesn't have any ordinary whitespace. If
1387 ;; `c-is-sws' is put on a token character it does not have
1388 ;; `c-in-sws' set simultaneously. That's the only case when that
1389 ;; can occur, and the reason for not extending the `c-in-sws'
1390 ;; region to cover it is that the `c-in-sws' region could then be
1391 ;; accidentally merged with a following one if the token is only
1392 ;; one character long.
1394 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1395 ;; removed in the changed region. If the change was inside
1396 ;; syntactic whitespace that means that the "ladder" is broken, but
1397 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1398 ;; parts on either side and use an ordinary search only to "repair"
1401 ;; Special care needs to be taken if a region is removed: If there
1402 ;; are `c-in-sws' on both sides of it which do not connect inside
1403 ;; the region then they can't be joined. If e.g. a marked macro is
1404 ;; broken, syntactic whitespace inside the new text might be
1405 ;; marked. If those marks would become connected with the old
1406 ;; `c-in-sws' range around the macro then we could get a ladder
1407 ;; with one end outside the macro and the other at some whitespace
1410 ;; The main motivation for this system is to increase the speed in
1411 ;; skipping over the large whitespace regions that can occur at the
1412 ;; top level in e.g. header files that contain a lot of comments and
1413 ;; cpp directives. For small comments inside code it's probably
1414 ;; slower than using `forward-comment' straightforwardly, but speed is
1415 ;; not a significant factor there anyway.
1417 ; (defface c-debug-is-sws-face
1418 ; '((t (:background "GreenYellow")))
1419 ; "Debug face to mark the `c-is-sws' property.")
1420 ; (defface c-debug-in-sws-face
1421 ; '((t (:underline t)))
1422 ; "Debug face to mark the `c-in-sws' property.")
1424 ; (defun c-debug-put-sws-faces ()
1425 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1426 ; ;; properties in the buffer.
1429 ; (c-save-buffer-state (in-face)
1430 ; (goto-char (point-min))
1431 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1434 ; (goto-char (next-single-property-change
1435 ; (point) 'c-is-sws nil (point-max)))
1438 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1439 ; (setq in-face nil))
1440 ; (setq in-face (point)))
1442 ; (goto-char (point-min))
1443 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1446 ; (goto-char (next-single-property-change
1447 ; (point) 'c-in-sws nil (point-max)))
1450 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1451 ; (setq in-face nil))
1452 ; (setq in-face (point)))
1455 (defmacro c-debug-sws-msg
(&rest args
)
1459 (defmacro c-put-is-sws
(beg end
)
1460 ;; This macro does a hidden buffer change.
1461 `(let ((beg ,beg
) (end ,end
))
1462 (put-text-property beg end
'c-is-sws t
)
1463 ,@(when (facep 'c-debug-is-sws-face
)
1464 `((c-debug-add-face beg end
'c-debug-is-sws-face
)))))
1466 (defmacro c-put-in-sws
(beg end
)
1467 ;; This macro does a hidden buffer change.
1468 `(let ((beg ,beg
) (end ,end
))
1469 (put-text-property beg end
'c-in-sws t
)
1470 ,@(when (facep 'c-debug-is-sws-face
)
1471 `((c-debug-add-face beg end
'c-debug-in-sws-face
)))))
1473 (defmacro c-remove-is-sws
(beg end
)
1474 ;; This macro does a hidden buffer change.
1475 `(let ((beg ,beg
) (end ,end
))
1476 (remove-text-properties beg end
'(c-is-sws nil
))
1477 ,@(when (facep 'c-debug-is-sws-face
)
1478 `((c-debug-remove-face beg end
'c-debug-is-sws-face
)))))
1480 (defmacro c-remove-in-sws
(beg end
)
1481 ;; This macro does a hidden buffer change.
1482 `(let ((beg ,beg
) (end ,end
))
1483 (remove-text-properties beg end
'(c-in-sws nil
))
1484 ,@(when (facep 'c-debug-is-sws-face
)
1485 `((c-debug-remove-face beg end
'c-debug-in-sws-face
)))))
1487 (defmacro c-remove-is-and-in-sws
(beg end
)
1488 ;; This macro does a hidden buffer change.
1489 `(let ((beg ,beg
) (end ,end
))
1490 (remove-text-properties beg end
'(c-is-sws nil c-in-sws nil
))
1491 ,@(when (facep 'c-debug-is-sws-face
)
1492 `((c-debug-remove-face beg end
'c-debug-is-sws-face
)
1493 (c-debug-remove-face beg end
'c-debug-in-sws-face
)))))
1495 (defsubst c-invalidate-sws-region-after
(beg end
)
1496 ;; Called from `after-change-functions'. Note that if
1497 ;; `c-forward-sws' or `c-backward-sws' are used outside
1498 ;; `c-save-buffer-state' or similar then this will remove the cache
1499 ;; properties right after they're added.
1501 ;; This function does hidden buffer changes.
1504 ;; Adjust the end to remove the properties in any following simple
1505 ;; ws up to and including the next line break, if there is any
1506 ;; after the changed region. This is necessary e.g. when a rung
1507 ;; marked empty line is converted to a line comment by inserting
1508 ;; "//" before the line break. In that case the line break would
1509 ;; keep the rung mark which could make a later `c-backward-sws'
1510 ;; move into the line comment instead of over it.
1512 (skip-chars-forward " \t\f\v")
1513 (when (and (eolp) (not (eobp)))
1514 (setq end
(1+ (point)))))
1516 (when (and (= beg end
)
1517 (get-text-property beg
'c-in-sws
)
1519 (get-text-property (1- beg
) 'c-in-sws
))
1520 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1521 ;; safe to keep a range that was continuous before the change. E.g:
1527 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1528 ;; after "foo" is removed then "bar" will become part of the cpp
1529 ;; directive instead of a syntactically relevant token. In that
1530 ;; case there's no longer syntactic ws from "#" to "b".
1531 (setq beg
(1- beg
)))
1533 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end
)
1534 (c-remove-is-and-in-sws beg end
))
1536 (defun c-forward-sws ()
1537 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1539 ;; This function might do hidden buffer changes.
1541 (let (;; `rung-pos' is set to a position as early as possible in the
1542 ;; unmarked part of the simple ws region.
1543 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1544 rung-is-marked next-rung-is-marked simple-ws-end
1545 ;; `safe-start' is set when it's safe to cache the start position.
1546 ;; It's not set if we've initially skipped over comments and line
1547 ;; continuations since we might have gone out through the end of a
1548 ;; macro then. This provision makes `c-forward-sws' not populate the
1549 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1553 ;; Skip simple ws and do a quick check on the following character to see
1554 ;; if it's anything that can't start syntactic ws, so we can bail out
1555 ;; early in the majority of cases when there just are a few ws chars.
1556 (skip-chars-forward " \t\n\r\f\v")
1557 (when (looking-at c-syntactic-ws-start
)
1559 (setq rung-end-pos
(min (1+ (point)) (point-max)))
1560 (if (setq rung-is-marked
(text-property-any rung-pos rung-end-pos
1562 ;; Find the last rung position to avoid setting properties in all
1563 ;; the cases when the marked rung is complete.
1564 ;; (`next-single-property-change' is certain to move at least one
1566 (setq rung-pos
(1- (next-single-property-change
1567 rung-is-marked
'c-is-sws nil rung-end-pos
)))
1568 ;; Got no marked rung here. Since the simple ws might have started
1569 ;; inside a line comment or cpp directive we must set `rung-pos' as
1570 ;; high as possible.
1571 (setq rung-pos
(point)))
1576 (when (and rung-is-marked
1577 (get-text-property (point) 'c-in-sws
))
1579 ;; The following search is the main reason that `c-in-sws'
1580 ;; and `c-is-sws' aren't combined to one property.
1581 (goto-char (next-single-property-change
1582 (point) 'c-in-sws nil
(point-max)))
1583 (unless (get-text-property (point) 'c-is-sws
)
1584 ;; If the `c-in-sws' region extended past the last
1585 ;; `c-is-sws' char we have to go back a bit.
1586 (or (get-text-property (1- (point)) 'c-is-sws
)
1587 (goto-char (previous-single-property-change
1588 (point) 'c-is-sws
)))
1592 "c-forward-sws cached move %s -> %s (max %s)"
1593 rung-pos
(point) (point-max))
1595 (setq rung-pos
(point))
1596 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1599 ;; We'll loop here if there is simple ws after the last rung.
1600 ;; That means that there's been some change in it and it's
1601 ;; possible that we've stepped into another ladder, so extend
1602 ;; the previous one to join with it if there is one, and try to
1603 ;; use the cache again.
1605 "c-forward-sws extending rung with [%s..%s] (max %s)"
1606 (1+ rung-pos
) (1+ (point)) (point-max))
1607 (unless (get-text-property (point) 'c-is-sws
)
1608 ;; Remove any `c-in-sws' property from the last char of
1609 ;; the rung before we mark it with `c-is-sws', so that we
1610 ;; won't connect with the remains of a broken "ladder".
1611 (c-remove-in-sws (point) (1+ (point))))
1612 (c-put-is-sws (1+ rung-pos
)
1614 (c-put-in-sws rung-pos
1615 (setq rung-pos
(point)
1616 last-put-in-sws-pos rung-pos
)))
1618 (setq simple-ws-end
(point))
1619 (c-forward-comments)
1622 ((/= (point) simple-ws-end
)
1623 ;; Skipped over comments. Don't cache at eob in case the buffer
1628 (and c-opt-cpp-prefix
1629 (looking-at c-opt-cpp-start
)
1630 (progn (skip-chars-backward " \t")
1633 (progn (backward-char)
1634 (not (eq (char-before) ?
\\))))))
1635 ;; Skip a preprocessor directive.
1637 (while (and (eq (char-before) ?
\\)
1638 (= (forward-line 1) 0))
1642 ;; Don't cache at eob in case the buffer is narrowed.
1645 ;; We've searched over a piece of non-white syntactic ws. See if this
1647 (setq next-rung-pos
(point))
1648 (skip-chars-forward " \t\n\r\f\v")
1649 (setq rung-end-pos
(min (1+ (point)) (point-max)))
1652 ;; Cache if we haven't skipped comments only, and if we started
1653 ;; either from a marked rung or from a completely uncached
1657 (not (get-text-property simple-ws-end
'c-in-sws
))))
1659 ;; See if there's a marked rung in the encountered simple ws. If
1660 ;; so then we can cache, unless `safe-start' is nil. Even then
1661 ;; we need to do this to check if the cache can be used for the
1663 (and (setq next-rung-is-marked
1664 (text-property-any next-rung-pos rung-end-pos
1670 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1671 rung-pos
(1+ simple-ws-end
) next-rung-pos rung-end-pos
1674 ;; Remove the properties for any nested ws that might be cached.
1675 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1677 (c-remove-is-sws (1+ simple-ws-end
) next-rung-pos
)
1678 (unless (and rung-is-marked
(= rung-pos simple-ws-end
))
1679 (c-put-is-sws rung-pos
1681 (setq rung-is-marked t
))
1682 (c-put-in-sws rung-pos
1683 (setq rung-pos
(point)
1684 last-put-in-sws-pos rung-pos
))
1685 (unless (get-text-property (1- rung-end-pos
) 'c-is-sws
)
1686 ;; Remove any `c-in-sws' property from the last char of
1687 ;; the rung before we mark it with `c-is-sws', so that we
1688 ;; won't connect with the remains of a broken "ladder".
1689 (c-remove-in-sws (1- rung-end-pos
) rung-end-pos
))
1690 (c-put-is-sws next-rung-pos
1694 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1695 rung-pos
(1+ simple-ws-end
) next-rung-pos rung-end-pos
1698 ;; Set `rung-pos' for the next rung. It's the same thing here as
1699 ;; initially, except that the rung position is set as early as
1700 ;; possible since we can't be in the ending ws of a line comment or
1701 ;; cpp directive now.
1702 (if (setq rung-is-marked next-rung-is-marked
)
1703 (setq rung-pos
(1- (next-single-property-change
1704 rung-is-marked
'c-is-sws nil rung-end-pos
)))
1705 (setq rung-pos next-rung-pos
))
1706 (setq safe-start t
)))
1708 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1709 ;; another one after the point (which might occur when editing inside a
1710 ;; comment or macro).
1711 (when (eq last-put-in-sws-pos
(point))
1712 (cond ((< last-put-in-sws-pos
(point-max))
1714 "c-forward-sws clearing at %s for cache separation"
1715 last-put-in-sws-pos
)
1716 (c-remove-in-sws last-put-in-sws-pos
1717 (1+ last-put-in-sws-pos
)))
1719 ;; If at eob we have to clear the last character before the end
1720 ;; instead since the buffer might be narrowed and there might
1721 ;; be a `c-in-sws' after (point-max). In this case it's
1722 ;; necessary to clear both properties.
1724 "c-forward-sws clearing thoroughly at %s for cache separation"
1725 (1- last-put-in-sws-pos
))
1726 (c-remove-is-and-in-sws (1- last-put-in-sws-pos
)
1727 last-put-in-sws-pos
))))
1730 (defun c-backward-sws ()
1731 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1733 ;; This function might do hidden buffer changes.
1735 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1736 ;; part of the simple ws region.
1737 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1738 rung-is-marked simple-ws-beg cmt-skip-pos
)
1740 ;; Skip simple horizontal ws and do a quick check on the preceding
1741 ;; character to see if it's anying that can't end syntactic ws, so we can
1742 ;; bail out early in the majority of cases when there just are a few ws
1743 ;; chars. Newlines are complicated in the backward direction, so we can't
1745 (skip-chars-backward " \t\f")
1746 (when (and (not (bobp))
1749 (looking-at c-syntactic-ws-end
)))
1751 ;; Try to find a rung position in the simple ws preceding point, so that
1752 ;; we can get a cache hit even if the last bit of the simple ws has
1753 ;; changed recently.
1754 (setq simple-ws-beg
(point))
1755 (skip-chars-backward " \t\n\r\f\v")
1756 (if (setq rung-is-marked
(text-property-any
1757 (point) (min (1+ rung-pos
) (point-max))
1759 ;; `rung-pos' will be the earliest marked position, which means that
1760 ;; there might be later unmarked parts in the simple ws region.
1761 ;; It's not worth the effort to fix that; the last part of the
1762 ;; simple ws is also typically edited often, so it could be wasted.
1763 (goto-char (setq rung-pos rung-is-marked
))
1764 (goto-char simple-ws-beg
))
1769 (when (and rung-is-marked
1771 (get-text-property (1- (point)) 'c-in-sws
))
1773 ;; The following search is the main reason that `c-in-sws'
1774 ;; and `c-is-sws' aren't combined to one property.
1775 (goto-char (previous-single-property-change
1776 (point) 'c-in-sws nil
(point-min)))
1777 (unless (get-text-property (point) 'c-is-sws
)
1778 ;; If the `c-in-sws' region extended past the first
1779 ;; `c-is-sws' char we have to go forward a bit.
1780 (goto-char (next-single-property-change
1781 (point) 'c-is-sws
)))
1784 "c-backward-sws cached move %s <- %s (min %s)"
1785 (point) rung-pos
(point-min))
1787 (setq rung-pos
(point))
1788 (if (and (< (min (skip-chars-backward " \t\f\v")
1790 (setq simple-ws-beg
(point))
1791 (skip-chars-backward " \t\n\r\f\v")))
1793 (setq rung-is-marked
1794 (text-property-any (point) rung-pos
1797 (goto-char simple-ws-beg
)
1800 ;; We'll loop here if there is simple ws before the first rung.
1801 ;; That means that there's been some change in it and it's
1802 ;; possible that we've stepped into another ladder, so extend
1803 ;; the previous one to join with it if there is one, and try to
1804 ;; use the cache again.
1806 "c-backward-sws extending rung with [%s..%s] (min %s)"
1807 rung-is-marked rung-pos
(point-min))
1808 (unless (get-text-property (1- rung-pos
) 'c-is-sws
)
1809 ;; Remove any `c-in-sws' property from the last char of
1810 ;; the rung before we mark it with `c-is-sws', so that we
1811 ;; won't connect with the remains of a broken "ladder".
1812 (c-remove-in-sws (1- rung-pos
) rung-pos
))
1813 (c-put-is-sws rung-is-marked
1815 (c-put-in-sws rung-is-marked
1817 (setq rung-pos rung-is-marked
1818 last-put-in-sws-pos rung-pos
))
1820 (c-backward-comments)
1821 (setq cmt-skip-pos
(point))
1824 ((and c-opt-cpp-prefix
1825 (/= cmt-skip-pos simple-ws-beg
)
1826 (c-beginning-of-macro))
1827 ;; Inside a cpp directive. See if it should be skipped over.
1828 (let ((cpp-beg (point)))
1830 ;; Move back over all line continuations in the region skipped
1831 ;; over by `c-backward-comments'. If we go past it then we
1832 ;; started inside the cpp directive.
1833 (goto-char simple-ws-beg
)
1835 (while (and (> (point) cmt-skip-pos
)
1836 (progn (backward-char)
1837 (eq (char-before) ?
\\)))
1838 (beginning-of-line))
1840 (if (< (point) cmt-skip-pos
)
1841 ;; Don't move past the cpp directive if we began inside
1842 ;; it. Note that the position at the end of the last line
1843 ;; of the macro is also considered to be within it.
1844 (progn (goto-char cmt-skip-pos
)
1847 ;; It's worthwhile to spend a little bit of effort on finding
1848 ;; the end of the macro, to get a good `simple-ws-beg'
1849 ;; position for the cache. Note that `c-backward-comments'
1850 ;; could have stepped over some comments before going into
1851 ;; the macro, and then `simple-ws-beg' must be kept on the
1852 ;; same side of those comments.
1853 (goto-char simple-ws-beg
)
1854 (skip-chars-backward " \t\n\r\f\v")
1855 (if (eq (char-before) ?
\\)
1858 (if (< (point) simple-ws-beg
)
1859 ;; Might happen if comments after the macro were skipped
1861 (setq simple-ws-beg
(point)))
1866 ((/= (save-excursion
1867 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg
)
1868 (setq next-rung-pos
(point)))
1870 ;; Skipped over comments. Must put point at the end of
1871 ;; the simple ws at point since we might be after a line
1872 ;; comment or cpp directive that's been partially
1873 ;; narrowed out, and we can't risk marking the simple ws
1874 ;; at the end of it.
1875 (goto-char next-rung-pos
)
1878 ;; We've searched over a piece of non-white syntactic ws. See if this
1880 (setq next-rung-pos
(point))
1881 (skip-chars-backward " \t\f\v")
1884 ;; Cache if we started either from a marked rung or from a
1885 ;; completely uncached position.
1887 (not (get-text-property (1- simple-ws-beg
) 'c-in-sws
))
1889 ;; Cache if there's a marked rung in the encountered simple ws.
1891 (skip-chars-backward " \t\n\r\f\v")
1892 (text-property-any (point) (min (1+ next-rung-pos
) (point-max))
1897 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
1898 (point) (1+ next-rung-pos
)
1899 simple-ws-beg
(min (1+ rung-pos
) (point-max))
1902 ;; Remove the properties for any nested ws that might be cached.
1903 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1905 (c-remove-is-sws (1+ next-rung-pos
) simple-ws-beg
)
1906 (unless (and rung-is-marked
(= simple-ws-beg rung-pos
))
1907 (let ((rung-end-pos (min (1+ rung-pos
) (point-max))))
1908 (unless (get-text-property (1- rung-end-pos
) 'c-is-sws
)
1909 ;; Remove any `c-in-sws' property from the last char of
1910 ;; the rung before we mark it with `c-is-sws', so that we
1911 ;; won't connect with the remains of a broken "ladder".
1912 (c-remove-in-sws (1- rung-end-pos
) rung-end-pos
))
1913 (c-put-is-sws simple-ws-beg
1915 (setq rung-is-marked t
)))
1916 (c-put-in-sws (setq simple-ws-beg
(point)
1917 last-put-in-sws-pos simple-ws-beg
)
1919 (c-put-is-sws (setq rung-pos simple-ws-beg
)
1920 (1+ next-rung-pos
)))
1923 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
1924 (point) (1+ next-rung-pos
)
1925 simple-ws-beg
(min (1+ rung-pos
) (point-max))
1927 (setq rung-pos next-rung-pos
1928 simple-ws-beg
(point))
1931 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1932 ;; another one before the point (which might occur when editing inside a
1933 ;; comment or macro).
1934 (when (eq last-put-in-sws-pos
(point))
1935 (cond ((< (point-min) last-put-in-sws-pos
)
1937 "c-backward-sws clearing at %s for cache separation"
1938 (1- last-put-in-sws-pos
))
1939 (c-remove-in-sws (1- last-put-in-sws-pos
)
1940 last-put-in-sws-pos
))
1942 ;; If at bob and the buffer is narrowed, we have to clear the
1943 ;; character we're standing on instead since there might be a
1944 ;; `c-in-sws' before (point-min). In this case it's necessary
1945 ;; to clear both properties.
1947 "c-backward-sws clearing thoroughly at %s for cache separation"
1948 last-put-in-sws-pos
)
1949 (c-remove-is-and-in-sws last-put-in-sws-pos
1950 (1+ last-put-in-sws-pos
)))))
1954 ;; Other whitespace tools
1955 (defun c-partial-ws-p (beg end
)
1956 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
1957 ;; region? This is a "heuristic" function. .....
1959 ;; The motivation for the second bit is to check whether removing this
1960 ;; region would coalesce two symbols.
1962 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
1963 ;; careful about using this function for, e.g. AWK. (2007/3/7)
1965 (let ((end+1 (min (1+ end
) (point-max))))
1966 (or (progn (goto-char (max (point-min) (1- beg
)))
1967 (c-skip-ws-forward end
)
1969 (progn (goto-char beg
)
1970 (c-skip-ws-forward end
+1)
1971 (eq (point) end
+1))))))
1973 ;; A system for finding noteworthy parens before the point.
1975 (defconst c-state-cache-too-far
5000)
1976 ;; A maximum comfortable scanning distance, e.g. between
1977 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
1978 ;; this distance is exceeded, we take "emergency meausures", e.g. by clearing
1979 ;; the cache and starting again from point-min or a beginning of defun. This
1980 ;; value can be tuned for efficiency or set to a lower value for testing.
1982 (defvar c-state-cache nil
)
1983 (make-variable-buffer-local 'c-state-cache
)
1984 ;; The state cache used by `c-parse-state' to cut down the amount of
1985 ;; searching. It's the result from some earlier `c-parse-state' call. See
1986 ;; `c-parse-state''s doc string for details of its structure.
1988 ;; The use of the cached info is more effective if the next
1989 ;; `c-parse-state' call is on a line close by the one the cached state
1990 ;; was made at; the cache can actually slow down a little if the
1991 ;; cached state was made very far back in the buffer. The cache is
1992 ;; most effective if `c-parse-state' is used on each line while moving
1995 (defvar c-state-cache-good-pos
1)
1996 (make-variable-buffer-local 'c-state-cache-good-pos
)
1997 ;; This is a position where `c-state-cache' is known to be correct, or
1998 ;; nil (see below). It's a position inside one of the recorded unclosed
1999 ;; parens or the top level, but not further nested inside any literal or
2000 ;; subparen that is closed before the last recorded position.
2002 ;; The exact position is chosen to try to be close to yet earlier than
2003 ;; the position where `c-state-cache' will be called next. Right now
2004 ;; the heuristic is to set it to the position after the last found
2005 ;; closing paren (of any type) before the line on which
2006 ;; `c-parse-state' was called. That is chosen primarily to work well
2007 ;; with refontification of the current line.
2009 ;; 2009-07-28: When `c-state-point-min' and the last position where
2010 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2011 ;; both in the same literal, there is no such "good position", and
2012 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2013 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2015 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2016 ;; the middle of the desert, as long as it is not within a brace pair
2017 ;; recorded in `c-state-cache' or a paren/bracket pair.
2020 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2021 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2022 ;; speed up testing for non-literality.
2023 (defconst c-state-nonlit-pos-interval
10000)
2024 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2026 (defvar c-state-nonlit-pos-cache nil
)
2027 (make-variable-buffer-local 'c-state-nonlit-pos-cache
)
2028 ;; A list of buffer positions which are known not to be in a literal. This is
2029 ;; ordered with higher positions at the front of the list. Only those which
2030 ;; are less than `c-state-nonlit-pos-cache-limit' are valid.
2032 (defvar c-state-nonlit-pos-cache-limit
1)
2033 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit
)
2034 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2035 ;; reduced by buffer changes, and increased by invocations of
2036 ;; `c-state-literal-at'.
2038 (defsubst c-state-pp-to-literal
(from to
)
2039 ;; Do a parse-partial-sexp from FROM to TO, returning the bounds of any
2040 ;; literal at TO as a cons, otherwise NIL.
2041 ;; FROM must not be in a literal, and the buffer should already be wide
2044 (let ((s (parse-partial-sexp from to
)))
2045 (when (or (nth 3 s
) (nth 4 s
)) ; in a string or comment
2046 (parse-partial-sexp (point) (point-max)
2050 'syntax-table
) ; stop at end of literal
2051 (cons (nth 8 s
) (point))))))
2053 (defun c-state-literal-at (here)
2054 ;; If position HERE is inside a literal, return (START . END), the
2055 ;; boundaries of the literal (which may be outside the accessible bit of the
2056 ;; buffer). Otherwise, return nil.
2058 ;; This function is almost the same as `c-literal-limits'. It differs in
2059 ;; that it is a lower level function, and that it rigourously follows the
2060 ;; syntax from BOB, whereas `c-literal-limits' uses a "local" safe position.
2064 (let ((c c-state-nonlit-pos-cache
)
2066 ;; Trim the cache to take account of buffer changes.
2067 (while (and c
(> (car c
) c-state-nonlit-pos-cache-limit
))
2069 (setq c-state-nonlit-pos-cache c
)
2071 (while (and c
(> (car c
) here
))
2073 (setq pos
(or (car c
) (point-min)))
2075 (while (<= (setq npos
(+ pos c-state-nonlit-pos-interval
))
2077 (setq lit
(c-state-pp-to-literal pos npos
))
2078 (setq pos
(or (cdr lit
) npos
)) ; end of literal containing npos.
2079 (setq c-state-nonlit-pos-cache
(cons pos c-state-nonlit-pos-cache
)))
2081 (if (> pos c-state-nonlit-pos-cache-limit
)
2082 (setq c-state-nonlit-pos-cache-limit pos
))
2084 (setq lit
(c-state-pp-to-literal pos here
)))
2087 (defsubst c-state-lit-beg
(pos)
2088 ;; Return the start of the literal containing POS, or POS itself.
2089 (or (car (c-state-literal-at pos
))
2092 (defsubst c-state-cache-non-literal-place
(pos state
)
2093 ;; Return a position outside of a string/comment at or before POS.
2094 ;; STATE is the parse-partial-sexp state at POS.
2095 (if (or (nth 3 state
) ; in a string?
2096 (nth 4 state
)) ; in a comment?
2101 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2102 ;; Stuff to do with point-min, and coping with any literal there.
2103 (defvar c-state-point-min
1)
2104 (make-variable-buffer-local 'c-state-point-min
)
2105 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2106 ;; narrowing is likely to affect the parens that are visible before the point.
2108 (defvar c-state-point-min-lit-type nil
)
2109 (make-variable-buffer-local 'c-state-point-min-lit-type
)
2110 (defvar c-state-point-min-lit-start nil
)
2111 (make-variable-buffer-local 'c-state-point-min-lit-start
)
2112 ;; These two variables define the literal, if any, containing point-min.
2113 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2114 ;; literal. If there's no literal there, they're both nil.
2116 (defvar c-state-min-scan-pos
1)
2117 (make-variable-buffer-local 'c-state-min-scan-pos
)
2118 ;; This is the earliest buffer-pos from which scanning can be done. It is
2119 ;; either the end of the literal containing point-min, or point-min itself.
2120 ;; It becomes nil if the buffer is changed earlier than this point.
2121 (defun c-state-get-min-scan-pos ()
2122 ;; Return the lowest valid scanning pos. This will be the end of the
2123 ;; literal enclosing point-min, or point-min itself.
2124 (or c-state-min-scan-pos
2128 (goto-char c-state-point-min-lit-start
)
2129 (if (eq c-state-point-min-lit-type
'string
)
2131 (forward-comment 1))
2132 (setq c-state-min-scan-pos
(point))))))
2134 (defun c-state-mark-point-min-literal ()
2135 ;; Determine the properties of any literal containing POINT-MIN, setting the
2136 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2137 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2138 (let ((p-min (point-min))
2142 (setq lit
(c-state-literal-at p-min
))
2144 (setq c-state-point-min-lit-type
2146 (goto-char (car lit
))
2148 ((looking-at c-block-comment-start-regexp
) 'c
)
2149 ((looking-at c-line-comment-starter
) 'c
++)
2151 c-state-point-min-lit-start
(car lit
)
2152 c-state-min-scan-pos
(cdr lit
))
2153 (setq c-state-point-min-lit-type nil
2154 c-state-point-min-lit-start nil
2155 c-state-min-scan-pos p-min
)))))
2158 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2159 ;; A variable which signals a brace dessert - helpful for reducing the number
2160 ;; of fruitless backward scans.
2161 (defvar c-state-brace-pair-desert nil
)
2162 (make-variable-buffer-local 'c-state-brace-pair-desert
)
2163 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when an
2164 ;; that defun has searched backwards for a brace pair and not found one. Its
2165 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2166 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2167 ;; nil when at top level) and FROM is where the backward search started. It
2168 ;; is reset to nil in `c-invalidate-state-cache'.
2171 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2172 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2173 ;; list of like structure.
2174 (defmacro c-state-cache-top-lparen
(&optional cache
)
2175 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2176 ;; (default `c-state-cache') (or nil).
2177 (let ((cash (or cache
'c-state-cache
)))
2178 `(if (consp (car ,cash
))
2182 (defmacro c-state-cache-top-paren
(&optional cache
)
2183 ;; Return the address of the latest brace/bracket/paren (whether left or
2184 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2185 (let ((cash (or cache
'c-state-cache
)))
2186 `(if (consp (car ,cash
))
2190 (defmacro c-state-cache-after-top-paren
(&optional cache
)
2191 ;; Return the position just after the latest brace/bracket/paren (whether
2192 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2193 (let ((cash (or cache
'c-state-cache
)))
2194 `(if (consp (car ,cash
))
2197 (1+ (car ,cash
))))))
2199 (defun c-get-cache-scan-pos (here)
2200 ;; From the state-cache, determine the buffer position from which we might
2201 ;; scan forward to HERE to update this cache. This position will be just
2202 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2203 ;; return the earliest position in the accessible region which isn't within
2204 ;; a literal. If the visible portion of the buffer is entirely within a
2205 ;; literal, return NIL.
2206 (let ((c c-state-cache
) elt
)
2207 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2209 (>= (c-state-cache-top-lparen c
) here
))
2215 (if (> (cdr elt
) here
)
2219 ((<= (c-state-get-min-scan-pos) here
)
2220 (c-state-get-min-scan-pos))
2223 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2224 ;; Variables which keep track of preprocessor constructs.
2225 (defvar c-state-old-cpp-beg nil
)
2226 (make-variable-buffer-local 'c-state-old-cpp-beg
)
2227 (defvar c-state-old-cpp-end nil
)
2228 (make-variable-buffer-local 'c-state-old-cpp-end
)
2229 ;; These are the limits of the macro containing point at the previous call of
2230 ;; `c-parse-state', or nil.
2232 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2233 ;; Defuns which analyse the buffer, yet don't change `c-state-cache'.
2234 (defun c-get-fallback-scan-pos (here)
2235 ;; Return a start position for building `c-state-cache' from
2236 ;; scratch. This will be at the top level, 2 defuns back.
2238 ;; Go back 2 bods, but ignore any bogus positions returned by
2239 ;; beginning-of-defun (i.e. open paren in column zero).
2242 (while (not (or (bobp) (zerop cnt
)))
2243 (c-beginning-of-defun-1) ; Pure elisp BOD.
2244 (if (eq (char-after) ?\
{)
2245 (setq cnt
(1- cnt
)))))
2248 (defun c-state-balance-parens-backwards (here top
)
2249 ;; Return the position of the opening paren/brace/bracket before HERE which
2250 ;; matches the outermost close p/b/b between HERE and TOP, like this:
2252 ;; ......................................
2254 ;; ( [ ( ........... ) ( ) ] )
2259 ;; If there aren't enough opening paren/brace/brackets, return the position
2260 ;; of the outermost one found, or HERE it there are none. If there are no
2261 ;; closeing p/b/bs between HERE and TOP, return HERE. HERE and TOP must not
2262 ;; be inside literals. Only the accessible portion of the buffer will be
2265 ;; PART 1: scan from `here' up to `top', accumulating ")"s which enclose
2266 ;; `here'. Go round the next loop each time we pass over such a ")". These
2267 ;; probably match "("s before `here'.
2268 (let (pos pa ren
+1 lonely-rens
)
2271 (narrow-to-region (point-min) top
) ; This can move point, sometimes.
2275 (setq ren
+1 (scan-lists pos
1 1)) ; might signal
2276 (setq lonely-rens
(cons ren
+1 lonely-rens
)
2279 ;; PART 2: Scan back before `here' searching for the "("s
2280 ;; matching/mismatching the ")"s found above. We only need to direct the
2281 ;; caller to scan when we've encountered unmatched right parens.
2286 (and lonely-rens
; actual values aren't used.
2287 (setq pa
(scan-lists pos -
1 1)))
2289 (setq lonely-rens
(cdr lonely-rens
)))) ;)
2293 (defun c-parse-state-get-strategy (here good-pos
)
2294 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2295 ;; to minimise the amount of scanning. HERE is the pertinent position in
2296 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2297 ;; its head trimmed) is known to be good, or nil if there is no such
2300 ;; The return value is a list, one of the following:
2302 ;; o - ('forward CACHE-POS START-POINT) - scan forward from START-POINT,
2303 ;; which is not less than CACHE-POS.
2304 ;; o - ('backward CACHE-POS nil) - scan backwards (from HERE).
2305 ;; o - ('BOD nil START-POINT) - scan forwards from START-POINT, which is at the
2307 ;; o - ('IN-LIT nil nil) - point is inside the literal containing point-min.
2308 ;; , where CACHE-POS is the highest position recorded in `c-state-cache' at
2310 (let ((cache-pos (c-get-cache-scan-pos here
)) ; highest position below HERE in cache (or 1)
2311 BOD-pos
; position of 2nd BOD before HERE.
2312 strategy
; 'forward, 'backward, 'BOD, or 'IN-LIT.
2314 how-far
) ; putative scanning distance.
2315 (setq good-pos
(or good-pos
(c-state-get-min-scan-pos)))
2317 ((< here
(c-state-get-min-scan-pos))
2318 (setq strategy
'IN-LIT
2323 (setq strategy
'forward
2324 start-point
(max good-pos cache-pos
)
2325 how-far
(- here start-point
)))
2326 ((< (- good-pos here
) (- here cache-pos
)) ; FIXME!!! ; apply some sort of weighting.
2327 (setq strategy
'backward
2328 how-far
(- good-pos here
)))
2330 (setq strategy
'forward
2331 how-far
(- here cache-pos
)
2332 start-point cache-pos
)))
2334 ;; Might we be better off starting from the top level, two defuns back,
2336 (when (> how-far c-state-cache-too-far
)
2337 (setq BOD-pos
(c-get-fallback-scan-pos here
)) ; somewhat EXPENSIVE!!!
2338 (if (< (- here BOD-pos
) how-far
)
2340 start-point BOD-pos
)))
2344 (and (memq strategy
'(forward backward
)) cache-pos
)
2345 (and (memq strategy
'(forward BOD
)) start-point
))))
2348 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2349 ;; Routines which change `c-state-cache' and associated values.
2350 (defun c-renarrow-state-cache ()
2351 ;; The region (more precisely, point-min) has changed since we
2352 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2353 (if (< (point-min) c-state-point-min
)
2354 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2355 ;; It would be possible to do a better job here and recalculate the top
2358 (c-state-mark-point-min-literal)
2359 (setq c-state-cache nil
2360 c-state-cache-good-pos c-state-min-scan-pos
2361 c-state-brace-pair-desert nil
))
2363 ;; point-min has MOVED FORWARD.
2365 ;; Is the new point-min inside a (different) literal?
2366 (unless (and c-state-point-min-lit-start
; at prev. point-min
2367 (< (point-min) (c-state-get-min-scan-pos)))
2368 (c-state-mark-point-min-literal))
2370 ;; Cut off a bit of the tail from `c-state-cache'.
2371 (let ((ptr (cons nil c-state-cache
))
2373 (while (and (setq pa
(c-state-cache-top-lparen (cdr ptr
)))
2374 (>= pa
(point-min)))
2375 (setq ptr
(cdr ptr
)))
2378 (if (eq (cdr ptr
) c-state-cache
)
2379 (setq c-state-cache nil
2380 c-state-cache-good-pos c-state-min-scan-pos
)
2382 (setq c-state-cache-good-pos
(1+ (c-state-cache-top-lparen))))
2385 (setq c-state-point-min
(point-min)))
2387 (defun c-append-lower-brace-pair-to-state-cache (from &optional upper-lim
)
2388 ;; If there is a brace pair preceding FROM in the buffer (not necessarily
2389 ;; immediately preceding), push a cons onto `c-state-cache' to represent it.
2390 ;; FROM must not be inside a literal. If UPPER-LIM is non-nil, we append
2391 ;; the highest brace pair whose "}" is below UPPER-LIM.
2393 ;; Return non-nil when this has been done.
2395 ;; This routine should be fast. Since it can get called a LOT, we maintain
2396 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2397 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2400 (let ((bra from
) ce
; Positions of "{" and "}".
2402 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2403 (macro-start-or-from
2404 (progn (goto-char from
)
2405 (c-beginning-of-macro)
2407 (or upper-lim
(setq upper-lim from
))
2409 ;; If we're essentially repeating a fruitless search, just give up.
2410 (unless (and c-state-brace-pair-desert
2411 (eq cache-pos
(car c-state-brace-pair-desert
))
2412 (<= from
(cdr c-state-brace-pair-desert
)))
2413 ;; Only search what we absolutely need to:
2414 (if (and c-state-brace-pair-desert
2415 (> from
(cdr c-state-brace-pair-desert
)))
2416 (narrow-to-region (cdr c-state-brace-pair-desert
) (point-max)))
2418 ;; In the next pair of nested loops, the inner one moves back past a
2419 ;; pair of (mis-)matching parens or brackets; the outer one moves
2420 ;; back over a sequence of unmatched close brace/paren/bracket each
2426 (and (setq ce
(scan-lists bra -
1 -
1)) ; back past )/]/}; might signal
2427 (setq bra
(scan-lists ce -
1 1)) ; back past (/[/{; might signal
2428 (or (> ce upper-lim
)
2429 (not (eq (char-after bra
) ?\
{))
2430 (and (goto-char bra
)
2431 (c-beginning-of-macro)
2432 (< (point) macro-start-or-from
))))))
2433 (and ce
(< ce bra
)))
2434 (setq bra ce
)) ; If we just backed over an unbalanced closing
2437 (if (and ce
(< bra ce
) (eq (char-after bra
) ?\
{))
2438 ;; We've found the desired brace-pair.
2440 (setq new-cons
(cons bra
(1+ ce
)))
2442 ((consp (car c-state-cache
))
2443 (setcar c-state-cache new-cons
))
2444 ((and (numberp (car c-state-cache
)) ; probably never happens
2445 (< ce
(car c-state-cache
)))
2446 (setcdr c-state-cache
2447 (cons new-cons
(cdr c-state-cache
))))
2448 (t (setq c-state-cache
(cons new-cons c-state-cache
)))))
2450 ;; We haven't found a brace pair. Record this.
2451 (setq c-state-brace-pair-desert
(cons cache-pos from
))))))))
2453 (defsubst c-state-push-any-brace-pair
(bra+1 macro-start-or-here
)
2454 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2455 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2456 ;; "push" "a" brace pair onto `c-state-cache'.
2458 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2459 ;; otherwise push it normally.
2461 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2462 ;; latter is inside a macro, not being a macro containing
2463 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2464 ;; base pair. This latter case is assumed to be rare.
2466 ;; Note: POINT is not preserved in this routine.
2468 (if (or (> bra
+1 macro-start-or-here
)
2469 (progn (goto-char bra
+1)
2470 (not (c-beginning-of-macro))))
2472 (cons (cons (1- bra
+1)
2473 (scan-lists bra
+1 1 1))
2474 (if (consp (car c-state-cache
))
2477 ;; N.B. This defsubst codes one method for the simple, normal case,
2478 ;; and a more sophisticated, slower way for the general case. Don't
2479 ;; eliminate this defsubst - it's a speed optimisation.
2480 (c-append-lower-brace-pair-to-state-cache (1- bra
+1)))))
2482 (defun c-append-to-state-cache (from)
2483 ;; Scan the buffer from FROM to (point-max), adding elements into
2484 ;; `c-state-cache' for braces etc. Return a candidate for
2485 ;; `c-state-cache-good-pos'.
2487 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2488 ;; any. Typically, it is immediately after it. It must not be inside a
2490 (let ((here-bol (c-point 'bol
(point-max)))
2491 (macro-start-or-here
2492 (save-excursion (goto-char (point-max))
2493 (if (c-beginning-of-macro)
2496 pa
+1 ; pos just after an opening PAren (or brace).
2497 (ren+1 from
) ; usually a pos just after an closing paREN etc.
2498 ; Is actually the pos. to scan for a (/{/[ from,
2499 ; which sometimes is after a silly )/}/].
2500 paren
+1 ; Pos after some opening or closing paren.
2501 paren
+1s
; A list of `paren+1's; used to determine a
2503 bra
+1 ce
+1 ; just after L/R bra-ces.
2504 bra
+1s
; list of OLD values of bra+1.
2505 mstart
) ; start of a macro.
2508 ;; Each time round the following loop, we enter a succesively deeper
2509 ;; level of brace/paren nesting. (Except sometimes we "continue at
2510 ;; the existing level".) `pa+1' is a pos inside an opening
2511 ;; brace/paren/bracket, usually just after it.
2514 ;; Each time round the next loop moves forward over an opening then
2515 ;; a closing brace/bracket/paren. This loop is white hot, so it
2516 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2517 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2518 ;; call of `scan-lists' signals an error, which happens when there
2519 ;; are no more b/b/p's to scan.
2522 (setq pa
+1 (scan-lists ren
+1 1 -
1) ; Into (/{/[; might signal
2523 paren
+1s
(cons pa
+1 paren
+1s
))
2524 (setq ren
+1 (scan-lists pa
+1 1 1)) ; Out of )/}/]; might signal
2525 (if (and (eq (char-before pa
+1) ?
{)) ; Check for a macro later.
2527 (setcar paren
+1s ren
+1)))
2529 (if (and pa
+1 (> pa
+1 ren
+1))
2530 ;; We've just entered a deeper nesting level.
2532 ;; Insert the brace pair (if present) and the single open
2533 ;; paren/brace/bracket into `c-state-cache' It cannot be
2534 ;; inside a macro, except one around point, because of what
2535 ;; `c-neutralize-syntax-in-CPP' has done.
2536 (c-state-push-any-brace-pair bra
+1 macro-start-or-here
)
2537 ;; Insert the opening brace/bracket/paren position.
2538 (setq c-state-cache
(cons (1- pa
+1) c-state-cache
))
2539 ;; Clear admin stuff for the next more nested part of the scan.
2540 (setq ren
+1 pa
+1 pa
+1 nil bra
+1 nil bra
+1s nil
)
2541 t
) ; Carry on the loop
2543 ;; All open p/b/b's at this nesting level, if any, have probably
2544 ;; been closed by matching/mismatching ones. We're probably
2545 ;; finished - we just need to check for having found an
2546 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2547 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2548 (c-safe (setq ren
+1 (scan-lists ren
+1 1 1)))))) ; acts as loop control.
2550 ;; Record the final, innermost, brace-pair if there is one.
2551 (c-state-push-any-brace-pair bra
+1 macro-start-or-here
)
2553 ;; Determine a good pos
2554 (while (and (setq paren
+1 (car paren
+1s
))
2555 (> (if (> paren
+1 macro-start-or-here
)
2558 (setq mstart
(and (c-beginning-of-macro)
2560 (or mstart paren
+1))
2562 (setq paren
+1s
(cdr paren
+1s
)))
2564 ((and paren
+1 mstart
)
2565 (min paren
+1 mstart
))
2569 (defun c-remove-stale-state-cache (good-pos pps-point
)
2570 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2571 ;; not be in it when it is amended for position (point-max).
2572 ;; Additionally, the "outermost" open-brace entry before (point-max)
2573 ;; will be converted to a cons if the matching close-brace is scanned.
2575 ;; GOOD-POS is a "maximal" "safe position" - there must be no open
2576 ;; parens/braces/brackets between GOOD-POS and (point-max).
2578 ;; As a second thing, calculate the result of parse-partial-sexp at
2579 ;; PPS-POINT, w.r.t. GOOD-POS. The motivation here is that
2580 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
2581 ;; adjust it to get outside a string/comment. (Sorry about this! The code
2582 ;; needs to be FAST).
2584 ;; Return a list (GOOD-POS SCAN-BACK-POS PPS-STATE), where
2585 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
2586 ;; to be good (we aim for this to be as high as possible);
2587 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
2588 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
2589 ;; position to scan backwards from.
2590 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
2592 (narrow-to-region 1 (point-max))
2594 (let* ((in-macro-start ; point-max or beginning of macro containing it
2596 (goto-char (point-max))
2597 (and (c-beginning-of-macro)
2599 (good-pos-actual-macro-start ; Start of macro containing good-pos
2601 (and (< good-pos
(point-max))
2603 (goto-char good-pos
)
2604 (and (c-beginning-of-macro)
2606 (good-pos-actual-macro-end ; End of this macro, (maybe
2607 ; (point-max)), or nil.
2608 (and good-pos-actual-macro-start
2610 (goto-char good-pos-actual-macro-start
)
2613 pps-state
; Will be 9 or 10 elements long.
2615 upper-lim
; ,beyond which `c-state-cache' entries are removed
2617 pair-beg pps-point-state target-depth
)
2619 ;; Remove entries beyond (point-max). Also remove any entries inside
2620 ;; a macro, unless (point-max) is in the same macro.
2622 (if (or (null c-state-old-cpp-beg
)
2623 (and (> (point-max) c-state-old-cpp-beg
)
2624 (< (point-max) c-state-old-cpp-end
)))
2626 (min (point-max) c-state-old-cpp-beg
)))
2627 (while (and c-state-cache
(> (c-state-cache-top-lparen) upper-lim
))
2628 (setq c-state-cache
(cdr c-state-cache
)))
2629 ;; If `upper-lim' is inside the last recorded brace pair, remove its
2630 ;; RBrace and indicate we'll need to search backwards for a previous
2632 (when (and c-state-cache
2633 (consp (car c-state-cache
))
2634 (> (cdar c-state-cache
) upper-lim
))
2635 (setcar c-state-cache
(caar c-state-cache
))
2636 (setq scan-back-pos
(car c-state-cache
)))
2638 ;; The next loop jumps forward out of a nested level of parens each
2639 ;; time round; the corresponding elements in `c-state-cache' are
2640 ;; removed. `pos' is just after the brace-pair or the open paren at
2641 ;; (car c-state-cache). There can be no open parens/braces/brackets
2642 ;; between `good-pos'/`good-pos-actual-macro-start' and (point-max),
2643 ;; due to the interface spec to this function.
2644 (setq pos
(if good-pos-actual-macro-end
2645 (1+ good-pos-actual-macro-end
) ; get outside the macro as
2646 ; marked by a `category' text property.
2649 (while (and c-state-cache
2650 (< (point) (point-max)))
2652 ((null pps-state
) ; first time through
2653 (setq target-depth -
1))
2654 ((eq (car pps-state
) target-depth
) ; found closing ),},]
2655 (setq target-depth
(1- (car pps-state
))))
2656 ;; Do nothing when we've merely reached pps-point.
2662 (point) (if (< (point) pps-point
) pps-point
(point-max))
2666 (if (= (point) pps-point
)
2667 (setq pps-point-state pps-state
))
2669 (when (eq (car pps-state
) target-depth
)
2670 (setq pos
(point)) ; POS is now just after an R-paren/brace.
2672 ((and (consp (car c-state-cache
))
2673 (eq (point) (cdar c-state-cache
)))
2674 ;; We've just moved out of the paren pair containing the brace-pair
2675 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
2676 ;; and is potentially where the open brace of a cons in
2677 ;; c-state-cache will be.
2678 (setq pair-beg
(car-safe (cdr c-state-cache
))
2679 c-state-cache
(cdr-safe (cdr c-state-cache
)))) ; remove {}pair + containing Lparen.
2680 ((numberp (car c-state-cache
))
2681 (setq pair-beg
(car c-state-cache
)
2682 c-state-cache
(cdr c-state-cache
))) ; remove this
2684 ((numberp (cadr c-state-cache
))
2685 (setq pair-beg
(cadr c-state-cache
)
2686 c-state-cache
(cddr c-state-cache
))) ; Remove a paren pair
2687 ; together with enclosed brace pair.
2688 ;; (t nil) ; Ignore an unmated Rparen.
2691 (if (< (point) pps-point
)
2692 (setq pps-state
(parse-partial-sexp (point) pps-point
2693 nil nil
; TARGETDEPTH, STOPBEFORE
2696 ;; If the last paren pair we moved out of was actually a brace pair,
2697 ;; insert it into `c-state-cache'.
2698 (when (and pair-beg
(eq (char-after pair-beg
) ?
{))
2699 (if (consp (car-safe c-state-cache
))
2700 (setq c-state-cache
(cdr c-state-cache
)))
2701 (setq c-state-cache
(cons (cons pair-beg pos
)
2704 (list pos scan-back-pos pps-state
)))))
2706 (defun c-remove-stale-state-cache-backwards (here cache-pos
)
2707 ;; Strip stale elements of `c-state-cache' by moving backwards through the
2708 ;; buffer, and inform the caller of the scenario detected.
2710 ;; HERE is the position we're setting `c-state-cache' for.
2711 ;; CACHE-POS is just after the latest recorded position in `c-state-cache'
2712 ;; before HERE, or a position at or near point-min which isn't in a
2715 ;; This function must only be called only when (> `c-state-cache-good-pos'
2716 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
2717 ;; optimised to eliminate (or minimise) scanning between these two
2720 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
2721 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
2722 ;; could become so after missing elements are inserted into
2723 ;; `c-state-cache'. This is JUST AFTER an opening or closing
2724 ;; brace/paren/bracket which is already in `c-state-cache' or just before
2725 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
2726 ;; before `here''s line, or the start of the literal containing it.
2727 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
2728 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
2729 ;; to scan backwards from.
2730 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
2731 ;; POS and HERE which aren't recorded in `c-state-cache'.
2733 ;; The comments in this defun use "paren" to mean parenthesis or square
2734 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
2736 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
2738 ;; CP E here D C good
2739 (let ((pos c-state-cache-good-pos
)
2740 pa ren
; positions of "(" and ")"
2741 dropped-cons
; whether the last element dropped from `c-state-cache'
2742 ; was a cons (representing a brace-pair)
2743 good-pos
; see above.
2744 lit
; (START . END) of a literal containing some point.
2745 here-lit-start here-lit-end
; bounds of literal containing `here'
2747 (here-bol (c-point 'bol here
))
2748 (too-far-back (max (- here c-state-cache-too-far
) 1)))
2750 ;; Remove completely irrelevant entries from `c-state-cache'.
2751 (while (and c-state-cache
2752 (>= (setq pa
(c-state-cache-top-lparen)) here
))
2753 (setq dropped-cons
(consp (car c-state-cache
)))
2754 (setq c-state-cache
(cdr c-state-cache
))
2756 ;; At this stage, (> pos here);
2757 ;; (< (c-state-cache-top-lparen) here) (or is nil).
2759 ;; CASE 1: The top of the cache is a brace pair which now encloses `here'.
2760 ;; As good-pos, return the address. of the "{".
2761 (if (and (consp (car c-state-cache
))
2762 (> (cdar c-state-cache
) here
))
2763 ;; Since we've no knowledge of what's inside these braces, we have no
2764 ;; alternative but to direct the caller to scan the buffer from the
2767 (setq pos
(caar c-state-cache
))
2768 (setcar c-state-cache pos
)
2769 (list (1+ pos
) pos t
)) ; return value. We've just converted a brace
2770 ; pair entry into a { entry, so the caller
2771 ; needs to search for a brace pair before the
2774 ;; ;; `here' might be inside a literal. Check for this.
2775 (setq lit
(c-state-literal-at here
)
2776 here-lit-start
(or (car lit
) here
)
2777 here-lit-end
(or (cdr lit
) here
))
2779 ;; `here' might be nested inside any depth of parens (or brackets but
2780 ;; not braces). Scan backwards to find the outermost such opening
2781 ;; paren, if there is one. This will be the scan position to return.
2783 (narrow-to-region cache-pos
(point-max))
2784 (setq pos
(c-state-balance-parens-backwards here-lit-end pos
)))
2786 (if (< pos here-lit-start
)
2787 ;; CASE 2: Address of outermost ( or [ which now encloses `here',
2788 ;; but didn't enclose the (previous) `c-state-cache-good-pos'. If
2789 ;; there is a brace pair preceding this, it will already be in
2790 ;; `c-state-cache', unless there was a brace pair after it,
2791 ;; i.e. there'll only be one to scan for if we've just deleted one.
2792 (list pos
(and dropped-cons pos
) t
) ; Return value.
2794 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
2795 ;; Further forward scanning isn't needed, but we still need to find a
2796 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
2798 (narrow-to-region here-bol
(point-max))
2799 (setq pos here-lit-start
)
2800 (c-safe (while (setq pa
(scan-lists pos -
1 1))
2801 (setq pos pa
)))) ; might signal
2802 (if (setq ren
(c-safe-scan-lists pos -
1 -
1 too-far-back
))
2803 ;; CASE 3: After a }/)/] before `here''s BOL.
2804 (list (1+ ren
) (and dropped-cons pos
) nil
) ; Return value
2806 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
2807 ;; literal containing it.
2808 (setq good-pos
(c-state-lit-beg (c-point 'bopl here-bol
)))
2809 (list good-pos
(and dropped-cons good-pos
) nil
))))))
2812 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2813 ;; Externally visible routines.
2815 (defun c-state-cache-init ()
2816 (setq c-state-cache nil
2817 c-state-cache-good-pos
1
2818 c-state-nonlit-pos-cache nil
2819 c-state-nonlit-pos-cache-limit
1
2820 c-state-brace-pair-desert nil
2822 c-state-point-min-lit-type nil
2823 c-state-point-min-lit-start nil
2824 c-state-min-scan-pos
1
2825 c-state-old-cpp-beg nil
2826 c-state-old-cpp-end nil
)
2827 (c-state-mark-point-min-literal))
2829 (defun c-invalidate-state-cache-1 (here)
2830 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
2831 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
2832 ;; left in a consistent state.
2834 ;; This is much like `c-whack-state-after', but it never changes a paren
2835 ;; pair element into an open paren element. Doing that would mean that the
2836 ;; new open paren wouldn't have the required preceding paren pair element.
2838 ;; This function is called from c-after-change.
2840 ;; The cache of non-literals:
2841 (if (< here c-state-nonlit-pos-cache-limit
)
2842 (setq c-state-nonlit-pos-cache-limit here
))
2845 ;; Case 1: if `here' is in a literal containing point-min, everything
2846 ;; becomes (or is already) nil.
2847 (if (or (null c-state-cache-good-pos
)
2848 (< here
(c-state-get-min-scan-pos)))
2849 (setq c-state-cache nil
2850 c-state-cache-good-pos nil
2851 c-state-min-scan-pos nil
)
2853 ;;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value below
2854 ;;; `here'. To maintain its consistency, we may need to insert a new brace
2856 (let ((here-bol (c-point 'bol here
))
2857 too-high-pa
; recorded {/(/[ next above here, or nil.
2858 dropped-cons
; was the last removed element a brace pair?
2860 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
2861 (while (and c-state-cache
2862 (>= (setq pa
(c-state-cache-top-paren)) here
))
2863 (setq dropped-cons
(consp (car c-state-cache
))
2864 too-high-pa
(c-state-cache-top-lparen)
2865 c-state-cache
(cdr c-state-cache
)))
2867 ;; Do we need to add in an earlier brace pair, having lopped one off?
2868 (if (and dropped-cons
2869 (< too-high-pa
(+ here c-state-cache-too-far
)))
2870 (c-append-lower-brace-pair-to-state-cache too-high-pa here-bol
))
2871 (setq c-state-cache-good-pos
(or (c-state-cache-after-top-paren)
2872 (c-state-get-min-scan-pos)))))
2874 ;; The brace-pair desert marker:
2875 (when (car c-state-brace-pair-desert
)
2876 (if (< here
(car c-state-brace-pair-desert
))
2877 (setq c-state-brace-pair-desert nil
)
2878 (if (< here
(cdr c-state-brace-pair-desert
))
2879 (setcdr c-state-brace-pair-desert here
)))))
2881 (defun c-parse-state-1 ()
2882 ;; Find and record all noteworthy parens between some good point earlier in
2883 ;; the file and point. That good point is at least the beginning of the
2884 ;; top-level construct we are in, or the beginning of the preceding
2885 ;; top-level construct if we aren't in one.
2887 ;; The returned value is a list of the noteworthy parens with the last one
2888 ;; first. If an element in the list is an integer, it's the position of an
2889 ;; open paren (of any type) which has not been closed before the point. If
2890 ;; an element is a cons, it gives the position of a closed BRACE paren
2891 ;; pair[*]; the car is the start brace position and the cdr is the position
2892 ;; following the closing brace. Only the last closed brace paren pair
2893 ;; before each open paren and before the point is recorded, and thus the
2894 ;; state never contains two cons elements in succession. When a close brace
2895 ;; has no matching open brace (e.g., the matching brace is outside the
2896 ;; visible region), it is not represented in the returned value.
2898 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
2899 ;; This defun explicitly treats mismatching parens/braces/brackets as
2900 ;; matching. It is the open brace which makes it a "brace" pair.
2902 ;; If POINT is within a macro, open parens and brace pairs within
2903 ;; THIS macro MIGHT be recorded. This depends on whether their
2904 ;; syntactic properties have been suppressed by
2905 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
2907 ;; Currently no characters which are given paren syntax with the
2908 ;; syntax-table property are recorded, i.e. angle bracket arglist
2909 ;; parens are never present here. Note that this might change.
2911 ;; BUG: This function doesn't cope entirely well with unbalanced
2912 ;; parens in macros. (2008-12-11: this has probably been resolved
2913 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
2914 ;; following case the brace before the macro isn't balanced with the
2921 ;; Note to maintainers: this function DOES get called with point
2922 ;; within comments and strings, so don't assume it doesn't!
2924 ;; This function might do hidden buffer changes.
2925 (let* ((here (point))
2926 (here-bopl (c-point 'bopl
))
2927 strategy
; 'forward, 'backward etc..
2928 ;; Candidate positions to start scanning from:
2929 cache-pos
; highest position below HERE already existing in
2935 scan-backward-pos scan-forward-p
) ; used for 'backward.
2936 ;; If POINT-MIN has changed, adjust the cache
2937 (unless (= (point-min) c-state-point-min
)
2938 (c-renarrow-state-cache))
2941 (setq res
(c-parse-state-get-strategy here c-state-cache-good-pos
)
2943 cache-pos
(cadr res
)
2944 start-point
(nth 2 res
))
2946 (when (eq strategy
'BOD
)
2947 (setq c-state-cache nil
2948 c-state-cache-good-pos start-point
))
2953 ((memq strategy
'(forward BOD
))
2954 (narrow-to-region (point-min) here
)
2955 (setq res
(c-remove-stale-state-cache start-point here-bopl
))
2956 (setq cache-pos
(car res
)
2957 scan-backward-pos
(cadr res
)
2958 bopl-state
(car (cddr res
))) ; will be nil if (< here-bopl
2960 (if scan-backward-pos
2961 (c-append-lower-brace-pair-to-state-cache scan-backward-pos
))
2963 (c-append-to-state-cache cache-pos
))
2964 (setq c-state-cache-good-pos
2966 (< good-pos
(- here c-state-cache-too-far
)))
2967 (c-state-cache-non-literal-place here-bopl bopl-state
)
2970 ((eq strategy
'backward
)
2971 (setq res
(c-remove-stale-state-cache-backwards here cache-pos
)
2973 scan-backward-pos
(cadr res
)
2974 scan-forward-p
(car (cddr res
)))
2975 (if scan-backward-pos
2976 (c-append-lower-brace-pair-to-state-cache
2978 (setq c-state-cache-good-pos
2980 (progn (narrow-to-region (point-min) here
)
2981 (c-append-to-state-cache good-pos
))
2983 (c-get-cache-scan-pos good-pos
))))
2985 (t ; (eq strategy 'IN-LIT)
2986 (setq c-state-cache nil
2987 c-state-cache-good-pos nil
)))))
2991 (defun c-invalidate-state-cache (here)
2992 ;; This is a wrapper over `c-invalidate-state-cache-1'.
2994 ;; It suppresses the syntactic effect of the < and > (template) brackets and
2995 ;; of all parens in preprocessor constructs, except for any such construct
2996 ;; containing point. We can then call `c-invalidate-state-cache-1' without
2997 ;; worrying further about macros and template delimiters.
2998 (c-with-<-
>-as-parens-suppressed
2999 (if (and c-state-old-cpp-beg
3000 (< c-state-old-cpp-beg here
))
3001 (c-with-all-but-one-cpps-commented-out
3003 (min c-state-old-cpp-end here
)
3004 (c-invalidate-state-cache-1 here
))
3005 (c-with-cpps-commented-out
3006 (c-invalidate-state-cache-1 here
)))))
3008 (defun c-parse-state ()
3009 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3010 ;; description of the functionality and return value.
3012 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3013 ;; of all parens in preprocessor constructs, except for any such construct
3014 ;; containing point. We can then call `c-parse-state-1' without worrying
3015 ;; further about macros and template delimiters.
3016 (let (here-cpp-beg here-cpp-end
)
3018 (when (c-beginning-of-macro)
3019 (setq here-cpp-beg
(point))
3021 (> (setq here-cpp-end
(c-syntactic-end-of-macro))
3023 (setq here-cpp-beg nil here-cpp-end nil
))))
3024 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3027 (c-with-<-
>-as-parens-suppressed
3028 (if (and here-cpp-beg
(> here-cpp-end here-cpp-beg
))
3029 (c-with-all-but-one-cpps-commented-out
3030 here-cpp-beg here-cpp-end
3032 (c-with-cpps-commented-out
3033 (c-parse-state-1))))
3034 (setq c-state-old-cpp-beg
(and here-cpp-beg
(copy-marker here-cpp-beg t
))
3035 c-state-old-cpp-end
(and here-cpp-end
(copy-marker here-cpp-end t
)))
3038 ;; Debug tool to catch cache inconsistencies. This is called from
3040 (defvar c-debug-parse-state nil
)
3041 (unless (fboundp 'c-real-parse-state
)
3042 (fset 'c-real-parse-state
(symbol-function 'c-parse-state
)))
3043 (cc-bytecomp-defun c-real-parse-state)
3044 (defun c-debug-parse-state ()
3045 (let ((here (point)) (res1 (c-real-parse-state)) res2
)
3046 (let ((c-state-cache nil
)
3047 (c-state-cache-good-pos 1)
3048 (c-state-nonlit-pos-cache nil
)
3049 (c-state-nonlit-pos-cache-limit 1)
3050 (c-state-brace-pair-desert nil
)
3051 (c-state-point-min 1)
3052 (c-state-point-min-lit-type nil
)
3053 (c-state-point-min-lit-start nil
)
3054 (c-state-min-scan-pos 1)
3055 (c-state-old-cpp-beg nil
)
3056 (c-state-old-cpp-end nil
))
3057 (setq res2
(c-real-parse-state)))
3058 (unless (equal res1 res2
)
3059 ;; The cache can actually go further back due to the ad-hoc way
3060 ;; the first paren is found, so try to whack off a bit of its
3061 ;; start before complaining.
3063 (goto-char (or (c-least-enclosing-brace res2
) (point)))
3064 (c-beginning-of-defun-1)
3065 (while (not (or (bobp) (eq (char-after) ?
{)))
3066 (c-beginning-of-defun-1))
3067 (unless (equal (c-whack-state-before (point) res1
) res2
)
3068 (message (concat "c-parse-state inconsistency at %s: "
3069 "using cache: %s, from scratch: %s")
3073 (defun c-toggle-parse-state-debug (&optional arg
)
3075 (setq c-debug-parse-state
(c-calculate-state arg c-debug-parse-state
))
3076 (fset 'c-parse-state
(symbol-function (if c-debug-parse-state
3077 'c-debug-parse-state
3078 'c-real-parse-state
)))
3079 (c-keep-region-active))
3080 (when c-debug-parse-state
3081 (c-toggle-parse-state-debug 1))
3084 (defun c-whack-state-before (bufpos paren-state
)
3085 ;; Whack off any state information from PAREN-STATE which lies
3086 ;; before BUFPOS. Not destructive on PAREN-STATE.
3087 (let* ((newstate (list nil
))
3091 (setq car
(car paren-state
)
3092 paren-state
(cdr paren-state
))
3093 (if (< (if (consp car
) (car car
) car
) bufpos
)
3094 (setq paren-state nil
)
3095 (setcdr ptr
(list car
))
3096 (setq ptr
(cdr ptr
))))
3099 (defun c-whack-state-after (bufpos paren-state
)
3100 ;; Whack off any state information from PAREN-STATE which lies at or
3101 ;; after BUFPOS. Not destructive on PAREN-STATE.
3104 (let ((car (car paren-state
)))
3106 ;; just check the car, because in a balanced brace
3107 ;; expression, it must be impossible for the corresponding
3108 ;; close brace to be before point, but the open brace to
3110 (if (<= bufpos
(car car
))
3112 (if (< bufpos
(cdr car
))
3113 ;; its possible that the open brace is before
3114 ;; bufpos, but the close brace is after. In that
3115 ;; case, convert this to a non-cons element. The
3116 ;; rest of the state is before bufpos, so we're
3118 (throw 'done
(cons (car car
) (cdr paren-state
)))
3119 ;; we know that both the open and close braces are
3120 ;; before bufpos, so we also know that everything else
3121 ;; on state is before bufpos.
3122 (throw 'done paren-state
)))
3125 ;; it's before bufpos, so everything else should too.
3126 (throw 'done paren-state
)))
3127 (setq paren-state
(cdr paren-state
)))
3130 (defun c-most-enclosing-brace (paren-state &optional bufpos
)
3131 ;; Return the bufpos of the innermost enclosing open paren before
3132 ;; bufpos, or nil if none was found.
3134 (or bufpos
(setq bufpos
134217727))
3136 (setq enclosingp
(car paren-state
)
3137 paren-state
(cdr paren-state
))
3138 (if (or (consp enclosingp
)
3139 (>= enclosingp bufpos
))
3140 (setq enclosingp nil
)
3141 (setq paren-state nil
)))
3144 (defun c-least-enclosing-brace (paren-state)
3145 ;; Return the bufpos of the outermost enclosing open paren, or nil
3146 ;; if none was found.
3149 (setq elem
(car paren-state
)
3150 paren-state
(cdr paren-state
))
3155 (defun c-safe-position (bufpos paren-state
)
3156 ;; Return the closest "safe" position recorded on PAREN-STATE that
3157 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3158 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3159 ;; find the closest limit before a given limit that might be nil.
3161 ;; A "safe" position is a position at or after a recorded open
3162 ;; paren, or after a recorded close paren. The returned position is
3163 ;; thus either the first position after a close brace, or the first
3164 ;; position after an enclosing paren, or at the enclosing paren in
3165 ;; case BUFPOS is immediately after it.
3170 (setq elem
(car paren-state
))
3172 (cond ((< (cdr elem
) bufpos
)
3173 (throw 'done
(cdr elem
)))
3174 ((< (car elem
) bufpos
)
3176 (throw 'done
(min (1+ (car elem
)) bufpos
))))
3178 ;; elem is the position at and not after the opening paren, so
3179 ;; we can go forward one more step unless it's equal to
3180 ;; bufpos. This is useful in some cases avoid an extra paren
3181 ;; level between the safe position and bufpos.
3182 (throw 'done
(min (1+ elem
) bufpos
))))
3183 (setq paren-state
(cdr paren-state
)))))))
3185 (defun c-beginning-of-syntax ()
3186 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3187 ;; goes to the closest previous point that is known to be outside
3188 ;; any string literal or comment. `c-state-cache' is used if it has
3189 ;; a position in the vicinity.
3190 (let* ((paren-state c-state-cache
)
3194 ;; Note: Similar code in `c-safe-position'. The
3195 ;; difference is that we accept a safe position at
3196 ;; the point and don't bother to go forward past open
3199 (setq elem
(car paren-state
))
3201 (cond ((<= (cdr elem
) (point))
3202 (throw 'done
(cdr elem
)))
3203 ((<= (car elem
) (point))
3204 (throw 'done
(car elem
))))
3205 (if (<= elem
(point))
3206 (throw 'done elem
)))
3207 (setq paren-state
(cdr paren-state
)))
3210 (if (> pos
(- (point) 4000))
3212 ;; The position is far back. Try `c-beginning-of-defun-1'
3213 ;; (although we can't be entirely sure it will go to a position
3214 ;; outside a comment or string in current emacsen). FIXME:
3215 ;; Consult `syntax-ppss' here.
3216 (c-beginning-of-defun-1)
3221 ;; Tools for scanning identifiers and other tokens.
3223 (defun c-on-identifier ()
3224 "Return non-nil if the point is on or directly after an identifier.
3225 Keywords are recognized and not considered identifiers. If an
3226 identifier is detected, the returned value is its starting position.
3227 If an identifier ends at the point and another begins at it \(can only
3228 happen in Pike) then the point for the preceding one is returned.
3230 Note that this function might do hidden buffer changes. See the
3231 comment at the start of cc-engine.el for more info."
3233 ;; FIXME: Shouldn't this function handle "operator" in C++?
3236 (skip-syntax-backward "w_")
3240 ;; Check for a normal (non-keyword) identifier.
3241 (and (looking-at c-symbol-start
)
3242 (not (looking-at c-keywords-regexp
))
3245 (when (c-major-mode-is 'pike-mode
)
3246 ;; Handle the `<operator> syntax in Pike.
3247 (let ((pos (point)))
3248 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3249 (and (if (< (skip-chars-backward "`") 0)
3252 (eq (char-after) ?\
`))
3253 (looking-at c-symbol-key
)
3254 (>= (match-end 0) pos
)
3257 ;; Handle the "operator +" syntax in C++.
3258 (when (and c-overloadable-operators-regexp
3259 (= (c-backward-token-2 0) 0))
3261 (cond ((and (looking-at c-overloadable-operators-regexp
)
3262 (or (not c-opt-op-identifier-prefix
)
3263 (and (= (c-backward-token-2 1) 0)
3264 (looking-at c-opt-op-identifier-prefix
))))
3268 (and c-opt-op-identifier-prefix
3269 (looking-at c-opt-op-identifier-prefix
)
3270 (= (c-forward-token-2 1) 0)
3271 (looking-at c-overloadable-operators-regexp
)))
3276 (defsubst c-simple-skip-symbol-backward
()
3277 ;; If the point is at the end of a symbol then skip backward to the
3278 ;; beginning of it. Don't move otherwise. Return non-nil if point
3281 ;; This function might do hidden buffer changes.
3282 (or (< (skip-syntax-backward "w_") 0)
3283 (and (c-major-mode-is 'pike-mode
)
3284 ;; Handle the `<operator> syntax in Pike.
3285 (let ((pos (point)))
3286 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3287 (< (skip-chars-backward "`") 0)
3288 (looking-at c-symbol-key
)
3289 (>= (match-end 0) pos
))
3294 (defun c-beginning-of-current-token (&optional back-limit
)
3295 ;; Move to the beginning of the current token. Do not move if not
3296 ;; in the middle of one. BACK-LIMIT may be used to bound the
3297 ;; backward search; if given it's assumed to be at the boundary
3298 ;; between two tokens. Return non-nil if the point is moved, nil
3301 ;; This function might do hidden buffer changes.
3302 (let ((start (point)))
3303 (if (looking-at "\\w\\|\\s_")
3304 (skip-syntax-backward "w_" back-limit
)
3305 (when (< (skip-syntax-backward ".()" back-limit
) 0)
3306 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp
)
3308 ;; `c-nonsymbol-token-regexp' should always match
3309 ;; since we've skipped backward over punctuator
3310 ;; or paren syntax, but consume one char in case
3311 ;; it doesn't so that we don't leave point before
3312 ;; some earlier incorrect token.
3315 (goto-char pos
))))))
3318 (defun c-end-of-current-token (&optional back-limit
)
3319 ;; Move to the end of the current token. Do not move if not in the
3320 ;; middle of one. BACK-LIMIT may be used to bound the backward
3321 ;; search; if given it's assumed to be at the boundary between two
3322 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3324 ;; This function might do hidden buffer changes.
3325 (let ((start (point)))
3326 (cond ((< (skip-syntax-backward "w_" (1- start
)) 0)
3327 (skip-syntax-forward "w_"))
3328 ((< (skip-syntax-backward ".()" back-limit
) 0)
3330 (if (looking-at c-nonsymbol-token-regexp
)
3331 (goto-char (match-end 0))
3332 ;; `c-nonsymbol-token-regexp' should always match since
3333 ;; we've skipped backward over punctuator or paren
3334 ;; syntax, but move forward in case it doesn't so that
3335 ;; we don't leave point earlier than we started with.
3337 (< (point) start
)))))
3340 (defconst c-jump-syntax-balanced
3341 (if (memq 'gen-string-delim c-emacs-features
)
3342 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\"\\|\\s|"
3343 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\""))
3345 (defconst c-jump-syntax-unbalanced
3346 (if (memq 'gen-string-delim c-emacs-features
)
3347 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3348 "\\w\\|\\s_\\|\\s\""))
3350 (defun c-forward-token-2 (&optional count balanced limit
)
3351 "Move forward by tokens.
3352 A token is defined as all symbols and identifiers which aren't
3353 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3354 treated properly). Point is always either left at the beginning of a
3355 token or not moved at all. COUNT specifies the number of tokens to
3356 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3357 moves to the next token beginning only if not already at one. If
3358 BALANCED is true, move over balanced parens, otherwise move into them.
3359 Also, if BALANCED is true, never move out of an enclosing paren.
3361 LIMIT sets the limit for the movement and defaults to the point limit.
3362 The case when LIMIT is set in the middle of a token, comment or macro
3363 is handled correctly, i.e. the point won't be left there.
3365 Return the number of tokens left to move \(positive or negative). If
3366 BALANCED is true, a move over a balanced paren counts as one. Note
3367 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3368 be returned. Thus, a return value of 0 guarantees that point is at
3369 the requested position and a return value less \(without signs) than
3370 COUNT guarantees that point is at the beginning of some token.
3372 Note that this function might do hidden buffer changes. See the
3373 comment at the start of cc-engine.el for more info."
3375 (or count
(setq count
1))
3377 (- (c-backward-token-2 (- count
) balanced limit
))
3379 (let ((jump-syntax (if balanced
3380 c-jump-syntax-balanced
3381 c-jump-syntax-unbalanced
))
3386 ;; If count is zero we should jump if in the middle of a token.
3387 (c-end-of-current-token))
3390 (if limit
(narrow-to-region (point-min) limit
))
3392 (progn (c-forward-syntactic-ws) (point)))
3393 ;; Skip whitespace. Count this as a move if we did in
3395 (setq count
(max (1- count
) 0)))
3398 ;; Moved out of bounds. Make sure the returned count isn't zero.
3400 (if (zerop count
) (setq count
1))
3403 ;; Use `condition-case' to avoid having the limit tests
3410 (cond ((looking-at jump-syntax
)
3411 (goto-char (scan-sexps (point) 1))
3413 ((looking-at c-nonsymbol-token-regexp
)
3414 (goto-char (match-end 0))
3416 ;; `c-nonsymbol-token-regexp' above should always
3417 ;; match if there are correct tokens. Try to
3418 ;; widen to see if the limit was set in the
3419 ;; middle of one, else fall back to treating
3420 ;; the offending thing as a one character token.
3424 (looking-at c-nonsymbol-token-regexp
)))
3429 (c-forward-syntactic-ws)
3432 (error (goto-char last
)))
3436 (setq count
(1+ count
)))))
3440 (defun c-backward-token-2 (&optional count balanced limit
)
3441 "Move backward by tokens.
3442 See `c-forward-token-2' for details."
3444 (or count
(setq count
1))
3446 (- (c-forward-token-2 (- count
) balanced limit
))
3448 (or limit
(setq limit
(point-min)))
3449 (let ((jump-syntax (if balanced
3450 c-jump-syntax-balanced
3451 c-jump-syntax-unbalanced
))
3455 ;; The count is zero so try to skip to the beginning of the
3458 (progn (c-beginning-of-current-token) (point)))
3459 (if (< (point) limit
)
3460 ;; The limit is inside the same token, so return 1.
3463 ;; We're not in the middle of a token. If there's
3464 ;; whitespace after the point then we must move backward,
3465 ;; so set count to 1 in that case.
3466 (and (looking-at c-syntactic-ws-start
)
3467 ;; If we're looking at a '#' that might start a cpp
3468 ;; directive then we have to do a more elaborate check.
3469 (or (/= (char-after) ?
#)
3470 (not c-opt-cpp-prefix
)
3473 (progn (beginning-of-line)
3474 (looking-at "[ \t]*")
3477 (progn (backward-char)
3478 (not (eq (char-before) ?
\\)))))))
3481 ;; Use `condition-case' to avoid having to check for buffer
3482 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
3487 (c-backward-syntactic-ws)
3489 (if (looking-at jump-syntax
)
3490 (goto-char (scan-sexps (1+ (point)) -
1))
3491 ;; This can be very inefficient if there's a long
3492 ;; sequence of operator tokens without any separation.
3493 ;; That doesn't happen in practice, anyway.
3494 (c-beginning-of-current-token))
3495 (>= (point) limit
)))
3498 (error (goto-char last
)))
3500 (if (< (point) limit
)
3505 (defun c-forward-token-1 (&optional count balanced limit
)
3506 "Like `c-forward-token-2' but doesn't treat multicharacter operator
3507 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3508 characters are jumped over character by character. This function is
3509 for compatibility only; it's only a wrapper over `c-forward-token-2'."
3510 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3511 (c-forward-token-2 count balanced limit
)))
3513 (defun c-backward-token-1 (&optional count balanced limit
)
3514 "Like `c-backward-token-2' but doesn't treat multicharacter operator
3515 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3516 characters are jumped over character by character. This function is
3517 for compatibility only; it's only a wrapper over `c-backward-token-2'."
3518 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3519 (c-backward-token-2 count balanced limit
)))
3522 ;; Tools for doing searches restricted to syntactically relevant text.
3524 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
3525 paren-level not-inside-token
3526 lookbehind-submatch
)
3527 "Like `re-search-forward', but only report matches that are found
3528 in syntactically significant text. I.e. matches in comments, macros
3529 or string literals are ignored. The start point is assumed to be
3530 outside any comment, macro or string literal, or else the content of
3531 that region is taken as syntactically significant text.
3533 If PAREN-LEVEL is non-nil, an additional restriction is added to
3534 ignore matches in nested paren sexps. The search will also not go
3535 outside the current list sexp, which has the effect that if the point
3536 should be moved to BOUND when no match is found \(i.e. NOERROR is
3537 neither nil nor t), then it will be at the closing paren if the end of
3538 the current list sexp is encountered first.
3540 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
3541 ignored. Things like multicharacter operators and special symbols
3542 \(e.g. \"`()\" in Pike) are handled but currently not floating point
3545 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
3546 subexpression in REGEXP. The end of that submatch is used as the
3547 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
3548 isn't used or if that subexpression didn't match then the start
3549 position of the whole match is used instead. The \"look behind\"
3550 subexpression is never tested before the starting position, so it
3551 might be a good idea to include \\=\\= as a match alternative in it.
3553 Optimization note: Matches might be missed if the \"look behind\"
3554 subexpression can match the end of nonwhite syntactic whitespace,
3555 i.e. the end of comments or cpp directives. This since the function
3556 skips over such things before resuming the search. It's on the other
3557 hand not safe to assume that the \"look behind\" subexpression never
3558 matches syntactic whitespace.
3560 Bug: Unbalanced parens inside cpp directives are currently not handled
3561 correctly \(i.e. they don't get ignored as they should) when
3564 Note that this function might do hidden buffer changes. See the
3565 comment at the start of cc-engine.el for more info."
3567 (or bound
(setq bound
(point-max)))
3568 (if paren-level
(setq paren-level -
1))
3570 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
3572 (let ((start (point))
3574 ;; Start position for the last search.
3576 ;; The `parse-partial-sexp' state between the start position
3579 ;; The current position after the last state update. The next
3580 ;; `parse-partial-sexp' continues from here.
3582 ;; The position at which to check the state and the state
3583 ;; there. This is separate from `state-pos' since we might
3584 ;; need to back up before doing the next search round.
3585 check-pos check-state
3586 ;; Last position known to end a token.
3587 (last-token-end-pos (point-min))
3588 ;; Set when a valid match is found.
3595 (setq search-pos
(point))
3596 (re-search-forward regexp bound noerror
))
3599 (setq state
(parse-partial-sexp
3600 state-pos
(match-beginning 0) paren-level nil state
)
3602 (if (setq check-pos
(and lookbehind-submatch
3603 (or (not paren-level
)
3605 (match-end lookbehind-submatch
)))
3606 (setq check-state
(parse-partial-sexp
3607 state-pos check-pos paren-level nil state
))
3608 (setq check-pos state-pos
3611 ;; NOTE: If we got a look behind subexpression and get
3612 ;; an insignificant match in something that isn't
3613 ;; syntactic whitespace (i.e. strings or in nested
3614 ;; parentheses), then we can never skip more than a
3615 ;; single character from the match start position
3616 ;; (i.e. `state-pos' here) before continuing the
3617 ;; search. That since the look behind subexpression
3618 ;; might match the end of the insignificant region in
3622 ((elt check-state
7)
3623 ;; Match inside a line comment. Skip to eol. Use
3624 ;; `re-search-forward' instead of `skip-chars-forward' to get
3625 ;; the right bound behavior.
3626 (re-search-forward "[\n\r]" bound noerror
))
3628 ((elt check-state
4)
3629 ;; Match inside a block comment. Skip to the '*/'.
3630 (search-forward "*/" bound noerror
))
3632 ((and (not (elt check-state
5))
3633 (eq (char-before check-pos
) ?
/)
3634 (not (c-get-char-property (1- check-pos
) 'syntax-table
))
3635 (memq (char-after check-pos
) '(?
/ ?
*)))
3636 ;; Match in the middle of the opener of a block or line
3638 (if (= (char-after check-pos
) ?
/)
3639 (re-search-forward "[\n\r]" bound noerror
)
3640 (search-forward "*/" bound noerror
)))
3642 ;; The last `parse-partial-sexp' above might have
3643 ;; stopped short of the real check position if the end
3644 ;; of the current sexp was encountered in paren-level
3645 ;; mode. The checks above are always false in that
3646 ;; case, and since they can do better skipping in
3647 ;; lookbehind-submatch mode, we do them before
3648 ;; checking the paren level.
3651 (/= (setq tmp
(car check-state
)) 0))
3652 ;; Check the paren level first since we're short of the
3653 ;; syntactic checking position if the end of the
3654 ;; current sexp was encountered by `parse-partial-sexp'.
3657 ;; Inside a nested paren sexp.
3658 (if lookbehind-submatch
3659 ;; See the NOTE above.
3660 (progn (goto-char state-pos
) t
)
3661 ;; Skip out of the paren quickly.
3662 (setq state
(parse-partial-sexp state-pos bound
0 nil state
)
3665 ;; Have exited the current paren sexp.
3668 ;; The last `parse-partial-sexp' call above
3669 ;; has left us just after the closing paren
3670 ;; in this case, so we can modify the bound
3671 ;; to leave the point at the right position
3673 (setq bound
(1- (point)))
3675 (signal 'search-failed
(list regexp
)))))
3677 ((setq tmp
(elt check-state
3))
3678 ;; Match inside a string.
3679 (if (or lookbehind-submatch
3680 (not (integerp tmp
)))
3681 ;; See the NOTE above.
3682 (progn (goto-char state-pos
) t
)
3683 ;; Skip to the end of the string before continuing.
3684 (let ((ender (make-string 1 tmp
)) (continue t
))
3685 (while (if (search-forward ender bound noerror
)
3687 (setq state
(parse-partial-sexp
3688 state-pos
(point) nil nil state
)
3691 (setq continue nil
)))
3696 (c-beginning-of-macro start
)))
3697 ;; Match inside a macro. Skip to the end of it.
3699 (cond ((<= (point) bound
) t
)
3701 (t (signal 'search-failed
(list regexp
)))))
3703 ((and not-inside-token
3704 (or (< check-pos last-token-end-pos
)
3707 (goto-char check-pos
)
3709 (c-end-of-current-token last-token-end-pos
))
3710 (setq last-token-end-pos
(point))))))
3712 (if lookbehind-submatch
3713 ;; See the NOTE above.
3714 (goto-char state-pos
)
3715 (goto-char (min last-token-end-pos bound
))))
3722 ;; Should loop to search again, but take care to avoid
3723 ;; looping on the same spot.
3724 (or (/= search-pos
(point))
3725 (if (= (point) bound
)
3728 (signal 'search-failed
(list regexp
)))
3734 (signal (car err
) (cdr err
))))
3736 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
3740 (goto-char (match-end 0))
3743 ;; Search failed. Set point as appropriate.
3749 (defvar safe-pos-list
) ; bound in c-syntactic-skip-backward
3751 (defsubst c-ssb-lit-begin
()
3752 ;; Return the start of the literal point is in, or nil.
3753 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
3754 ;; bound in the caller.
3756 ;; Use `parse-partial-sexp' from a safe position down to the point to check
3757 ;; if it's outside comments and strings.
3759 (let ((pos (point)) safe-pos state pps-end-pos
)
3760 ;; Pick a safe position as close to the point as possible.
3762 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
3765 (while (and safe-pos-list
3766 (> (car safe-pos-list
) (point)))
3767 (setq safe-pos-list
(cdr safe-pos-list
)))
3768 (unless (setq safe-pos
(car-safe safe-pos-list
))
3769 (setq safe-pos
(max (or (c-safe-position
3770 (point) (or c-state-cache
3774 safe-pos-list
(list safe-pos
)))
3776 ;; Cache positions along the way to use if we have to back up more. We
3777 ;; cache every closing paren on the same level. If the paren cache is
3778 ;; relevant in this region then we're typically already on the same
3779 ;; level as the target position. Note that we might cache positions
3780 ;; after opening parens in case safe-pos is in a nested list. That's
3781 ;; both uncommon and harmless.
3783 (setq state
(parse-partial-sexp
3786 (setq safe-pos
(point)
3787 safe-pos-list
(cons safe-pos safe-pos-list
)))
3789 ;; If the state contains the start of the containing sexp we cache that
3790 ;; position too, so that parse-partial-sexp in the next run has a bigger
3791 ;; chance of starting at the same level as the target position and thus
3792 ;; will get more good safe positions into the list.
3794 (setq safe-pos
(1+ (elt state
1))
3795 safe-pos-list
(cons safe-pos safe-pos-list
)))
3797 (if (or (elt state
3) (elt state
4))
3798 ;; Inside string or comment. Continue search at the
3802 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level
)
3803 "Like `skip-chars-backward' but only look at syntactically relevant chars,
3804 i.e. don't stop at positions inside syntactic whitespace or string
3805 literals. Preprocessor directives are also ignored, with the exception
3806 of the one that the point starts within, if any. If LIMIT is given,
3807 it's assumed to be at a syntactically relevant position.
3809 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
3810 sexps, and the search will also not go outside the current paren sexp.
3811 However, if LIMIT or the buffer limit is reached inside a nested paren
3812 then the point will be left at the limit.
3814 Non-nil is returned if the point moved, nil otherwise.
3816 Note that this function might do hidden buffer changes. See the
3817 comment at the start of cc-engine.el for more info."
3819 (let ((start (point))
3821 ;; A list of syntactically relevant positions in descending
3822 ;; order. It's used to avoid scanning repeatedly over
3823 ;; potentially large regions with `parse-partial-sexp' to verify
3824 ;; each position. Used in `c-ssb-lit-begin'
3826 ;; The result from `c-beginning-of-macro' at the start position or the
3827 ;; start position itself if it isn't within a macro. Evaluated on
3830 ;; The earliest position after the current one with the same paren
3831 ;; level. Used only when `paren-level' is set.
3833 (paren-level-pos (point)))
3837 ;; The next loop "tries" to find the end point each time round,
3838 ;; loops when it hasn't succeeded.
3841 (< (skip-chars-backward skip-chars limit
) 0)
3843 (let ((pos (point)) state-2 pps-end-pos
)
3846 ;; Don't stop inside a literal
3847 ((setq lit-beg
(c-ssb-lit-begin))
3853 (setq state-2
(parse-partial-sexp
3854 pos paren-level-pos -
1)
3855 pps-end-pos
(point))
3856 (/= (car state-2
) 0)))
3857 ;; Not at the right level.
3859 (if (and (< (car state-2
) 0)
3860 ;; We stop above if we go out of a paren.
3861 ;; Now check whether it precedes or is
3862 ;; nested in the starting sexp.
3866 pps-end-pos paren-level-pos
3868 (< (car state-2
) 0)))
3870 ;; We've stopped short of the starting position
3871 ;; so the hit was inside a nested list. Go up
3872 ;; until we are at the right level.
3875 (goto-char (scan-lists pos -
1
3877 (setq paren-level-pos
(point))
3878 (if (and limit
(>= limit paren-level-pos
))
3884 (goto-char (or limit
(point-min)))
3887 ;; The hit was outside the list at the start
3888 ;; position. Go to the start of the list and exit.
3889 (goto-char (1+ (elt state-2
1)))
3892 ((c-beginning-of-macro limit
)
3896 (setq start-macro-beg
3899 (c-beginning-of-macro limit
)
3903 ;; It's inside the same macro we started in so it's
3904 ;; a relevant match.
3910 ;; Skip syntactic ws afterwards so that we don't stop at the
3911 ;; end of a comment if `skip-chars' is something like "^/".
3912 (c-backward-syntactic-ws)
3915 ;; We might want to extend this with more useful return values in
3917 (/= (point) start
)))
3919 ;; The following is an alternative implementation of
3920 ;; `c-syntactic-skip-backward' that uses backward movement to keep
3921 ;; track of the syntactic context. It turned out to be generally
3922 ;; slower than the one above which uses forward checks from earlier
3925 ;;(defconst c-ssb-stop-re
3926 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
3927 ;; ;; stop at to avoid going into comments and literals.
3929 ;; ;; Match comment end syntax and string literal syntax. Also match
3930 ;; ;; '/' for block comment endings (not covered by comment end
3932 ;; "\\s>\\|/\\|\\s\""
3933 ;; (if (memq 'gen-string-delim c-emacs-features)
3936 ;; (if (memq 'gen-comment-delim c-emacs-features)
3940 ;;(defconst c-ssb-stop-paren-re
3941 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
3942 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
3944 ;;(defconst c-ssb-sexp-end-re
3945 ;; ;; Regexp matching the ending syntax of a complex sexp.
3946 ;; (concat c-string-limit-regexp "\\|\\s)"))
3948 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
3949 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
3950 ;;i.e. don't stop at positions inside syntactic whitespace or string
3951 ;;literals. Preprocessor directives are also ignored. However, if the
3952 ;;point is within a comment, string literal or preprocessor directory to
3953 ;;begin with, its contents is treated as syntactically relevant chars.
3954 ;;If LIMIT is given, it limits the backward search and the point will be
3955 ;;left there if no earlier position is found.
3957 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
3958 ;;sexps, and the search will also not go outside the current paren sexp.
3959 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
3960 ;;then the point will be left at the limit.
3962 ;;Non-nil is returned if the point moved, nil otherwise.
3964 ;;Note that this function might do hidden buffer changes. See the
3965 ;;comment at the start of cc-engine.el for more info."
3967 ;; (save-restriction
3969 ;; (narrow-to-region limit (point-max)))
3971 ;; (let ((start (point)))
3973 ;; (while (let ((last-pos (point))
3975 ;; (skip-chars-backward skip-chars)
3978 ;; ;; Skip back over the same region as
3979 ;; ;; `skip-chars-backward' above, but keep to
3980 ;; ;; syntactically relevant positions.
3981 ;; (goto-char last-pos)
3983 ;; ;; `re-search-backward' with a single char regexp
3984 ;; ;; should be fast.
3985 ;; (re-search-backward
3986 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
3991 ;; ((looking-at "\\s(")
3992 ;; ;; `paren-level' is set and we've found the
3993 ;; ;; start of the containing paren.
3997 ;; ((looking-at c-ssb-sexp-end-re)
3998 ;; ;; We're at the end of a string literal or paren
3999 ;; ;; sexp (if `paren-level' is set).
4001 ;; (condition-case nil
4002 ;; (c-backward-sexp)
4004 ;; (goto-char limit)
4005 ;; (throw 'done t))))
4009 ;; ;; At the end of some syntactic ws or possibly
4010 ;; ;; after a plain '/' operator.
4011 ;; (let ((pos (point)))
4012 ;; (c-backward-syntactic-ws)
4013 ;; (if (= pos (point))
4014 ;; ;; Was a plain '/' operator. Go past it.
4015 ;; (backward-char)))))
4017 ;; (> (point) stop-pos))))
4019 ;; ;; Now the point is either at `stop-pos' or at some
4020 ;; ;; position further back if `stop-pos' was at a
4021 ;; ;; syntactically irrelevant place.
4023 ;; ;; Skip additional syntactic ws so that we don't stop
4024 ;; ;; at the end of a comment if `skip-chars' is
4025 ;; ;; something like "^/".
4026 ;; (c-backward-syntactic-ws)
4028 ;; (< (point) stop-pos))))
4030 ;; ;; We might want to extend this with more useful return values
4031 ;; ;; in the future.
4032 ;; (/= (point) start))))
4035 ;; Tools for handling comments and string literals.
4037 (defun c-slow-in-literal (&optional lim detect-cpp
)
4038 "Return the type of literal point is in, if any.
4039 The return value is `c' if in a C-style comment, `c++' if in a C++
4040 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4041 is non-nil and in a preprocessor line, or nil if somewhere else.
4042 Optional LIM is used as the backward limit of the search. If omitted,
4043 or nil, `c-beginning-of-defun' is used.
4045 The last point calculated is cached if the cache is enabled, i.e. if
4046 `c-in-literal-cache' is bound to a two element vector.
4048 Note that this function might do hidden buffer changes. See the
4049 comment at the start of cc-engine.el for more info."
4051 (if (and (vectorp c-in-literal-cache
)
4052 (= (point) (aref c-in-literal-cache
0)))
4053 (aref c-in-literal-cache
1)
4054 (let ((rtn (save-excursion
4055 (let* ((pos (point))
4057 (c-beginning-of-syntax)
4059 (state (parse-partial-sexp lim pos
)))
4061 ((elt state
3) 'string
)
4062 ((elt state
4) (if (elt state
7) 'c
++ 'c
))
4063 ((and detect-cpp
(c-beginning-of-macro lim
)) 'pound
)
4065 ;; cache this result if the cache is enabled
4066 (if (not c-in-literal-cache
)
4067 (setq c-in-literal-cache
(vector (point) rtn
)))
4070 ;; XEmacs has a built-in function that should make this much quicker.
4071 ;; I don't think we even need the cache, which makes our lives more
4072 ;; complicated anyway. In this case, lim is only used to detect
4075 ;; Note that there is a bug in Xemacs's buffer-syntactic-context when used in
4076 ;; conjunction with syntax-table-properties. The bug is present in, e.g.,
4077 ;; Xemacs 21.4.4. It manifested itself thus:
4079 ;; Starting with an empty AWK Mode buffer, type
4081 ;; Point gets wrongly left at column 0, rather than being indented to tab-width.
4083 ;; AWK Mode is designed such that when the first / is typed, it gets the
4084 ;; syntax-table property "string fence". When the second / is typed, BOTH /s
4085 ;; are given the s-t property "string". However, buffer-syntactic-context
4086 ;; fails to take account of the change of the s-t property on the opening / to
4087 ;; "string", and reports that the { is within a string started by the second /.
4089 ;; The workaround for this is for the AWK Mode initialisation to switch the
4090 ;; defalias for c-in-literal to c-slow-in-literal. This will slow down other
4091 ;; cc-modes in Xemacs whenever an awk-buffer has been initialised.
4093 ;; (Alan Mackenzie, 2003/4/30).
4095 (defun c-fast-in-literal (&optional lim detect-cpp
)
4096 ;; This function might do hidden buffer changes.
4097 (let ((context (buffer-syntactic-context)))
4099 ((eq context
'string
) 'string
)
4100 ((eq context
'comment
) 'c
++)
4101 ((eq context
'block-comment
) 'c
)
4102 ((and detect-cpp
(save-excursion (c-beginning-of-macro lim
))) 'pound
))))
4104 (defalias 'c-in-literal
4105 (if (fboundp 'buffer-syntactic-context
)
4106 'c-fast-in-literal
; XEmacs
4107 'c-slow-in-literal
)) ; GNU Emacs
4109 ;; The defalias above isn't enough to shut up the byte compiler.
4110 (cc-bytecomp-defun c-in-literal)
4112 (defun c-literal-limits (&optional lim near not-in-delimiter
)
4113 "Return a cons of the beginning and end positions of the comment or
4114 string surrounding point (including both delimiters), or nil if point
4115 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4116 to start parsing from. If NEAR is non-nil, then the limits of any
4117 literal next to point is returned. \"Next to\" means there's only
4118 spaces and tabs between point and the literal. The search for such a
4119 literal is done first in forward direction. If NOT-IN-DELIMITER is
4120 non-nil, the case when point is inside a starting delimiter won't be
4121 recognized. This only has effect for comments which have starting
4122 delimiters with more than one character.
4124 Note that this function might do hidden buffer changes. See the
4125 comment at the start of cc-engine.el for more info."
4128 (let* ((pos (point))
4130 (c-beginning-of-syntax)
4132 (state (parse-partial-sexp lim pos
)))
4134 (cond ((elt state
3) ; String.
4135 (goto-char (elt state
8))
4136 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4139 ((elt state
4) ; Comment.
4140 (goto-char (elt state
8))
4141 (cons (point) (progn (c-forward-single-comment) (point))))
4143 ((and (not not-in-delimiter
)
4145 (eq (char-before) ?
/)
4146 (looking-at "[/*]"))
4147 ;; We're standing in a comment starter.
4149 (cons (point) (progn (c-forward-single-comment) (point))))
4154 ;; Search forward for a literal.
4155 (skip-chars-forward " \t")
4158 ((looking-at c-string-limit-regexp
) ; String.
4159 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4162 ((looking-at c-comment-start-regexp
) ; Line or block comment.
4163 (cons (point) (progn (c-forward-single-comment) (point))))
4167 (skip-chars-backward " \t")
4169 (let ((end (point)) beg
)
4172 (< (skip-syntax-backward c-string-syntax
) 0)) ; String.
4173 (setq beg
(c-safe (c-backward-sexp 1) (point))))
4175 ((and (c-safe (forward-char -
2) t
)
4177 ;; Block comment. Due to the nature of line
4178 ;; comments, they will always be covered by the
4179 ;; normal case above.
4181 (c-backward-single-comment)
4182 ;; If LIM is bogus, beg will be bogus.
4183 (setq beg
(point))))
4185 (if beg
(cons beg end
))))))
4188 ;; In case external callers use this; it did have a docstring.
4189 (defalias 'c-literal-limits-fast
'c-literal-limits
)
4191 (defun c-collect-line-comments (range)
4192 "If the argument is a cons of two buffer positions (such as returned by
4193 `c-literal-limits'), and that range contains a C++ style line comment,
4194 then an extended range is returned that contains all adjacent line
4195 comments (i.e. all comments that starts in the same column with no
4196 empty lines or non-whitespace characters between them). Otherwise the
4197 argument is returned.
4199 Note that this function might do hidden buffer changes. See the
4200 comment at the start of cc-engine.el for more info."
4204 (if (and (consp range
) (progn
4205 (goto-char (car range
))
4206 (looking-at c-line-comment-starter
)))
4207 (let ((col (current-column))
4209 (bopl (c-point 'bopl
))
4211 ;; Got to take care in the backward direction to handle
4212 ;; comments which are preceded by code.
4213 (while (and (c-backward-single-comment)
4215 (looking-at c-line-comment-starter
)
4216 (= col
(current-column)))
4218 bopl
(c-point 'bopl
)))
4220 (while (and (progn (skip-chars-forward " \t")
4221 (looking-at c-line-comment-starter
))
4222 (= col
(current-column))
4223 (prog1 (zerop (forward-line 1))
4224 (setq end
(point)))))
4229 (defun c-literal-type (range)
4230 "Convenience function that given the result of `c-literal-limits',
4231 returns nil or the type of literal that the range surrounds, one
4232 of the symbols 'c, 'c++ or 'string. It's much faster than using
4233 `c-in-literal' and is intended to be used when you need both the
4234 type of a literal and its limits.
4236 Note that this function might do hidden buffer changes. See the
4237 comment at the start of cc-engine.el for more info."
4241 (goto-char (car range
))
4242 (cond ((looking-at c-string-limit-regexp
) 'string
)
4243 ((or (looking-at "//") ; c++ line comment
4244 (and (looking-at "\\s<") ; comment starter
4245 (looking-at "#"))) ; awk comment.
4247 (t 'c
))) ; Assuming the range is valid.
4251 ;; `c-find-decl-spots' and accompanying stuff.
4253 ;; Variables used in `c-find-decl-spots' to cache the search done for
4254 ;; the first declaration in the last call. When that function starts,
4255 ;; it needs to back up over syntactic whitespace to look at the last
4256 ;; token before the region being searched. That can sometimes cause
4257 ;; moves back and forth over a quite large region of comments and
4258 ;; macros, which would be repeated for each changed character when
4259 ;; we're called during fontification, since font-lock refontifies the
4260 ;; current line for each change. Thus it's worthwhile to cache the
4263 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4264 ;; the syntactic whitespace less or equal to some start position.
4265 ;; There's no cached value if it's nil.
4267 ;; `c-find-decl-match-pos' is the match position if
4268 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4269 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4270 (defvar c-find-decl-syntactic-pos nil
)
4271 (make-variable-buffer-local 'c-find-decl-syntactic-pos
)
4272 (defvar c-find-decl-match-pos nil
)
4273 (make-variable-buffer-local 'c-find-decl-match-pos
)
4275 (defsubst c-invalidate-find-decl-cache
(change-min-pos)
4276 (and c-find-decl-syntactic-pos
4277 (< change-min-pos c-find-decl-syntactic-pos
)
4278 (setq c-find-decl-syntactic-pos nil
)))
4280 ; (defface c-debug-decl-spot-face
4281 ; '((t (:background "Turquoise")))
4282 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4283 ; (defface c-debug-decl-sws-face
4284 ; '((t (:background "Khaki")))
4285 ; "Debug face to mark the syntactic whitespace between the declaration
4286 ; spots and the preceding token end.")
4288 (defmacro c-debug-put-decl-spot-faces
(match-pos decl-pos
)
4289 (when (facep 'c-debug-decl-spot-face
)
4290 `(c-save-buffer-state ((match-pos ,match-pos
) (decl-pos ,decl-pos
))
4291 (c-debug-add-face (max match-pos
(point-min)) decl-pos
4292 'c-debug-decl-sws-face
)
4293 (c-debug-add-face decl-pos
(min (1+ decl-pos
) (point-max))
4294 'c-debug-decl-spot-face
))))
4295 (defmacro c-debug-remove-decl-spot-faces
(beg end
)
4296 (when (facep 'c-debug-decl-spot-face
)
4297 `(c-save-buffer-state ()
4298 (c-debug-remove-face ,beg
,end
'c-debug-decl-spot-face
)
4299 (c-debug-remove-face ,beg
,end
'c-debug-decl-sws-face
))))
4301 (defmacro c-find-decl-prefix-search
()
4302 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4303 ;; but it contains lots of free variables that refer to things
4304 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4305 ;; if there is a match, otherwise at `cfd-limit'.
4307 ;; This macro might do hidden buffer changes.
4310 ;; Find the next property match position if we haven't got one already.
4311 (unless cfd-prop-match
4314 (goto-char (next-single-property-change
4315 (point) 'c-type nil cfd-limit
))
4316 (and (< (point) cfd-limit
)
4317 (not (eq (c-get-char-property (1- (point)) 'c-type
)
4319 (setq cfd-prop-match
(point))))
4321 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4323 (unless cfd-re-match
4325 (if (> cfd-re-match-end
(point))
4326 (goto-char cfd-re-match-end
))
4328 (while (if (setq cfd-re-match-end
4329 (re-search-forward c-decl-prefix-or-start-re
4332 ;; Match. Check if it's inside a comment or string literal.
4334 (if (setq cfd-re-match
(match-end 1))
4335 ;; Matched the end of a token preceding a decl spot.
4337 (goto-char cfd-re-match
)
4339 ;; Matched a token that start a decl spot.
4340 (goto-char (match-beginning 0))
4344 ;; No match. Finish up and exit the loop.
4345 (setq cfd-re-match cfd-limit
)
4348 ;; Skip out of comments and string literals.
4350 (goto-char (next-single-property-change
4351 (point) 'face nil cfd-limit
))
4352 (and (< (point) cfd-limit
)
4353 (c-got-face-at (point) c-literal-faces
)))))
4355 ;; If we matched at the decl start, we have to back up over the
4356 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4357 ;; any decl spots in the syntactic ws.
4358 (unless cfd-re-match
4359 (c-backward-syntactic-ws)
4360 (setq cfd-re-match
(point))))
4362 ;; Choose whichever match is closer to the start.
4363 (if (< cfd-re-match cfd-prop-match
)
4364 (setq cfd-match-pos cfd-re-match
4366 (setq cfd-match-pos cfd-prop-match
4367 cfd-prop-match nil
))
4369 (goto-char cfd-match-pos
)
4371 (when (< cfd-match-pos cfd-limit
)
4372 ;; Skip forward past comments only so we don't skip macros.
4373 (c-forward-comments)
4374 ;; Set the position to continue at. We can avoid going over
4375 ;; the comments skipped above a second time, but it's possible
4376 ;; that the comment skipping has taken us past `cfd-prop-match'
4377 ;; since the property might be used inside comments.
4378 (setq cfd-continue-pos
(if cfd-prop-match
4379 (min cfd-prop-match
(point))
4382 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun
)
4383 ;; Call CFD-FUN for each possible spot for a declaration, cast or
4384 ;; label from the point to CFD-LIMIT.
4386 ;; CFD-FUN is called with point at the start of the spot. It's
4387 ;; passed two arguments: The first is the end position of the token
4388 ;; preceding the spot, or 0 for the implicit match at bob. The
4389 ;; second is a flag that is t when the match is inside a macro. If
4390 ;; CFD-FUN adds `c-decl-end' properties somewhere below the current
4391 ;; spot, it should return non-nil to ensure that the next search
4395 ;; o The first token after bob.
4396 ;; o The first token after the end of submatch 1 in
4397 ;; `c-decl-prefix-or-start-re' when that submatch matches.
4398 ;; o The start of each `c-decl-prefix-or-start-re' match when
4399 ;; submatch 1 doesn't match.
4400 ;; o The first token after the end of each occurrence of the
4401 ;; `c-type' text property with the value `c-decl-end', provided
4402 ;; `c-type-decl-end-used' is set.
4404 ;; Only a spot that match CFD-DECL-RE and whose face is in the
4405 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
4406 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
4408 ;; If the match is inside a macro then the buffer is narrowed to the
4409 ;; end of it, so that CFD-FUN can investigate the following tokens
4410 ;; without matching something that begins inside a macro and ends
4411 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
4412 ;; CFD-FACE-CHECKLIST checks exist.
4414 ;; The spots are visited approximately in order from top to bottom.
4415 ;; It's however the positions where `c-decl-prefix-or-start-re'
4416 ;; matches and where `c-decl-end' properties are found that are in
4417 ;; order. Since the spots often are at the following token, they
4418 ;; might be visited out of order insofar as more spots are reported
4419 ;; later on within the syntactic whitespace between the match
4420 ;; positions and their spots.
4422 ;; It's assumed that comments and strings are fontified in the
4425 ;; This is mainly used in fontification, and so has an elaborate
4426 ;; cache to handle repeated calls from the same start position; see
4427 ;; the variables above.
4429 ;; All variables in this function begin with `cfd-' to avoid name
4430 ;; collision with the (dynamically bound) variables used in CFD-FUN.
4432 ;; This function might do hidden buffer changes.
4434 (let ((cfd-start-pos (point))
4435 (cfd-buffer-end (point-max))
4436 ;; The end of the token preceding the decl spot last found
4437 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
4440 ;; The end position of the last `c-decl-prefix-or-start-re'
4441 ;; match. If this is greater than `cfd-continue-pos', the
4442 ;; next regexp search is started here instead.
4443 (cfd-re-match-end (point-min))
4444 ;; The end of the last `c-decl-end' found by
4445 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
4446 ;; match. If searching for the property isn't needed then we
4447 ;; disable it by setting it to `cfd-limit' directly.
4448 (cfd-prop-match (unless c-type-decl-end-used cfd-limit
))
4449 ;; The end of the token preceding the decl spot last found by
4450 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
4451 ;; bob. `cfd-limit' if there's no match. In other words,
4452 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
4453 (cfd-match-pos cfd-limit
)
4454 ;; The position to continue searching at.
4456 ;; The position of the last "real" token we've stopped at.
4457 ;; This can be greater than `cfd-continue-pos' when we get
4458 ;; hits inside macros or at `c-decl-end' positions inside
4461 ;; The end position of the last entered macro.
4464 ;; Initialize by finding a syntactically relevant start position
4465 ;; before the point, and do the first `c-decl-prefix-or-start-re'
4466 ;; search unless we're at bob.
4468 (let (start-in-literal start-in-macro syntactic-pos
)
4469 ;; Must back up a bit since we look for the end of the previous
4470 ;; statement or declaration, which is earlier than the first
4474 ;; First we need to move to a syntactically relevant position.
4475 ;; Begin by backing out of comment or string literals.
4477 (when (c-got-face-at (point) c-literal-faces
)
4478 ;; Try to use the faces to back up to the start of the
4479 ;; literal. FIXME: What if the point is on a declaration
4480 ;; inside a comment?
4481 (while (and (not (bobp))
4482 (c-got-face-at (1- (point)) c-literal-faces
))
4483 (goto-char (previous-single-property-change
4484 (point) 'face nil
(point-min))))
4486 ;; XEmacs doesn't fontify the quotes surrounding string
4488 (and (featurep 'xemacs
)
4489 (eq (get-text-property (point) 'face
)
4490 'font-lock-string-face
)
4492 (progn (backward-char)
4493 (not (looking-at c-string-limit-regexp
)))
4496 ;; Don't trust the literal to contain only literal faces
4497 ;; (the font lock package might not have fontified the
4498 ;; start of it at all, for instance) so check that we have
4499 ;; arrived at something that looks like a start or else
4500 ;; resort to `c-literal-limits'.
4501 (unless (looking-at c-literal-start-regexp
)
4502 (let ((range (c-literal-limits)))
4503 (if range
(goto-char (car range
)))))
4505 (setq start-in-literal
(point)))
4507 ;; The start is in a literal. If the limit is in the same
4508 ;; one we don't have to find a syntactic position etc. We
4509 ;; only check that if the limit is at or before bonl to save
4510 ;; time; it covers the by far most common case when font-lock
4511 ;; refontifies the current line only.
4512 (<= cfd-limit
(c-point 'bonl cfd-start-pos
))
4514 (goto-char cfd-start-pos
)
4516 (goto-char (next-single-property-change
4517 (point) 'face nil cfd-limit
))
4518 (and (< (point) cfd-limit
)
4519 (c-got-face-at (point) c-literal-faces
))))
4520 (= (point) cfd-limit
)))
4522 ;; Completely inside a literal. Set up variables to trig the
4523 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
4524 ;; find a suitable start position.
4525 (setq cfd-continue-pos start-in-literal
))
4527 ;; Check if the region might be completely inside a macro, to
4528 ;; optimize that like the completely-inside-literal above.
4530 (and (= (forward-line 1) 0)
4531 (bolp) ; forward-line has funny behavior at eob.
4532 (>= (point) cfd-limit
)
4533 (progn (backward-char)
4534 (eq (char-before) ?
\\))))
4535 ;; (Maybe) completely inside a macro. Only need to trig the
4536 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
4538 (setq cfd-continue-pos
(1- cfd-start-pos
)
4542 ;; Back out of any macro so we don't miss any declaration
4543 ;; that could follow after it.
4544 (when (c-beginning-of-macro)
4545 (setq start-in-macro t
))
4547 ;; Now we're at a proper syntactically relevant position so we
4548 ;; can use the cache. But first clear it if it applied
4550 (c-invalidate-find-decl-cache cfd-start-pos
)
4552 (setq syntactic-pos
(point))
4553 (unless (eq syntactic-pos c-find-decl-syntactic-pos
)
4554 ;; Don't have to do this if the cache is relevant here,
4555 ;; typically if the same line is refontified again. If
4556 ;; we're just some syntactic whitespace further down we can
4557 ;; still use the cache to limit the skipping.
4558 (c-backward-syntactic-ws c-find-decl-syntactic-pos
))
4560 ;; If we hit `c-find-decl-syntactic-pos' and
4561 ;; `c-find-decl-match-pos' is set then we install the cached
4562 ;; values. If we hit `c-find-decl-syntactic-pos' and
4563 ;; `c-find-decl-match-pos' is nil then we know there's no decl
4564 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
4565 ;; and so we can continue the search from this point. If we
4566 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
4567 ;; the right spot to begin searching anyway.
4568 (if (and (eq (point) c-find-decl-syntactic-pos
)
4569 c-find-decl-match-pos
)
4570 (setq cfd-match-pos c-find-decl-match-pos
4571 cfd-continue-pos syntactic-pos
)
4573 (setq c-find-decl-syntactic-pos syntactic-pos
)
4576 ;; Always consider bob a match to get the first
4577 ;; declaration in the file. Do this separately instead of
4578 ;; letting `c-decl-prefix-or-start-re' match bob, so that
4579 ;; regexp always can consume at least one character to
4580 ;; ensure that we won't get stuck in an infinite loop.
4581 (setq cfd-re-match
0)
4583 (c-beginning-of-current-token)
4584 (< (point) cfd-limit
))
4585 ;; Do an initial search now. In the bob case above it's
4586 ;; only done to search for a `c-decl-end' spot.
4587 (c-find-decl-prefix-search))
4589 (setq c-find-decl-match-pos
(and (< cfd-match-pos cfd-start-pos
)
4592 ;; Advance `cfd-continue-pos' if it's before the start position.
4593 ;; The closest continue position that might have effect at or
4594 ;; after the start depends on what we started in. This also
4595 ;; finds a suitable start position in the special cases when the
4596 ;; region is completely within a literal or macro.
4597 (when (and cfd-continue-pos
(< cfd-continue-pos cfd-start-pos
))
4601 ;; If we're in a macro then it's the closest preceding token
4602 ;; in the macro. Check this before `start-in-literal',
4603 ;; since if we're inside a literal in a macro, the preceding
4604 ;; token is earlier than any `c-decl-end' spot inside the
4605 ;; literal (comment).
4606 (goto-char (or start-in-literal cfd-start-pos
))
4607 ;; The only syntactic ws in macros are comments.
4608 (c-backward-comments)
4610 (c-beginning-of-current-token))
4613 ;; If we're in a comment it can only be the closest
4614 ;; preceding `c-decl-end' position within that comment, if
4615 ;; any. Go back to the beginning of such a property so that
4616 ;; `c-find-decl-prefix-search' will find the end of it.
4617 ;; (Can't stop at the end and install it directly on
4618 ;; `cfd-prop-match' since that variable might be cleared
4619 ;; after `cfd-fun' below.)
4621 ;; Note that if the literal is a string then the property
4622 ;; search will simply skip to the beginning of it right
4624 (if (not c-type-decl-end-used
)
4625 (goto-char start-in-literal
)
4626 (goto-char cfd-start-pos
)
4628 (goto-char (previous-single-property-change
4629 (point) 'c-type nil start-in-literal
))
4630 (and (> (point) start-in-literal
)
4631 (not (eq (c-get-char-property (point) 'c-type
)
4634 (when (= (point) start-in-literal
)
4635 ;; Didn't find any property inside the comment, so we can
4636 ;; skip it entirely. (This won't skip past a string, but
4637 ;; that'll be handled quickly by the next
4638 ;; `c-find-decl-prefix-search' anyway.)
4639 (c-forward-single-comment)
4640 (if (> (point) cfd-limit
)
4641 (goto-char cfd-limit
))))
4644 ;; If we started in normal code, the only match that might
4645 ;; apply before the start is what we already got in
4646 ;; `cfd-match-pos' so we can continue at the start position.
4647 ;; (Note that we don't get here if the first match is below
4649 (goto-char cfd-start-pos
)))
4651 ;; Delete found matches if they are before our new continue
4652 ;; position, so that `c-find-decl-prefix-search' won't back up
4653 ;; to them later on.
4654 (setq cfd-continue-pos
(point))
4655 (when (and cfd-re-match
(< cfd-re-match cfd-continue-pos
))
4656 (setq cfd-re-match nil
))
4657 (when (and cfd-prop-match
(< cfd-prop-match cfd-continue-pos
))
4658 (setq cfd-prop-match nil
)))
4661 ;; This is the normal case and we got a proper syntactic
4662 ;; position. If there's a match then it's always outside
4663 ;; macros and comments, so advance to the next token and set
4664 ;; `cfd-token-pos'. The loop below will later go back using
4665 ;; `cfd-continue-pos' to fix declarations inside the
4667 (when (and cfd-match-pos
(< cfd-match-pos syntactic-pos
))
4668 (goto-char syntactic-pos
)
4669 (c-forward-syntactic-ws)
4670 (and cfd-continue-pos
4671 (< cfd-continue-pos
(point))
4672 (setq cfd-token-pos
(point))))
4674 ;; Have one of the special cases when the region is completely
4675 ;; within a literal or macro. `cfd-continue-pos' is set to a
4676 ;; good start position for the search, so do it.
4677 (c-find-decl-prefix-search)))
4679 ;; Now loop. Round what? (ACM, 2006/7/5). We already got the first match.
4683 (< cfd-match-pos cfd-limit
)
4686 ;; Kludge to filter out matches on the "<" that
4687 ;; aren't open parens, for the sake of languages
4688 ;; that got `c-recognize-<>-arglists' set.
4689 (and (eq (char-before cfd-match-pos
) ?
<)
4690 (not (c-get-char-property (1- cfd-match-pos
)
4693 ;; If `cfd-continue-pos' is less or equal to
4694 ;; `cfd-token-pos', we've got a hit inside a macro
4695 ;; that's in the syntactic whitespace before the last
4696 ;; "real" declaration we've checked. If they're equal
4697 ;; we've arrived at the declaration a second time, so
4698 ;; there's nothing to do.
4699 (= cfd-continue-pos cfd-token-pos
)
4702 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
4703 ;; we're still searching for declarations embedded in
4704 ;; the syntactic whitespace. In that case we need
4705 ;; only to skip comments and not macros, since they
4706 ;; can't be nested, and that's already been done in
4707 ;; `c-find-decl-prefix-search'.
4708 (when (> cfd-continue-pos cfd-token-pos
)
4709 (c-forward-syntactic-ws)
4710 (setq cfd-token-pos
(point)))
4712 ;; Continue if the following token fails the
4713 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
4714 (when (or (>= (point) cfd-limit
)
4715 (not (looking-at cfd-decl-re
))
4716 (and cfd-face-checklist
4718 (point) cfd-face-checklist
))))
4719 (goto-char cfd-continue-pos
)
4722 (< (point) cfd-limit
))
4723 (c-find-decl-prefix-search))
4725 (< (point) cfd-limit
))
4728 (>= (point) cfd-start-pos
)
4731 ;; Narrow to the end of the macro if we got a hit inside
4732 ;; one, to avoid recognizing things that start inside the
4733 ;; macro and end outside it.
4734 (when (> cfd-match-pos cfd-macro-end
)
4735 ;; Not in the same macro as in the previous round.
4737 (goto-char cfd-match-pos
)
4739 (if (save-excursion (and (c-beginning-of-macro)
4740 (< (point) cfd-match-pos
)))
4741 (progn (c-end-of-macro)
4745 (if (zerop cfd-macro-end
)
4747 (if (> cfd-macro-end
(point))
4748 (progn (narrow-to-region (point-min) cfd-macro-end
)
4750 ;; The matched token was the last thing in the macro,
4751 ;; so the whole match is bogus.
4752 (setq cfd-macro-end
0)
4755 (c-debug-put-decl-spot-faces cfd-match-pos
(point))
4756 (if (funcall cfd-fun cfd-match-pos
(/= cfd-macro-end
0))
4757 (setq cfd-prop-match nil
))
4759 (when (/= cfd-macro-end
0)
4760 ;; Restore limits if we did macro narrowment above.
4761 (narrow-to-region (point-min) cfd-buffer-end
)))
4763 (goto-char cfd-continue-pos
)
4764 (if (= cfd-continue-pos cfd-limit
)
4765 (setq cfd-match-pos cfd-limit
)
4766 (c-find-decl-prefix-search)))))
4769 ;; A cache for found types.
4771 ;; Buffer local variable that contains an obarray with the types we've
4772 ;; found. If a declaration is recognized somewhere we record the
4773 ;; fully qualified identifier in it to recognize it as a type
4774 ;; elsewhere in the file too. This is not accurate since we do not
4775 ;; bother with the scoping rules of the languages, but in practice the
4776 ;; same name is seldom used as both a type and something else in a
4777 ;; file, and we only use this as a last resort in ambiguous cases (see
4778 ;; `c-forward-decl-or-cast-1').
4780 ;; Not every type need be in this cache. However, things which have
4781 ;; ceased to be types must be removed from it.
4783 ;; Template types in C++ are added here too but with the template
4784 ;; arglist replaced with "<>" in references or "<" for the one in the
4785 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
4786 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
4787 ;; template specs can be fairly sized programs in themselves) and
4788 ;; improves the hit ratio (it's a type regardless of the template
4789 ;; args; it's just not the same type, but we're only interested in
4790 ;; recognizing types, not telling distinct types apart). Note that
4791 ;; template types in references are added here too; from the example
4792 ;; above there will also be an entry "Foo<".
4793 (defvar c-found-types nil
)
4794 (make-variable-buffer-local 'c-found-types
)
4796 (defsubst c-clear-found-types
()
4797 ;; Clears `c-found-types'.
4798 (setq c-found-types
(make-vector 53 0)))
4800 (defun c-add-type (from to
)
4801 ;; Add the given region as a type in `c-found-types'. If the region
4802 ;; doesn't match an existing type but there is a type which is equal
4803 ;; to the given one except that the last character is missing, then
4804 ;; the shorter type is removed. That's done to avoid adding all
4805 ;; prefixes of a type as it's being entered and font locked. This
4806 ;; doesn't cover cases like when characters are removed from a type
4807 ;; or added in the middle. We'd need the position of point when the
4808 ;; font locking is invoked to solve this well.
4810 ;; This function might do hidden buffer changes.
4811 (let ((type (c-syntactic-content from to c-recognize-
<>-arglists
)))
4812 (unless (intern-soft type c-found-types
)
4813 (unintern (substring type
0 -
1) c-found-types
)
4814 (intern type c-found-types
))))
4816 (defun c-unfind-type (name)
4817 ;; Remove the "NAME" from c-found-types, if present.
4818 (unintern name c-found-types
))
4820 (defsubst c-check-type
(from to
)
4821 ;; Return non-nil if the given region contains a type in
4824 ;; This function might do hidden buffer changes.
4825 (intern-soft (c-syntactic-content from to c-recognize-
<>-arglists
)
4828 (defun c-list-found-types ()
4829 ;; Return all the types in `c-found-types' as a sorted list of
4832 (mapatoms (lambda (type)
4833 (setq type-list
(cons (symbol-name type
)
4836 (sort type-list
'string-lessp
)))
4838 ;; Shut up the byte compiler.
4839 (defvar c-maybe-stale-found-type
)
4841 (defun c-trim-found-types (beg end old-len
)
4842 ;; An after change function which, in conjunction with the info in
4843 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
4844 ;; from `c-found-types', should this type have become stale. For
4845 ;; example, this happens to "foo" when "foo \n bar();" becomes
4846 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
4847 ;; the fontification.
4849 ;; Have we, perhaps, added non-ws characters to the front/back of a found
4853 (when (< end
(point-max))
4855 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
4856 (progn (goto-char end
)
4857 (c-end-of-current-token)))
4858 (c-unfind-type (buffer-substring-no-properties
4860 (when (> beg
(point-min))
4862 (if (and (c-end-of-current-token) ; only moves when we started in the middle
4863 (progn (goto-char beg
)
4864 (c-beginning-of-current-token)))
4865 (c-unfind-type (buffer-substring-no-properties
4868 (if c-maybe-stale-found-type
; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
4870 ;; Changing the amount of (already existing) whitespace - don't do anything.
4871 ((and (c-partial-ws-p beg end
)
4872 (or (= beg end
) ; removal of WS
4873 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type
)))))
4875 ;; The syntactic relationship which defined a "found type" has been
4877 ((eq (car c-maybe-stale-found-type
) 'c-decl-id-start
)
4878 (c-unfind-type (cadr c-maybe-stale-found-type
)))
4879 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
4883 ;; Setting and removing syntax properties on < and > in languages (C++
4884 ;; and Java) where they can be template/generic delimiters as well as
4885 ;; their normal meaning of "less/greater than".
4887 ;; Normally, < and > have syntax 'punctuation'. When they are found to
4888 ;; be delimiters, they are marked as such with the category properties
4889 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
4893 ;; It is impossible to determine with certainty whether a <..> pair in
4894 ;; C++ is two comparison operators or is template delimiters, unless
4895 ;; one duplicates a lot of a C++ compiler. For example, the following
4898 ;; foo (a < b, c > d) ;
4900 ;; could be a function call with two integer parameters (each a
4901 ;; relational expression), or it could be a constructor for class foo
4902 ;; taking one parameter d of templated type "a < b, c >". They are
4903 ;; somewhat easier to distinguish in Java.
4905 ;; The strategy now (2010-01) adopted is to mark and unmark < and
4906 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
4907 ;; individually when their context so indicated. This gave rise to
4908 ;; intractible problems when one of a matching pair was deleted, or
4909 ;; pulled into a literal.]
4911 ;; At each buffer change, the syntax-table properties are removed in a
4912 ;; before-change function and reapplied, when needed, in an
4913 ;; after-change function. It is far more important that the
4914 ;; properties get removed when they they are spurious than that they
4915 ;; be present when wanted.
4916 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4917 (defun c-clear-<-pair-props
(&optional pos
)
4918 ;; POS (default point) is at a < character. If it is marked with
4919 ;; open paren syntax-table text property, remove the property,
4920 ;; together with the close paren property on the matching > (if
4926 (when (equal (c-get-char-property (point) 'syntax-table
)
4927 c-
<-as-paren-syntax
)
4928 (with-syntax-table c-no-parens-syntax-table
; ignore unbalanced [,{,(,..
4929 (c-go-list-forward))
4930 (when (equal (c-get-char-property (1- (point)) 'syntax-table
)
4931 c-
>-as-paren-syntax
) ; should always be true.
4932 (c-clear-char-property (1- (point)) 'syntax-table
))
4933 (c-clear-char-property pos
'syntax-table
))))
4935 (defun c-clear->-pair-props
(&optional pos
)
4936 ;; POS (default point) is at a > character. If it is marked with
4937 ;; close paren syntax-table property, remove the property, together
4938 ;; with the open paren property on the matching < (if any).
4943 (when (equal (c-get-char-property (point) 'syntax-table
)
4944 c-
>-as-paren-syntax
)
4945 (with-syntax-table c-no-parens-syntax-table
; ignore unbalanced [,{,(,..
4946 (c-go-up-list-backward))
4947 (when (equal (c-get-char-property (point) 'syntax-table
)
4948 c-
<-as-paren-syntax
) ; should always be true.
4949 (c-clear-char-property (point) 'syntax-table
))
4950 (c-clear-char-property pos
'syntax-table
))))
4952 (defun c-clear-<>-pair-props
(&optional pos
)
4953 ;; POS (default point) is at a < or > character. If it has an
4954 ;; open/close paren syntax-table property, remove this property both
4955 ;; from the current character and its partner (which will also be
4958 ((eq (char-after) ?\
<)
4959 (c-clear-<-pair-props pos
))
4960 ((eq (char-after) ?\
>)
4961 (c-clear->-pair-props pos
))
4963 "c-clear-<>-pair-props called from wrong position"))))
4965 (defun c-clear-<-pair-props-if-match-after
(lim &optional pos
)
4966 ;; POS (default point) is at a < character. If it is both marked
4967 ;; with open/close paren syntax-table property, and has a matching >
4968 ;; (also marked) which is after LIM, remove the property both from
4969 ;; the current > and its partner.
4974 (when (equal (c-get-char-property (point) 'syntax-table
)
4975 c-
<-as-paren-syntax
)
4976 (with-syntax-table c-no-parens-syntax-table
; ignore unbalanced [,{,(,..
4977 (c-go-list-forward))
4978 (when (and (>= (point) lim
)
4979 (equal (c-get-char-property (1- (point)) 'syntax-table
)
4980 c-
>-as-paren-syntax
)) ; should always be true.
4981 (c-unmark-<-
>-as-paren
(1- (point)))
4982 (c-unmark-<-
>-as-paren pos
)))))
4984 (defun c-clear->-pair-props-if-match-before
(lim &optional pos
)
4985 ;; POS (default point) is at a > character. If it is both marked
4986 ;; with open/close paren syntax-table property, and has a matching <
4987 ;; (also marked) which is before LIM, remove the property both from
4988 ;; the current < and its partner.
4993 (when (equal (c-get-char-property (point) 'syntax-table
)
4994 c-
>-as-paren-syntax
)
4995 (with-syntax-table c-no-parens-syntax-table
; ignore unbalanced [,{,(,..
4996 (c-go-up-list-backward))
4997 (when (and (<= (point) lim
)
4998 (equal (c-get-char-property (point) 'syntax-table
)
4999 c-
<-as-paren-syntax
)) ; should always be true.
5000 (c-unmark-<-
>-as-paren
(point))
5001 (c-unmark-<-
>-as-paren pos
)))))
5003 (defun c-before-change-check-<>-operators
(beg end
)
5004 ;; Unmark certain pairs of "< .... >" which are currently marked as
5005 ;; template/generic delimiters. (This marking is via syntax-table
5006 ;; text properties).
5008 ;; These pairs are those which are in the current "statement" (i.e.,
5009 ;; the region between the {, }, or ; before BEG and the one after
5010 ;; END), and which enclose any part of the interval (BEG END).
5012 ;; Note that in C++ (?and Java), template/generic parens cannot
5013 ;; enclose a brace or semicolon, so we use these as bounds on the
5014 ;; region we must work on.
5016 ;; This function is called from before-change-functions (via
5017 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5018 ;; and point is undefined, both at entry and exit.
5020 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5023 (let ((beg-lit-limits (progn (goto-char beg
) (c-literal-limits)))
5024 (end-lit-limits (progn (goto-char end
) (c-literal-limits))))
5025 ;; Locate the barrier before the changed region
5026 (goto-char (if beg-lit-limits
(car beg-lit-limits
) beg
))
5027 (c-syntactic-skip-backward "^;{}" (max (- beg
2048) (point-min)))
5029 ;; Remove the syntax-table properties from each pertinent <...> pair.
5030 ;; Firsly, the ones with the < before beg and > after beg.
5031 (while (c-search-forward-char-property 'category
'c-
<-as-paren-syntax beg
)
5032 (c-clear-<-pair-props-if-match-after beg
(1- (point))))
5034 ;; Locate the barrier after END.
5035 (goto-char (if end-lit-limits
(cdr end-lit-limits
) end
))
5036 (c-syntactic-re-search-forward "[;{}]"
5037 (min (+ end
2048) (point-max)) 'end
)
5039 ;; Remove syntax-table properties from the remaining pertinent <...>
5040 ;; pairs, those with a > after end and < before end.
5041 (while (c-search-backward-char-property 'category
'c-
>-as-paren-syntax end
)
5042 (c-clear->-pair-props-if-match-before end
)))))
5046 (defun c-after-change-check-<>-operators
(beg end
)
5047 ;; This is called from `after-change-functions' when
5048 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5049 ;; chars with paren syntax become part of another operator like "<<"
5052 ;; This function might do hidden buffer changes.
5056 (when (or (looking-at "[<>]")
5057 (< (skip-chars-backward "<>") 0))
5060 (c-beginning-of-current-token)
5061 (when (and (< (point) beg
)
5062 (looking-at c-
<>-multichar-token-regexp
)
5063 (< beg
(setq beg
(match-end 0))))
5064 (while (progn (skip-chars-forward "^<>" beg
)
5066 (c-clear-<>-pair-props
)
5071 (when (or (looking-at "[<>]")
5072 (< (skip-chars-backward "<>") 0))
5075 (c-beginning-of-current-token)
5076 (when (and (< (point) end
)
5077 (looking-at c-
<>-multichar-token-regexp
)
5078 (< end
(setq end
(match-end 0))))
5079 (while (progn (skip-chars-forward "^<>" end
)
5081 (c-clear-<>-pair-props
)
5082 (forward-char)))))))
5086 ;; Handling of small scale constructs like types and names.
5088 ;; Dynamically bound variable that instructs `c-forward-type' to also
5089 ;; treat possible types (i.e. those that it normally returns 'maybe or
5090 ;; 'found for) as actual types (and always return 'found for them).
5091 ;; This means that it records them in `c-record-type-identifiers' if
5092 ;; that is set, and that it adds them to `c-found-types'.
5093 (defvar c-promote-possible-types nil
)
5095 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5096 ;; mark up successfully parsed arglists with paren syntax properties on
5097 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
5098 ;; `c-type' property of each argument separating comma.
5100 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
5101 ;; all arglists for side effects (i.e. recording types), otherwise it
5102 ;; exploits any existing paren syntax properties to quickly jump to the
5103 ;; end of already parsed arglists.
5105 ;; Marking up the arglists is not the default since doing that correctly
5106 ;; depends on a proper value for `c-restricted-<>-arglists'.
5107 (defvar c-parse-and-markup-
<>-arglists nil
)
5109 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5110 ;; not accept arglists that contain binary operators.
5112 ;; This is primarily used to handle C++ template arglists. C++
5113 ;; disambiguates them by checking whether the preceding name is a
5114 ;; template or not. We can't do that, so we assume it is a template
5115 ;; if it can be parsed as one. That usually works well since
5116 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
5117 ;; in almost all cases would be pointless.
5119 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
5120 ;; should let the comma separate the function arguments instead. And
5121 ;; in a context where the value of the expression is taken, e.g. in
5122 ;; "if (a < b || c > d)", it's probably not a template.
5123 (defvar c-restricted-
<>-arglists nil
)
5125 ;; Dynamically bound variables that instructs
5126 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
5127 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
5128 ;; `c-forward-label' to record the ranges of all the type and
5129 ;; reference identifiers they encounter. They will build lists on
5130 ;; these variables where each element is a cons of the buffer
5131 ;; positions surrounding each identifier. This recording is only
5132 ;; activated when `c-record-type-identifiers' is non-nil.
5134 ;; All known types that can't be identifiers are recorded, and also
5135 ;; other possible types if `c-promote-possible-types' is set.
5136 ;; Recording is however disabled inside angle bracket arglists that
5137 ;; are encountered inside names and other angle bracket arglists.
5138 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
5141 ;; Only the names in C++ template style references (e.g. "tmpl" in
5142 ;; "tmpl<a,b>::foo") are recorded as references, other references
5143 ;; aren't handled here.
5145 ;; `c-forward-label' records the label identifier(s) on
5146 ;; `c-record-ref-identifiers'.
5147 (defvar c-record-type-identifiers nil
)
5148 (defvar c-record-ref-identifiers nil
)
5150 ;; This variable will receive a cons cell of the range of the last
5151 ;; single identifier symbol stepped over by `c-forward-name' if it's
5152 ;; successful. This is the range that should be put on one of the
5153 ;; record lists above by the caller. It's assigned nil if there's no
5154 ;; such symbol in the name.
5155 (defvar c-last-identifier-range nil
)
5157 (defmacro c-record-type-id
(range)
5158 (if (eq (car-safe range
) 'cons
)
5160 `(setq c-record-type-identifiers
5161 (cons ,range c-record-type-identifiers
))
5162 `(let ((range ,range
))
5164 (setq c-record-type-identifiers
5165 (cons range c-record-type-identifiers
))))))
5167 (defmacro c-record-ref-id
(range)
5168 (if (eq (car-safe range
) 'cons
)
5170 `(setq c-record-ref-identifiers
5171 (cons ,range c-record-ref-identifiers
))
5172 `(let ((range ,range
))
5174 (setq c-record-ref-identifiers
5175 (cons range c-record-ref-identifiers
))))))
5177 ;; Dynamically bound variable that instructs `c-forward-type' to
5178 ;; record the ranges of types that only are found. Behaves otherwise
5179 ;; like `c-record-type-identifiers'.
5180 (defvar c-record-found-types nil
)
5182 (defmacro c-forward-keyword-prefixed-id
(type)
5183 ;; Used internally in `c-forward-keyword-clause' to move forward
5184 ;; over a type (if TYPE is 'type) or a name (otherwise) which
5185 ;; possibly is prefixed by keywords and their associated clauses.
5186 ;; Try with a type/name first to not trip up on those that begin
5187 ;; with a keyword. Return t if a known or found type is moved
5188 ;; over. The point is clobbered if nil is returned. If range
5189 ;; recording is enabled, the identifier is recorded on as a type
5190 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
5192 ;; This macro might do hidden buffer changes.
5194 (while (if (setq res
,(if (eq type
'type
)
5198 (and (looking-at c-keywords-regexp
)
5199 (c-forward-keyword-clause 1))))
5200 (when (memq res
'(t known found prefix
))
5201 ,(when (eq type
'ref
)
5202 `(when c-record-type-identifiers
5203 (c-record-ref-id c-last-identifier-range
)))
5206 (defmacro c-forward-id-comma-list
(type update-safe-pos
)
5207 ;; Used internally in `c-forward-keyword-clause' to move forward
5208 ;; over a comma separated list of types or names using
5209 ;; `c-forward-keyword-prefixed-id'.
5211 ;; This macro might do hidden buffer changes.
5213 ,(when update-safe-pos
5214 `(setq safe-pos
(point)))
5215 (eq (char-after) ?
,))
5218 (c-forward-syntactic-ws)
5219 (c-forward-keyword-prefixed-id ,type
)))))
5221 (defun c-forward-keyword-clause (match)
5222 ;; Submatch MATCH in the current match data is assumed to surround a
5223 ;; token. If it's a keyword, move over it and any immediately
5224 ;; following clauses associated with it, stopping at the start of
5225 ;; the next token. t is returned in that case, otherwise the point
5226 ;; stays and nil is returned. The kind of clauses that are
5227 ;; recognized are those specified by `c-type-list-kwds',
5228 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
5229 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
5230 ;; and `c-<>-arglist-kwds'.
5232 ;; This function records identifier ranges on
5233 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5234 ;; `c-record-type-identifiers' is non-nil.
5236 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
5237 ;; apply directly after the keyword, the type list is moved over
5238 ;; only when there is no unaccounted token before it (i.e. a token
5239 ;; that isn't moved over due to some other keyword list). The
5240 ;; identifier ranges in the list are still recorded if that should
5243 ;; This function might do hidden buffer changes.
5245 (let ((kwd-sym (c-keyword-sym (match-string match
))) safe-pos pos
5246 ;; The call to `c-forward-<>-arglist' below is made after
5247 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
5248 ;; are angle bracket arglists and `c-restricted-<>-arglists'
5249 ;; should therefore be nil.
5250 (c-parse-and-markup-<>-arglists t
)
5251 c-restricted-
<>-arglists
)
5254 (goto-char (match-end match
))
5255 (c-forward-syntactic-ws)
5256 (setq safe-pos
(point))
5259 ((and (c-keyword-member kwd-sym
'c-type-list-kwds
)
5260 (c-forward-keyword-prefixed-id type
))
5261 ;; There's a type directly after a keyword in `c-type-list-kwds'.
5262 (c-forward-id-comma-list type t
))
5264 ((and (c-keyword-member kwd-sym
'c-ref-list-kwds
)
5265 (c-forward-keyword-prefixed-id ref
))
5266 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
5267 (c-forward-id-comma-list ref t
))
5269 ((and (c-keyword-member kwd-sym
'c-paren-any-kwds
)
5270 (eq (char-after) ?\
())
5271 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
5274 (when (and (setq pos
(c-up-list-forward))
5275 (eq (char-before pos
) ?\
)))
5276 (when (and c-record-type-identifiers
5277 (c-keyword-member kwd-sym
'c-paren-type-kwds
))
5278 ;; Use `c-forward-type' on every identifier we can find
5279 ;; inside the paren, to record the types.
5280 (while (c-syntactic-re-search-forward c-symbol-start pos t
)
5281 (goto-char (match-beginning 0))
5282 (unless (c-forward-type)
5283 (looking-at c-symbol-key
) ; Always matches.
5284 (goto-char (match-end 0)))))
5287 (c-forward-syntactic-ws)
5288 (setq safe-pos
(point))))
5290 ((and (c-keyword-member kwd-sym
'c-
<>-sexp-kwds
)
5291 (eq (char-after) ?
<)
5292 (c-forward-<>-arglist
(c-keyword-member kwd-sym
'c-
<>-type-kwds
)))
5293 (c-forward-syntactic-ws)
5294 (setq safe-pos
(point)))
5296 ((and (c-keyword-member kwd-sym
'c-nonsymbol-sexp-kwds
)
5297 (not (looking-at c-symbol-start
))
5298 (c-safe (c-forward-sexp) t
))
5299 (c-forward-syntactic-ws)
5300 (setq safe-pos
(point))))
5302 (when (c-keyword-member kwd-sym
'c-colon-type-list-kwds
)
5303 (if (eq (char-after) ?
:)
5304 ;; If we are at the colon already, we move over the type
5308 (c-forward-syntactic-ws)
5309 (when (c-forward-keyword-prefixed-id type
)
5310 (c-forward-id-comma-list type t
)))
5311 ;; Not at the colon, so stop here. But the identifier
5312 ;; ranges in the type list later on should still be
5314 (and c-record-type-identifiers
5316 ;; If a keyword matched both one of the types above and
5317 ;; this one, we match `c-colon-type-list-re' after the
5318 ;; clause matched above.
5319 (goto-char safe-pos
)
5320 (looking-at c-colon-type-list-re
))
5322 (goto-char (match-end 0))
5323 (c-forward-syntactic-ws)
5324 (c-forward-keyword-prefixed-id type
))
5325 ;; There's a type after the `c-colon-type-list-re' match
5326 ;; after a keyword in `c-colon-type-list-kwds'.
5327 (c-forward-id-comma-list type nil
))))
5329 (goto-char safe-pos
)
5332 (defun c-forward-<>-arglist
(all-types)
5333 ;; The point is assumed to be at a "<". Try to treat it as the open
5334 ;; paren of an angle bracket arglist and move forward to the
5335 ;; corresponding ">". If successful, the point is left after the
5336 ;; ">" and t is returned, otherwise the point isn't moved and nil is
5337 ;; returned. If ALL-TYPES is t then all encountered arguments in
5338 ;; the arglist that might be types are treated as found types.
5340 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
5341 ;; function handles text properties on the angle brackets and argument
5342 ;; separating commas.
5344 ;; `c-restricted-<>-arglists' controls how lenient the template
5345 ;; arglist recognition should be.
5347 ;; This function records identifier ranges on
5348 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5349 ;; `c-record-type-identifiers' is non-nil.
5351 ;; This function might do hidden buffer changes.
5353 (let ((start (point))
5354 ;; If `c-record-type-identifiers' is set then activate
5355 ;; recording of any found types that constitute an argument in
5357 (c-record-found-types (if c-record-type-identifiers t
)))
5358 (if (catch 'angle-bracket-arglist-escape
5359 (setq c-record-found-types
5360 (c-forward-<>-arglist-recur all-types
)))
5362 (when (consp c-record-found-types
)
5363 (setq c-record-type-identifiers
5364 ;; `nconc' doesn't mind that the tail of
5365 ;; `c-record-found-types' is t.
5366 (nconc c-record-found-types c-record-type-identifiers
)))
5372 (defun c-forward-<>-arglist-recur
(all-types)
5373 ;; Recursive part of `c-forward-<>-arglist'.
5375 ;; This function might do hidden buffer changes.
5377 (let ((start (point)) res pos tmp
5378 ;; Cover this so that any recorded found type ranges are
5379 ;; automatically lost if it turns out to not be an angle
5380 ;; bracket arglist. It's propagated through the return value
5381 ;; on successful completion.
5382 (c-record-found-types c-record-found-types
)
5383 ;; List that collects the positions after the argument
5384 ;; separating ',' in the arglist.
5387 ;; If the '<' has paren open syntax then we've marked it as an angle
5388 ;; bracket arglist before, so skip to the end.
5389 (if (and (not c-parse-and-markup-
<>-arglists
)
5390 (c-get-char-property (point) 'syntax-table
))
5394 (if (and (c-go-up-list-forward)
5395 (eq (char-before) ?
>))
5398 ;; Got unmatched paren angle brackets. We don't clear the paren
5399 ;; syntax properties and retry, on the basis that it's very
5400 ;; unlikely that paren angle brackets become operators by code
5401 ;; manipulation. It's far more likely that it doesn't match due
5402 ;; to narrowing or some temporary change.
5407 (unless (looking-at c-
<-op-cont-regexp
)
5411 (when c-record-type-identifiers
5414 ;; All encountered identifiers are types, so set the
5415 ;; promote flag and parse the type.
5417 (c-forward-syntactic-ws)
5418 (when (looking-at c-identifier-start
)
5419 (let ((c-promote-possible-types t
))
5422 ;; Check if this arglist argument is a sole type. If
5423 ;; it's known then it's recorded in
5424 ;; `c-record-type-identifiers'. If it only is found
5425 ;; then it's recorded in `c-record-found-types' which we
5426 ;; might roll back if it turns out that this isn't an
5427 ;; angle bracket arglist afterall.
5428 (when (memq (char-before) '(?
, ?
<))
5429 (let ((orig-record-found-types c-record-found-types
))
5430 (c-forward-syntactic-ws)
5431 (and (memq (c-forward-type) '(known found
))
5432 (not (looking-at "[,>]"))
5433 ;; A found type was recorded but it's not the
5434 ;; only thing in the arglist argument, so reset
5435 ;; `c-record-found-types'.
5436 (setq c-record-found-types
5437 orig-record-found-types
))))))
5440 (or (when (eq (char-after) ?
>)
5441 ;; Must check for '>' at the very start separately,
5442 ;; since the regexp below has to avoid ">>" without
5447 ;; Note: These regexps exploit the match order in \| so
5448 ;; that "<>" is matched by "<" rather than "[^>:-]>".
5449 (c-syntactic-re-search-forward
5450 (if c-restricted-
<>-arglists
5451 ;; Stop on ',', '|', '&', '+' and '-' to catch
5452 ;; common binary operators that could be between
5453 ;; two comparison expressions "a<b" and "c>d".
5454 "[<;{},|&+-]\\|\\([^>:-]>\\)"
5455 ;; Otherwise we still stop on ',' to find the
5456 ;; argument start positions.
5457 "[<;{},]\\|\\([^>:-]>\\)")
5460 ;; If the arglist starter has lost its open paren
5461 ;; syntax but not the closer, we won't find the
5462 ;; closer above since we only search in the
5463 ;; balanced sexp. In that case we stop just short
5464 ;; of it so check if the following char is the closer.
5465 (when (eq (char-after) ?
>)
5470 ((eq (char-before) ?
>)
5471 ;; Either an operator starting with '>' or the end of
5472 ;; the angle bracket arglist.
5474 (if (looking-at c-
>-op-cont-regexp
)
5476 (goto-char (match-end 0))
5477 t
) ; Continue the loop.
5479 ;; The angle bracket arglist is finished.
5480 (when c-parse-and-markup-
<>-arglists
5481 (while arg-start-pos
5482 (c-put-c-type-property (1- (car arg-start-pos
))
5484 (setq arg-start-pos
(cdr arg-start-pos
)))
5485 (c-mark-<-as-paren start
)
5486 (c-mark->-as-paren
(1- (point))))
5488 nil
)) ; Exit the loop.
5490 ((eq (char-before) ?
<)
5491 ;; Either an operator starting with '<' or a nested arglist.
5494 (let (id-start id-end subres keyword-match
)
5495 (if (if (looking-at c-
<-op-cont-regexp
)
5496 (setq tmp
(match-end 0))
5503 ;; There's always an identifier before an angle
5504 ;; bracket arglist, or a keyword in
5505 ;; `c-<>-type-kwds' or `c-<>-arglist-kwds'.
5506 (c-backward-syntactic-ws)
5507 (setq id-end
(point))
5508 (c-simple-skip-symbol-backward)
5509 (when (or (setq keyword-match
5510 (looking-at c-opt-
<>-sexp-key
))
5511 (not (looking-at c-keywords-regexp
)))
5512 (setq id-start
(point))))
5515 (let ((c-record-type-identifiers nil
)
5516 (c-record-found-types nil
))
5517 (c-forward-<>-arglist-recur
5520 (c-keyword-sym (match-string 1))
5521 'c-
<>-type-kwds
)))))
5524 ;; It was not an angle bracket arglist.
5527 ;; It was an angle bracket arglist.
5528 (setq c-record-found-types subres
)
5530 ;; Record the identifier before the template as a type
5531 ;; or reference depending on whether the arglist is last
5532 ;; in a qualified identifier.
5533 (when (and c-record-type-identifiers
5534 (not keyword-match
))
5535 (if (and c-opt-identifier-concat-key
5537 (c-forward-syntactic-ws)
5538 (looking-at c-opt-identifier-concat-key
)))
5539 (c-record-ref-id (cons id-start id-end
))
5540 (c-record-type-id (cons id-start id-end
))))))
5543 ((and (eq (char-before) ?
,)
5544 (not c-restricted-
<>-arglists
))
5545 ;; Just another argument. Record the position. The
5546 ;; type check stuff that made us stop at it is at
5547 ;; the top of the loop.
5548 (setq arg-start-pos
(cons (point) arg-start-pos
)))
5551 ;; Got a character that can't be in an angle bracket
5552 ;; arglist argument. Abort using `throw', since
5553 ;; it's useless to try to find a surrounding arglist
5555 (throw 'angle-bracket-arglist-escape nil
))))))
5558 (or c-record-found-types t
)))))
5560 (defun c-backward-<>-arglist
(all-types &optional limit
)
5561 ;; The point is assumed to be directly after a ">". Try to treat it
5562 ;; as the close paren of an angle bracket arglist and move back to
5563 ;; the corresponding "<". If successful, the point is left at
5564 ;; the "<" and t is returned, otherwise the point isn't moved and
5565 ;; nil is returned. ALL-TYPES is passed on to
5566 ;; `c-forward-<>-arglist'.
5568 ;; If the optional LIMIT is given, it bounds the backward search.
5569 ;; It's then assumed to be at a syntactically relevant position.
5571 ;; This is a wrapper around `c-forward-<>-arglist'. See that
5572 ;; function for more details.
5574 (let ((start (point)))
5576 (if (and (not c-parse-and-markup-
<>-arglists
)
5577 (c-get-char-property (point) 'syntax-table
))
5579 (if (and (c-go-up-list-backward)
5580 (eq (char-after) ?
<))
5582 ;; See corresponding note in `c-forward-<>-arglist'.
5587 (c-syntactic-skip-backward "^<;{}" limit t
)
5590 (if (eq (char-before) ?
<)
5592 ;; Stopped at bob or a char that isn't allowed in an
5593 ;; arglist, so we've failed.
5598 (progn (c-beginning-of-current-token)
5600 ;; If we moved then the "<" was part of some
5601 ;; multicharacter token.
5605 (let ((beg-pos (point)))
5606 (if (c-forward-<>-arglist all-types
)
5607 (cond ((= (point) start
)
5608 ;; Matched the arglist. Break the while.
5612 ;; We started from a non-paren ">" inside an
5617 ;; Matched a shorter arglist. Can be a nested
5618 ;; one so continue looking.
5623 (/= (point) start
))))
5625 (defun c-forward-name ()
5626 ;; Move forward over a complete name if at the beginning of one,
5627 ;; stopping at the next following token. If the point is not at
5628 ;; something that are recognized as name then it stays put. A name
5629 ;; could be something as simple as "foo" in C or something as
5630 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
5631 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
5632 ;; int>::*volatile const" in C++ (this function is actually little
5633 ;; more than a `looking-at' call in all modes except those that,
5634 ;; like C++, have `c-recognize-<>-arglists' set). Return nil if no
5635 ;; name is found, 'template if it's an identifier ending with an
5636 ;; angle bracket arglist, 'operator of it's an operator identifier,
5637 ;; or t if it's some other kind of name.
5639 ;; This function records identifier ranges on
5640 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5641 ;; `c-record-type-identifiers' is non-nil.
5643 ;; This function might do hidden buffer changes.
5645 (let ((pos (point)) (start (point)) res id-start id-end
5646 ;; Turn off `c-promote-possible-types' here since we might
5647 ;; call `c-forward-<>-arglist' and we don't want it to promote
5648 ;; every suspect thing in the arglist to a type. We're
5649 ;; typically called from `c-forward-type' in this case, and
5650 ;; the caller only wants the top level type that it finds to
5652 c-promote-possible-types
)
5655 (looking-at c-identifier-key
)
5658 ;; Check for keyword. We go to the last symbol in
5659 ;; `c-identifier-key' first.
5660 (goto-char (setq id-end
(match-end 0)))
5661 (c-simple-skip-symbol-backward)
5662 (setq id-start
(point))
5664 (if (looking-at c-keywords-regexp
)
5665 (when (and (c-major-mode-is 'c
++-mode
)
5667 (cc-eval-when-compile
5668 (concat "\\(operator\\|\\(template\\)\\)"
5669 "\\(" (c-lang-const c-nonsymbol-key c
++)
5671 (if (match-beginning 2)
5672 ;; "template" is only valid inside an
5673 ;; identifier if preceded by "::".
5675 (c-backward-syntactic-ws)
5676 (and (c-safe (backward-char 2) t
)
5680 ;; Handle a C++ operator or template identifier.
5682 (c-forward-syntactic-ws)
5683 (cond ((eq (char-before id-end
) ?e
)
5684 ;; Got "... ::template".
5685 (let ((subres (c-forward-name)))
5690 ((looking-at c-identifier-start
)
5691 ;; Got a cast operator.
5692 (when (c-forward-type)
5695 ;; Now we should match a sequence of either
5696 ;; '*', '&' or a name followed by ":: *",
5697 ;; where each can be followed by a sequence
5698 ;; of `c-opt-type-modifier-key'.
5699 (while (cond ((looking-at "[*&]")
5700 (goto-char (match-end 0))
5702 ((looking-at c-identifier-start
)
5703 (and (c-forward-name)
5706 (goto-char (match-end 0))
5707 (c-forward-syntactic-ws)
5708 (eq (char-after) ?
*))
5713 (c-forward-syntactic-ws)
5715 (looking-at c-opt-type-modifier-key
))
5716 (goto-char (match-end 1))))))
5718 ((looking-at c-overloadable-operators-regexp
)
5719 ;; Got some other operator.
5720 (setq c-last-identifier-range
5721 (cons (point) (match-end 0)))
5722 (goto-char (match-end 0))
5723 (c-forward-syntactic-ws)
5729 ;; `id-start' is equal to `id-end' if we've jumped over
5730 ;; an identifier that doesn't end with a symbol token.
5731 ;; That can occur e.g. for Java import directives on the
5732 ;; form "foo.bar.*".
5733 (when (and id-start
(/= id-start id-end
))
5734 (setq c-last-identifier-range
5735 (cons id-start id-end
)))
5737 (c-forward-syntactic-ws)
5743 (when (or c-opt-identifier-concat-key
5744 c-recognize-
<>-arglists
)
5747 ((and c-opt-identifier-concat-key
5748 (looking-at c-opt-identifier-concat-key
))
5749 ;; Got a concatenated identifier. This handles the
5750 ;; cases with tricky syntactic whitespace that aren't
5751 ;; covered in `c-identifier-key'.
5752 (goto-char (match-end 0))
5753 (c-forward-syntactic-ws)
5756 ((and c-recognize-
<>-arglists
5757 (eq (char-after) ?
<))
5758 ;; Maybe an angle bracket arglist.
5760 (when (let (c-record-type-identifiers
5761 c-record-found-types
)
5762 (c-forward-<>-arglist nil
))
5764 (c-add-type start
(1+ pos
))
5765 (c-forward-syntactic-ws)
5767 c-last-identifier-range nil
)
5769 (if (and c-opt-identifier-concat-key
5770 (looking-at c-opt-identifier-concat-key
))
5772 ;; Continue if there's an identifier concatenation
5773 ;; operator after the template argument.
5775 (when (and c-record-type-identifiers id-start
)
5776 (c-record-ref-id (cons id-start id-end
)))
5778 (c-forward-syntactic-ws)
5781 (when (and c-record-type-identifiers id-start
)
5782 (c-record-type-id (cons id-start id-end
)))
5783 (setq res
'template
)
5790 (defun c-forward-type ()
5791 ;; Move forward over a type spec if at the beginning of one,
5792 ;; stopping at the next following token. Return t if it's a known
5793 ;; type that can't be a name or other expression, 'known if it's an
5794 ;; otherwise known type (according to `*-font-lock-extra-types'),
5795 ;; 'prefix if it's a known prefix of a type, 'found if it's a type
5796 ;; that matches one in `c-found-types', 'maybe if it's an identfier
5797 ;; that might be a type, or nil if it can't be a type (the point
5798 ;; isn't moved then). The point is assumed to be at the beginning
5801 ;; Note that this function doesn't skip past the brace definition
5802 ;; that might be considered part of the type, e.g.
5803 ;; "enum {a, b, c} foo".
5805 ;; This function records identifier ranges on
5806 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5807 ;; `c-record-type-identifiers' is non-nil.
5809 ;; This function might do hidden buffer changes.
5811 (let ((start (point)) pos res name-res id-start id-end id-range
)
5813 ;; Skip leading type modifiers. If any are found we know it's a
5814 ;; prefix of a type.
5815 (when c-opt-type-modifier-key
5816 (while (looking-at c-opt-type-modifier-key
)
5817 (goto-char (match-end 1))
5818 (c-forward-syntactic-ws)
5819 (setq res
'prefix
)))
5822 ((looking-at c-type-prefix-key
)
5823 ;; Looking at a keyword that prefixes a type identifier,
5825 (goto-char (match-end 1))
5826 (c-forward-syntactic-ws)
5828 (if (memq (setq name-res
(c-forward-name)) '(t template
))
5830 (when (eq name-res t
)
5831 ;; In many languages the name can be used without the
5832 ;; prefix, so we add it to `c-found-types'.
5833 (c-add-type pos
(point))
5834 (when (and c-record-type-identifiers
5835 c-last-identifier-range
)
5836 (c-record-type-id c-last-identifier-range
)))
5844 (if (looking-at c-identifier-start
)
5846 (setq id-start
(point)
5847 name-res
(c-forward-name))
5849 (setq id-end
(point)
5850 id-range c-last-identifier-range
))))
5851 (and (cond ((looking-at c-primitive-type-key
)
5853 ((c-with-syntax-table c-identifier-syntax-table
5854 (looking-at c-known-type-key
))
5859 (goto-char (match-end 1))
5860 (c-forward-syntactic-ws)
5861 (setq pos
(point))))
5864 ;; Looking at a primitive or known type identifier. We've
5865 ;; checked for a name first so that we don't go here if the
5866 ;; known type match only is a prefix of another name.
5868 (setq id-end
(match-end 1))
5870 (when (and c-record-type-identifiers
5871 (or c-promote-possible-types
(eq res t
)))
5872 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
5874 (if (and c-opt-type-component-key
5876 (looking-at c-opt-type-component-key
)))
5877 ;; There might be more keywords for the type.
5879 (c-forward-keyword-clause 1)
5881 (setq safe-pos
(point))
5882 (looking-at c-opt-type-component-key
))
5883 (when (and c-record-type-identifiers
5884 (looking-at c-primitive-type-key
))
5885 (c-record-type-id (cons (match-beginning 1)
5887 (c-forward-keyword-clause 1))
5888 (if (looking-at c-primitive-type-key
)
5890 (when c-record-type-identifiers
5891 (c-record-type-id (cons (match-beginning 1)
5893 (c-forward-keyword-clause 1)
5895 (goto-char safe-pos
)
5896 (setq res
'prefix
)))
5897 (unless (save-match-data (c-forward-keyword-clause 1))
5900 (goto-char (match-end 1))
5901 (c-forward-syntactic-ws)))))
5904 (cond ((eq name-res t
)
5905 ;; A normal identifier.
5907 (if (or res c-promote-possible-types
)
5909 (c-add-type id-start id-end
)
5910 (when (and c-record-type-identifiers id-range
)
5911 (c-record-type-id id-range
))
5914 (setq res
(if (c-check-type id-start id-end
)
5915 ;; It's an identifier that has been used as
5916 ;; a type somewhere else.
5918 ;; It's an identifier that might be a type.
5920 ((eq name-res
'template
)
5921 ;; A template is a type.
5925 ;; Otherwise it's an operator identifier, which is not a type.
5930 ;; Skip trailing type modifiers. If any are found we know it's
5932 (when c-opt-type-modifier-key
5933 (while (looking-at c-opt-type-modifier-key
)
5934 (goto-char (match-end 1))
5935 (c-forward-syntactic-ws)
5938 ;; Step over any type suffix operator. Do not let the existence
5939 ;; of these alter the classification of the found type, since
5940 ;; these operators typically are allowed in normal expressions
5942 (when c-opt-type-suffix-key
5943 (while (looking-at c-opt-type-suffix-key
)
5944 (goto-char (match-end 1))
5945 (c-forward-syntactic-ws)))
5947 (when c-opt-type-concat-key
5948 ;; Look for a trailing operator that concatenates the type
5949 ;; with a following one, and if so step past that one through
5950 ;; a recursive call. Note that we don't record concatenated
5951 ;; types in `c-found-types' - it's the component types that
5952 ;; are recorded when appropriate.
5954 (let* ((c-promote-possible-types (or (memq res
'(t known
))
5955 c-promote-possible-types
))
5956 ;; If we can't promote then set `c-record-found-types' so that
5957 ;; we can merge in the types from the second part afterwards if
5958 ;; it turns out to be a known type there.
5959 (c-record-found-types (and c-record-type-identifiers
5960 (not c-promote-possible-types
)))
5962 (if (and (looking-at c-opt-type-concat-key
)
5965 (goto-char (match-end 1))
5966 (c-forward-syntactic-ws)
5967 (setq subres
(c-forward-type))))
5970 ;; If either operand certainly is a type then both are, but we
5971 ;; don't let the existence of the operator itself promote two
5972 ;; uncertain types to a certain one.
5975 (unless (eq name-res
'template
)
5976 (c-add-type id-start id-end
))
5977 (when (and c-record-type-identifiers id-range
)
5978 (c-record-type-id id-range
))
5989 (when (and (eq res t
)
5990 (consp c-record-found-types
))
5991 ;; Merge in the ranges of any types found by the second
5992 ;; `c-forward-type'.
5993 (setq c-record-type-identifiers
5994 ;; `nconc' doesn't mind that the tail of
5995 ;; `c-record-found-types' is t.
5996 (nconc c-record-found-types
5997 c-record-type-identifiers
))))
6001 (when (and c-record-found-types
(memq res
'(known found
)) id-range
)
6002 (setq c-record-found-types
6003 (cons id-range c-record-found-types
))))
6005 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
6010 ;; Handling of large scale constructs like statements and declarations.
6012 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
6013 ;; defsubst or perhaps even a defun, but it contains lots of free
6014 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
6015 (defmacro c-fdoc-shift-type-backward
(&optional short
)
6016 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
6017 ;; of types when parsing a declaration, which means that it
6018 ;; sometimes consumes the identifier in the declaration as a type.
6019 ;; This is used to "backtrack" and make the last type be treated as
6020 ;; an identifier instead.
6023 ;; These identifiers are bound only in the inner let.
6024 '(setq identifier-type at-type
6025 identifier-start type-start
6029 got-suffix-after-parens id-start
6032 (if (setq at-type
(if (eq backup-at-type
'prefix
)
6035 (setq type-start backup-type-start
6036 id-start backup-id-start
)
6037 (setq type-start start-pos
6038 id-start start-pos
))
6040 ;; When these flags already are set we've found specifiers that
6041 ;; unconditionally signal these attributes - backtracking doesn't
6042 ;; change that. So keep them set in that case.
6044 (setq at-type-decl backup-at-type-decl
))
6046 (setq maybe-typeless backup-maybe-typeless
))
6049 ;; This identifier is bound only in the inner let.
6050 '(setq start id-start
))))
6052 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end
)
6053 ;; Move forward over a declaration or a cast if at the start of one.
6054 ;; The point is assumed to be at the start of some token. Nil is
6055 ;; returned if no declaration or cast is recognized, and the point
6056 ;; is clobbered in that case.
6058 ;; If a declaration is parsed:
6060 ;; The point is left at the first token after the first complete
6061 ;; declarator, if there is one. The return value is a cons where
6062 ;; the car is the position of the first token in the declarator. (See
6063 ;; below for the cdr.)
6066 ;; void foo (int a, char *b) stuff ...
6070 ;; unsigned int a = c_style_initializer, b;
6072 ;; unsigned int a (cplusplus_style_initializer), b;
6073 ;; car ^ ^ point (might change)
6074 ;; class Foo : public Bar {}
6076 ;; class PikeClass (int a, string b) stuff ...
6082 ;; void cplusplus_function (int x) throw (Bad);
6084 ;; Foo::Foo (int b) : Base (b) {}
6087 ;; The cdr of the return value is non-nil iff a `c-typedef-decl-kwds'
6088 ;; specifier (e.g. class, struct, enum, typedef) is found in the
6089 ;; declaration, i.e. the declared identifier(s) are types.
6091 ;; If a cast is parsed:
6093 ;; The point is left at the first token after the closing paren of
6094 ;; the cast. The return value is `cast'. Note that the start
6095 ;; position must be at the first token inside the cast parenthesis
6098 ;; PRECEDING-TOKEN-END is the first position after the preceding
6099 ;; token, i.e. on the other side of the syntactic ws from the point.
6100 ;; Use a value less than or equal to (point-min) if the point is at
6101 ;; the first token in (the visible part of) the buffer.
6103 ;; CONTEXT is a symbol that describes the context at the point:
6104 ;; 'decl In a comma-separated declaration context (typically
6105 ;; inside a function declaration arglist).
6106 ;; '<> In an angle bracket arglist.
6107 ;; 'arglist Some other type of arglist.
6108 ;; nil Some other context or unknown context. Includes
6109 ;; within the parens of an if, for, ... construct.
6111 ;; LAST-CAST-END is the first token after the closing paren of a
6112 ;; preceding cast, or nil if none is known. If
6113 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
6114 ;; the position after the closest preceding call where a cast was
6115 ;; matched. In that case it's used to discover chains of casts like
6118 ;; This function records identifier ranges on
6119 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6120 ;; `c-record-type-identifiers' is non-nil.
6122 ;; This function might do hidden buffer changes.
6124 (let (;; `start-pos' is used below to point to the start of the
6125 ;; first type, i.e. after any leading specifiers. It might
6126 ;; also point at the beginning of the preceding syntactic
6129 ;; Set to the result of `c-forward-type'.
6131 ;; The position of the first token in what we currently
6132 ;; believe is the type in the declaration or cast, after any
6133 ;; specifiers and their associated clauses.
6135 ;; The position of the first token in what we currently
6136 ;; believe is the declarator for the first identifier. Set
6137 ;; when the type is found, and moved forward over any
6138 ;; `c-decl-hangon-kwds' and their associated clauses that
6139 ;; occurs after the type.
6141 ;; These store `at-type', `type-start' and `id-start' of the
6142 ;; identifier before the one in those variables. The previous
6143 ;; identifier might turn out to be the real type in a
6144 ;; declaration if the last one has to be the declarator in it.
6145 ;; If `backup-at-type' is nil then the other variables have
6146 ;; undefined values.
6147 backup-at-type backup-type-start backup-id-start
6148 ;; Set if we've found a specifier that makes the defined
6149 ;; identifier(s) types.
6151 ;; Set if we've found a specifier that can start a declaration
6152 ;; where there's no type.
6154 ;; If a specifier is found that also can be a type prefix,
6155 ;; these flags are set instead of those above. If we need to
6156 ;; back up an identifier, they are copied to the real flag
6157 ;; variables. Thus they only take effect if we fail to
6158 ;; interpret it as a type.
6159 backup-at-type-decl backup-maybe-typeless
6160 ;; Whether we've found a declaration or a cast. We might know
6161 ;; this before we've found the type in it. It's 'ids if we've
6162 ;; found two consecutive identifiers (usually a sure sign, but
6163 ;; we should allow that in labels too), and t if we've found a
6164 ;; specifier keyword (a 100% sure sign).
6166 ;; Set when we need to back up to parse this as a declaration
6167 ;; but not as a cast.
6169 ;; For casts, the return position.
6171 ;; Save `c-record-type-identifiers' and
6172 ;; `c-record-ref-identifiers' since ranges are recorded
6173 ;; speculatively and should be thrown away if it turns out
6174 ;; that it isn't a declaration or cast.
6175 (save-rec-type-ids c-record-type-identifiers
)
6176 (save-rec-ref-ids c-record-ref-identifiers
))
6178 ;; Check for a type. Unknown symbols are treated as possible
6179 ;; types, but they could also be specifiers disguised through
6180 ;; macros like __INLINE__, so we recognize both types and known
6181 ;; specifiers after them too.
6183 (let* ((start (point)) kwd-sym kwd-clause-end found-type
)
6185 ;; Look for a specifier keyword clause.
6186 (when (looking-at c-prefix-spec-kwds-re
)
6187 (setq kwd-sym
(c-keyword-sym (match-string 1)))
6189 (c-forward-keyword-clause 1)
6190 (setq kwd-clause-end
(point))))
6192 (when (setq found-type
(c-forward-type))
6193 ;; Found a known or possible type or a prefix of a known type.
6196 ;; Got two identifiers with nothing but whitespace
6197 ;; between them. That can only happen in declarations.
6198 (setq at-decl-or-cast
'ids
)
6200 (when (eq at-type
'found
)
6201 ;; If the previous identifier is a found type we
6202 ;; record it as a real one; it might be some sort of
6203 ;; alias for a prefix like "unsigned".
6205 (goto-char type-start
)
6206 (let ((c-promote-possible-types t
))
6207 (c-forward-type)))))
6209 (setq backup-at-type at-type
6210 backup-type-start type-start
6211 backup-id-start id-start
6215 ;; The previous ambiguous specifier/type turned out
6216 ;; to be a type since we've parsed another one after
6217 ;; it, so clear these backup flags.
6218 backup-at-type-decl nil
6219 backup-maybe-typeless nil
))
6223 ;; Handle known specifier keywords and
6224 ;; `c-decl-hangon-kwds' which can occur after known
6227 (if (c-keyword-member kwd-sym
'c-decl-hangon-kwds
)
6228 ;; It's a hang-on keyword that can occur anywhere.
6230 (setq at-decl-or-cast t
)
6232 ;; Move the identifier start position if
6233 ;; we've passed a type.
6234 (setq id-start kwd-clause-end
)
6235 ;; Otherwise treat this as a specifier and
6236 ;; move the fallback position.
6237 (setq start-pos kwd-clause-end
))
6238 (goto-char kwd-clause-end
))
6240 ;; It's an ordinary specifier so we know that
6241 ;; anything before this can't be the type.
6242 (setq backup-at-type nil
6243 start-pos kwd-clause-end
)
6246 ;; It's ambiguous whether this keyword is a
6247 ;; specifier or a type prefix, so set the backup
6248 ;; flags. (It's assumed that `c-forward-type'
6249 ;; moved further than `c-forward-keyword-clause'.)
6251 (when (c-keyword-member kwd-sym
'c-typedef-decl-kwds
)
6252 (setq backup-at-type-decl t
))
6253 (when (c-keyword-member kwd-sym
'c-typeless-decl-kwds
)
6254 (setq backup-maybe-typeless t
)))
6256 (when (c-keyword-member kwd-sym
'c-typedef-decl-kwds
)
6257 (setq at-type-decl t
))
6258 (when (c-keyword-member kwd-sym
'c-typeless-decl-kwds
)
6259 (setq maybe-typeless t
))
6261 ;; Haven't matched a type so it's an umambiguous
6262 ;; specifier keyword and we know we're in a
6264 (setq at-decl-or-cast t
)
6266 (goto-char kwd-clause-end
))))
6268 ;; If the type isn't known we continue so that we'll jump
6269 ;; over all specifiers and type identifiers. The reason
6270 ;; to do this for a known type prefix is to make things
6271 ;; like "unsigned INT16" work.
6272 (and found-type
(not (eq found-type t
))))))
6276 ;; If a known type was found, we still need to skip over any
6277 ;; hangon keyword clauses after it. Otherwise it has already
6278 ;; been done in the loop above.
6279 (while (looking-at c-decl-hangon-key
)
6280 (c-forward-keyword-clause 1))
6281 (setq id-start
(point)))
6283 ((eq at-type
'prefix
)
6284 ;; A prefix type is itself a primitive type when it's not
6285 ;; followed by another type.
6289 ;; Got no type but set things up to continue anyway to handle
6290 ;; the various cases when a declaration doesn't start with a
6292 (setq id-start start-pos
))
6294 ((and (eq at-type
'maybe
)
6295 (c-major-mode-is 'c
++-mode
))
6296 ;; If it's C++ then check if the last "type" ends on the form
6297 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
6298 ;; (con|de)structor.
6300 (let (name end-2 end-1
)
6301 (goto-char id-start
)
6302 (c-backward-syntactic-ws)
6303 (setq end-2
(point))
6305 (c-simple-skip-symbol-backward)
6308 (buffer-substring-no-properties (point) end-2
))
6309 ;; Cheating in the handling of syntactic ws below.
6310 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
6312 (setq end-1
(point))
6313 (c-simple-skip-symbol-backward))
6314 (>= (point) type-start
)
6315 (equal (buffer-substring-no-properties (point) end-1
)
6317 ;; It is a (con|de)structor name. In that case the
6318 ;; declaration is typeless so zap out any preceding
6319 ;; identifier(s) that we might have taken as types.
6320 (goto-char type-start
)
6323 id-start type-start
))))))
6325 ;; Check for and step over a type decl expression after the thing
6326 ;; that is or might be a type. This can't be skipped since we
6327 ;; need the correct end position of the declarator for
6328 ;; `max-type-decl-end-*'.
6329 (let ((start (point)) (paren-depth 0) pos
6330 ;; True if there's a non-open-paren match of
6331 ;; `c-type-decl-prefix-key'.
6333 ;; True if the declarator is surrounded by a parenthesis pair.
6335 ;; True if there is an identifier in the declarator.
6337 ;; True if there's a non-close-paren match of
6338 ;; `c-type-decl-suffix-key'.
6340 ;; True if there's a prefix match outside the outermost
6341 ;; paren pair that surrounds the declarator.
6342 got-prefix-before-parens
6343 ;; True if there's a suffix match outside the outermost
6344 ;; paren pair that surrounds the declarator. The value is
6345 ;; the position of the first suffix match.
6346 got-suffix-after-parens
6347 ;; True if we've parsed the type decl to a token that is
6348 ;; known to end declarations in this context.
6350 ;; The earlier values of `at-type' and `type-start' if we've
6351 ;; shifted the type backwards.
6352 identifier-type identifier-start
6353 ;; If `c-parse-and-markup-<>-arglists' is set we need to
6354 ;; turn it off during the name skipping below to avoid
6355 ;; getting `c-type' properties that might be bogus. That
6356 ;; can happen since we don't know if
6357 ;; `c-restricted-<>-arglists' will be correct inside the
6358 ;; arglist paren that gets entered.
6359 c-parse-and-markup-
<>-arglists
)
6361 (goto-char id-start
)
6363 ;; Skip over type decl prefix operators. (Note similar code in
6364 ;; `c-font-lock-declarators'.)
6365 (while (and (looking-at c-type-decl-prefix-key
)
6366 (if (and (c-major-mode-is 'c
++-mode
)
6367 (match-beginning 2))
6368 ;; If the second submatch matches in C++ then
6369 ;; we're looking at an identifier that's a
6370 ;; prefix only if it specifies a member pointer.
6371 (when (setq got-identifier
(c-forward-name))
6372 (if (looking-at "\\(::\\)")
6373 ;; We only check for a trailing "::" and
6374 ;; let the "*" that should follow be
6375 ;; matched in the next round.
6376 (progn (setq got-identifier nil
) t
)
6377 ;; It turned out to be the real identifier,
6382 (if (eq (char-after) ?\
()
6384 (setq paren-depth
(1+ paren-depth
))
6386 (unless got-prefix-before-parens
6387 (setq got-prefix-before-parens
(= paren-depth
0)))
6389 (goto-char (match-end 1)))
6390 (c-forward-syntactic-ws))
6392 (setq got-parens
(> paren-depth
0))
6394 ;; Skip over an identifier.
6396 (and (looking-at c-identifier-start
)
6397 (setq got-identifier
(c-forward-name))))
6399 ;; Skip over type decl suffix operators.
6400 (while (if (looking-at c-type-decl-suffix-key
)
6402 (if (eq (char-after) ?\
))
6403 (when (> paren-depth
0)
6404 (setq paren-depth
(1- paren-depth
))
6407 (when (if (save-match-data (looking-at "\\s\("))
6408 (c-safe (c-forward-sexp 1) t
)
6409 (goto-char (match-end 1))
6411 (when (and (not got-suffix-after-parens
)
6413 (setq got-suffix-after-parens
(match-beginning 0)))
6414 (setq got-suffix t
)))
6416 ;; No suffix matched. We might have matched the
6417 ;; identifier as a type and the open paren of a
6418 ;; function arglist as a type decl prefix. In that
6419 ;; case we should "backtrack": Reinterpret the last
6420 ;; type as the identifier, move out of the arglist and
6421 ;; continue searching for suffix operators.
6423 ;; Do this even if there's no preceding type, to cope
6424 ;; with old style function declarations in K&R C,
6425 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
6426 ;; style declarations. That isn't applicable in an
6427 ;; arglist context, though.
6428 (when (and (= paren-depth
1)
6429 (not got-prefix-before-parens
)
6430 (not (eq at-type t
))
6433 backup-maybe-typeless
6434 (when c-recognize-typeless-decls
6436 (setq pos
(c-up-list-forward (point)))
6437 (eq (char-before pos
) ?\
)))
6438 (c-fdoc-shift-type-backward)
6442 (c-forward-syntactic-ws))
6444 (when (and (or maybe-typeless backup-maybe-typeless
)
6445 (not got-identifier
)
6448 ;; Have found no identifier but `c-typeless-decl-kwds' has
6449 ;; matched so we know we're inside a declaration. The
6450 ;; preceding type must be the identifier instead.
6451 (c-fdoc-shift-type-backward))
6455 (catch 'at-decl-or-cast
6458 (when (> paren-depth
0)
6459 ;; Encountered something inside parens that isn't matched by
6460 ;; the `c-type-decl-*' regexps, so it's not a type decl
6461 ;; expression. Try to skip out to the same paren depth to
6462 ;; not confuse the cast check below.
6463 (c-safe (goto-char (scan-lists (point) 1 paren-depth
)))
6464 ;; If we've found a specifier keyword then it's a
6465 ;; declaration regardless.
6466 (throw 'at-decl-or-cast
(eq at-decl-or-cast t
)))
6469 (looking-at (cond ((eq context
'<>) "[,>]")
6473 ;; Now we've collected info about various characteristics of
6474 ;; the construct we're looking at. Below follows a decision
6475 ;; tree based on that. It's ordered to check more certain
6476 ;; signs before less certain ones.
6482 (when (and (or at-type maybe-typeless
)
6483 (not (or got-prefix got-parens
)))
6484 ;; Got another identifier directly after the type, so it's a
6486 (throw 'at-decl-or-cast t
))
6488 (when (and got-parens
6490 (not got-suffix-after-parens
)
6493 backup-maybe-typeless
))
6494 ;; Got a declaration of the form "foo bar (gnu);" where we've
6495 ;; recognized "bar" as the type and "gnu" as the declarator.
6496 ;; In this case it's however more likely that "bar" is the
6497 ;; declarator and "gnu" a function argument or initializer (if
6498 ;; `c-recognize-paren-inits' is set), since the parens around
6499 ;; "gnu" would be superfluous if it's a declarator. Shift the
6500 ;; type one step backward.
6501 (c-fdoc-shift-type-backward)))
6503 ;; Found no identifier.
6509 (when (= (point) start
)
6510 ;; Got a plain list of identifiers. If a colon follows it's
6511 ;; a valid label. Otherwise the last one probably is the
6512 ;; declared identifier and we should back up to the previous
6513 ;; type, providing it isn't a cast.
6514 (if (eq (char-after) ?
:)
6515 ;; If we've found a specifier keyword then it's a
6516 ;; declaration regardless.
6517 (throw 'at-decl-or-cast
(eq at-decl-or-cast t
))
6518 (setq backup-if-not-cast t
)
6519 (throw 'at-decl-or-cast t
)))
6522 (when (and got-suffix
6525 ;; Got a plain list of identifiers followed by some suffix.
6526 ;; If this isn't a cast then the last identifier probably is
6527 ;; the declared one and we should back up to the previous
6529 (setq backup-if-not-cast t
)
6530 (throw 'at-decl-or-cast t
)))
6533 (when (eq at-type t
)
6534 ;; If the type is known we know that there can't be any
6535 ;; identifier somewhere else, and it's only in declarations in
6536 ;; e.g. function prototypes and in casts that the identifier may
6538 (throw 'at-decl-or-cast t
))
6540 (when (= (point) start
)
6541 ;; Only got a single identifier (parsed as a type so far).
6544 ;; Check that the identifier isn't at the start of an
6549 ;; Inside an arglist that contains declarations. If K&R
6550 ;; style declarations and parenthesis style initializers
6551 ;; aren't allowed then the single identifier must be a
6552 ;; type, else we require that it's known or found
6553 ;; (primitive types are handled above).
6554 (or (and (not c-recognize-knr-p
)
6555 (not c-recognize-paren-inits
))
6556 (memq at-type
'(known found
))))
6558 ;; Inside a template arglist. Accept known and found
6559 ;; types; other identifiers could just as well be
6560 ;; constants in C++.
6561 (memq at-type
'(known found
)))))
6562 (throw 'at-decl-or-cast t
)
6564 ;; Can't be a valid declaration or cast, but if we've found a
6565 ;; specifier it can't be anything else either, so treat it as
6566 ;; an invalid/unfinished declaration or cast.
6567 (throw 'at-decl-or-cast at-decl-or-cast
))))
6572 (not (eq at-type t
))
6575 backup-maybe-typeless
6576 (when c-recognize-typeless-decls
6577 (or (not got-suffix
)
6579 c-after-suffixed-type-maybe-decl-key
))))))
6580 ;; Got an empty paren pair and a preceding type that probably
6581 ;; really is the identifier. Shift the type backwards to make
6582 ;; the last one the identifier. This is analogous to the
6583 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
6586 ;; Exception: In addition to the conditions in that
6587 ;; "backtracking" code, do not shift backward if we're not
6588 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
6589 ;; Since there's no preceding type, the shift would mean that
6590 ;; the declaration is typeless. But if the regexp doesn't match
6591 ;; then we will simply fall through in the tests below and not
6592 ;; recognize it at all, so it's better to try it as an abstract
6593 ;; declarator instead.
6594 (c-fdoc-shift-type-backward)
6596 ;; Still no identifier.
6598 (when (and got-prefix
(or got-parens got-suffix
))
6599 ;; Require `got-prefix' together with either `got-parens' or
6600 ;; `got-suffix' to recognize it as an abstract declarator:
6601 ;; `got-parens' only is probably an empty function call.
6602 ;; `got-suffix' only can build an ordinary expression together
6603 ;; with the preceding identifier which we've taken as a type.
6604 ;; We could actually accept on `got-prefix' only, but that can
6605 ;; easily occur temporarily while writing an expression so we
6606 ;; avoid that case anyway. We could do a better job if we knew
6607 ;; the point when the fontification was invoked.
6608 (throw 'at-decl-or-cast t
))
6614 got-suffix-after-parens
6615 (eq (char-after got-suffix-after-parens
) ?\
())
6616 ;; Got a type, no declarator but a paren suffix. I.e. it's a
6617 ;; normal function call afterall (or perhaps a C++ style object
6618 ;; instantiation expression).
6619 (throw 'at-decl-or-cast nil
))))
6622 (when at-decl-or-cast
6623 ;; By now we've located the type in the declaration that we know
6625 (throw 'at-decl-or-cast t
))
6628 (when (and got-identifier
6630 (looking-at c-after-suffixed-type-decl-key
)
6634 (not (eq at-type t
)))
6635 ;; Shift the type backward in the case that there's a
6636 ;; single identifier inside parens. That can only
6637 ;; occur in K&R style function declarations so it's
6638 ;; more likely that it really is a function call.
6639 ;; Therefore we only do this after
6640 ;; `c-after-suffixed-type-decl-key' has matched.
6641 (progn (c-fdoc-shift-type-backward) t
)
6642 got-suffix-after-parens
))
6643 ;; A declaration according to `c-after-suffixed-type-decl-key'.
6644 (throw 'at-decl-or-cast t
))
6647 (when (and (or got-prefix
(not got-parens
))
6648 (memq at-type
'(t known
)))
6649 ;; It's a declaration if a known type precedes it and it can't be a
6651 (throw 'at-decl-or-cast t
))
6653 ;; If we get here we can't tell if this is a type decl or a normal
6654 ;; expression by looking at it alone. (That's under the assumption
6655 ;; that normal expressions always can look like type decl expressions,
6656 ;; which isn't really true but the cases where it doesn't hold are so
6657 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
6658 ;; the effort to look for them.)
6660 (unless (or at-decl-end
(looking-at "=[^=]"))
6661 ;; If this is a declaration it should end here or its initializer(*)
6662 ;; should start here, so check for allowed separation tokens. Note
6663 ;; that this rule doesn't work e.g. with a K&R arglist after a
6666 ;; *) Don't check for C++ style initializers using parens
6667 ;; since those already have been matched as suffixes.
6669 ;; If `at-decl-or-cast' is then we've found some other sign that
6670 ;; it's a declaration or cast, so then it's probably an
6671 ;; invalid/unfinished one.
6672 (throw 'at-decl-or-cast at-decl-or-cast
))
6674 ;; Below are tests that only should be applied when we're certain to
6675 ;; not have parsed halfway through an expression.
6678 (when (memq at-type
'(t known
))
6679 ;; The expression starts with a known type so treat it as a
6681 (throw 'at-decl-or-cast t
))
6684 (when (and (c-major-mode-is 'c
++-mode
)
6685 ;; In C++ we check if the identifier is a known type, since
6686 ;; (con|de)structors use the class name as identifier.
6687 ;; We've always shifted over the identifier as a type and
6688 ;; then backed up again in this case.
6690 (or (memq identifier-type
'(found known
))
6691 (and (eq (char-after identifier-start
) ?~
)
6692 ;; `at-type' probably won't be 'found for
6693 ;; destructors since the "~" is then part of the
6694 ;; type name being checked against the list of
6695 ;; known types, so do a check without that
6698 (goto-char (1+ identifier-start
))
6699 (c-forward-syntactic-ws)
6700 (c-with-syntax-table
6701 c-identifier-syntax-table
6702 (looking-at c-known-type-key
)))
6704 (goto-char (1+ identifier-start
))
6705 ;; We have already parsed the type earlier,
6706 ;; so it'd be possible to cache the end
6707 ;; position instead of redoing it here, but
6708 ;; then we'd need to keep track of another
6709 ;; position everywhere.
6710 (c-check-type (point)
6711 (progn (c-forward-type)
6713 (throw 'at-decl-or-cast t
))
6718 (when (and got-prefix-before-parens
6720 (or at-decl-end
(looking-at "=[^=]"))
6723 ;; Got something like "foo * bar;". Since we're not inside an
6724 ;; arglist it would be a meaningless expression because the
6725 ;; result isn't used. We therefore choose to recognize it as
6726 ;; a declaration. Do not allow a suffix since it could then
6727 ;; be a function call.
6728 (throw 'at-decl-or-cast t
))
6731 (when (and (or got-suffix-after-parens
6732 (looking-at "=[^=]"))
6734 (not (eq context
'arglist
)))
6735 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
6736 ;; be an odd expression or it could be a declaration. Treat
6737 ;; it as a declaration if "a" has been used as a type
6738 ;; somewhere else (if it's a known type we won't get here).
6739 (throw 'at-decl-or-cast t
)))
6744 (and (eq context
'decl
)
6745 (not c-recognize-paren-inits
)
6746 (or got-parens got-suffix
))))
6747 ;; Got a type followed by an abstract declarator. If `got-prefix'
6748 ;; is set it's something like "a *" without anything after it. If
6749 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
6750 ;; or similar, which we accept only if the context rules out
6752 (throw 'at-decl-or-cast t
)))
6754 ;; If we had a complete symbol table here (which rules out
6755 ;; `c-found-types') we should return t due to the disambiguation rule
6756 ;; (in at least C++) that anything that can be parsed as a declaration
6757 ;; is a declaration. Now we're being more defensive and prefer to
6758 ;; highlight things like "foo (bar);" as a declaration only if we're
6759 ;; inside an arglist that contains declarations.
6760 (eq context
'decl
))))
6762 ;; The point is now after the type decl expression.
6765 ;; Check for a cast.
6770 ;; Should be the first type/identifier in a cast paren.
6771 (> preceding-token-end
(point-min))
6772 (memq (char-before preceding-token-end
) c-cast-parens
)
6774 ;; The closing paren should follow.
6776 (c-forward-syntactic-ws)
6777 (looking-at "\\s\)"))
6779 ;; There should be a primary expression after it.
6782 (c-forward-syntactic-ws)
6783 (setq cast-end
(point))
6784 (and (looking-at c-primary-expr-regexp
)
6786 (setq pos
(match-end 0))
6788 ;; Check if the expression begins with a prefix keyword.
6790 (if (match-beginning 1)
6791 ;; Expression begins with an ambiguous operator. Treat
6792 ;; it as a cast if it's a type decl or if we've
6793 ;; recognized the type somewhere else.
6795 (memq at-type
'(t known found
)))
6796 ;; Unless it's a keyword, it's the beginning of a primary
6798 (not (looking-at c-keywords-regexp
)))))
6799 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
6800 ;; that it matched a whole one so that we don't e.g. confuse
6801 ;; the operator '-' with '->'. It's ok if it matches further,
6802 ;; though, since it e.g. can match the float '.5' while the
6803 ;; operator regexp only matches '.'.
6804 (or (not (looking-at c-nonsymbol-token-regexp
))
6805 (<= (match-end 0) pos
))))
6807 ;; There should either be a cast before it or something that isn't an
6808 ;; identifier or close paren.
6809 (> preceding-token-end
(point-min))
6811 (goto-char (1- preceding-token-end
))
6812 (or (eq (point) last-cast-end
)
6814 (c-backward-syntactic-ws)
6815 (if (< (skip-syntax-backward "w_") 0)
6816 ;; It's a symbol. Accept it only if it's one of the
6817 ;; keywords that can precede an expression (without
6818 ;; surrounding parens).
6819 (looking-at c-simple-stmt-key
)
6821 ;; Check that it isn't a close paren (block close is ok,
6823 (not (memq (char-before) '(?\
) ?\
])))
6824 ;; Check that it isn't a nonsymbol identifier.
6825 (not (c-on-identifier)))))))))
6828 (when (and c-record-type-identifiers at-type
(not (eq at-type t
)))
6829 (let ((c-promote-possible-types t
))
6830 (goto-char type-start
)
6833 (goto-char cast-end
)
6837 ;; We're at a declaration. Highlight the type and the following
6840 (when backup-if-not-cast
6841 (c-fdoc-shift-type-backward t
))
6843 (when (and (eq context
'decl
) (looking-at ","))
6844 ;; Make sure to propagate the `c-decl-arg-start' property to
6845 ;; the next argument if it's set in this one, to cope with
6846 ;; interactive refontification.
6847 (c-put-c-type-property (point) 'c-decl-arg-start
))
6849 (when (and c-record-type-identifiers at-type
(not (eq at-type t
)))
6850 (let ((c-promote-possible-types t
))
6852 (goto-char type-start
)
6855 (cons id-start at-type-decl
))
6858 ;; False alarm. Restore the recorded ranges.
6859 (setq c-record-type-identifiers save-rec-type-ids
6860 c-record-ref-identifiers save-rec-ref-ids
)
6863 (defun c-forward-label (&optional assume-markup preceding-token-end limit
)
6864 ;; Assuming that point is at the beginning of a token, check if it starts a
6865 ;; label and if so move over it and return non-nil (t in default situations,
6866 ;; specific symbols (see below) for interesting situations), otherwise don't
6867 ;; move and return nil. "Label" here means "most things with a colon".
6869 ;; More precisely, a "label" is regarded as one of:
6870 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
6871 ;; (ii) A case label - either the entire construct "case FOO:", or just the
6872 ;; bare "case", should the colon be missing. We return t;
6873 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
6875 ;; (iv) One of QT's "extended" C++ variants of
6876 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
6877 ;; Returns the symbol `qt-2kwds-colon'.
6878 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
6879 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
6880 ;; colon). Currently (2006-03), this applies only to Objective C's
6881 ;; keywords "@private", "@protected", and "@public". Returns t.
6883 ;; One of the things which will NOT be recognised as a label is a bit-field
6884 ;; element of a struct, something like "int foo:5".
6886 ;; The end of the label is taken to be just after the colon, or the end of
6887 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
6888 ;; after the end on return. The terminating char gets marked with
6889 ;; `c-decl-end' to improve recognition of the following declaration or
6892 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
6893 ;; label, if any, has already been marked up like that.
6895 ;; If PRECEDING-TOKEN-END is given, it should be the first position
6896 ;; after the preceding token, i.e. on the other side of the
6897 ;; syntactic ws from the point. Use a value less than or equal to
6898 ;; (point-min) if the point is at the first token in (the visible
6899 ;; part of) the buffer.
6901 ;; The optional LIMIT limits the forward scan for the colon.
6903 ;; This function records the ranges of the label symbols on
6904 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
6907 ;; This function might do hidden buffer changes.
6909 (let ((start (point))
6912 macro-start
; if we're in one.
6916 ;; "case" or "default" (Doesn't apply to AWK).
6917 ((looking-at c-label-kwds-regexp
)
6918 (let ((kwd-end (match-end 1)))
6919 ;; Record only the keyword itself for fontification, since in
6920 ;; case labels the following is a constant expression and not
6922 (when c-record-type-identifiers
6923 (c-record-ref-id (cons (match-beginning 1) kwd-end
)))
6925 ;; Find the label end.
6928 (if (and (c-syntactic-re-search-forward
6929 ;; Stop on chars that aren't allowed in expressions,
6930 ;; and on operator chars that would be meaningless
6931 ;; there. FIXME: This doesn't cope with ?: operators.
6932 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
6934 (match-beginning 2))
6936 (progn ; there's a proper :
6937 (goto-char (match-beginning 2)) ; just after the :
6938 (c-put-c-type-property (1- (point)) 'c-decl-end
)
6941 ;; It's an unfinished label. We consider the keyword enough
6942 ;; to recognize it as a label, so that it gets fontified.
6943 ;; Leave the point at the end of it, but don't put any
6944 ;; `c-decl-end' marker.
6948 ;; @private, @protected, @public, in Objective C, or similar.
6949 ((and c-opt-extra-label-key
6950 (looking-at c-opt-extra-label-key
))
6951 ;; For a `c-opt-extra-label-key' match, we record the whole
6952 ;; thing for fontification. That's to get the leading '@' in
6953 ;; Objective-C protection labels fontified.
6954 (goto-char (match-end 1))
6955 (when c-record-type-identifiers
6956 (c-record-ref-id (cons (match-beginning 1) (point))))
6957 (c-put-c-type-property (1- (point)) 'c-decl-end
)
6958 (setq label-type t
))
6960 ;; All other cases of labels.
6961 ((and c-recognize-colon-labels
; nil for AWK and IDL, otherwise t.
6963 ;; A colon label must have something before the colon.
6964 (not (eq (char-after) ?
:))
6966 ;; Check that we're not after a token that can't precede a label.
6968 ;; Trivially succeeds when there's no preceding token.
6969 (if preceding-token-end
6970 (<= preceding-token-end
(point-min))
6972 (c-backward-syntactic-ws)
6973 (setq preceding-token-end
(point))
6976 ;; Check if we're after a label, if we're after a closing
6977 ;; paren that belong to statement, and with
6978 ;; `c-label-prefix-re'. It's done in different order
6979 ;; depending on `assume-markup' since the checks have
6980 ;; different expensiveness.
6983 (eq (c-get-char-property (1- preceding-token-end
) 'c-type
)
6987 (goto-char (1- preceding-token-end
))
6988 (c-beginning-of-current-token)
6989 (or (looking-at c-label-prefix-re
)
6990 (looking-at c-block-stmt-1-key
)))
6992 (and (eq (char-before preceding-token-end
) ?\
))
6993 (c-after-conditional)))
6997 (goto-char (1- preceding-token-end
))
6998 (c-beginning-of-current-token)
6999 (or (looking-at c-label-prefix-re
)
7000 (looking-at c-block-stmt-1-key
)))
7003 ((eq (char-before preceding-token-end
) ?\
))
7004 (c-after-conditional))
7006 ((eq (char-before preceding-token-end
) ?
:)
7007 ;; Might be after another label, so check it recursively.
7010 (goto-char (1- preceding-token-end
))
7011 ;; Essentially the same as the
7012 ;; `c-syntactic-re-search-forward' regexp below.
7014 (save-excursion (and (c-beginning-of-macro)
7016 (if macro-start
(narrow-to-region macro-start
(point-max)))
7017 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t
)
7018 ;; Note: the following should work instead of the
7019 ;; narrow-to-region above. Investigate why not,
7020 ;; sometime. ACM, 2006-03-31.
7021 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
7024 ;; If the caller turned on recording for us,
7025 ;; it shouldn't apply when we check the
7027 c-record-type-identifiers
)
7028 ;; A label can't start at a cpp directive. Check for
7029 ;; this, since c-forward-syntactic-ws would foul up on it.
7030 (unless (and c-opt-cpp-prefix
(looking-at c-opt-cpp-prefix
))
7031 (c-forward-syntactic-ws)
7032 (c-forward-label nil pte start
))))))))))
7034 ;; Point is still at the beginning of the possible label construct.
7036 ;; Check that the next nonsymbol token is ":", or that we're in one
7037 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
7038 ;; arguments. FIXME: Should build this regexp from the language
7041 ;; public: protected: private:
7043 (c-major-mode-is 'c
++-mode
)
7044 (search-forward-regexp
7045 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t
)
7046 (progn (backward-char)
7047 (c-forward-syntactic-ws limit
)
7048 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
7050 (setq label-type t
))
7051 ;; QT double keyword like "protected slots:" or goto target.
7052 ((progn (goto-char start
) nil
))
7053 ((when (c-syntactic-re-search-forward
7054 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t
) ; not at EOB
7056 (setq label-end
(point))
7058 (and (c-major-mode-is 'c
++-mode
)
7060 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
7061 (buffer-substring start
(point)))))
7062 (c-forward-syntactic-ws limit
)
7064 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
7067 (if (or (string= "signals" ; Special QT macro
7068 (setq kwd
(buffer-substring-no-properties start label-end
)))
7069 (string= "Q_SIGNALS" kwd
))
7073 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t
)
7074 (progn (c-forward-syntactic-ws limit
)
7075 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
7077 (setq label-type
'qt-2kwds-colon
)))))))
7080 (narrow-to-region start
(point))
7082 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
7086 (when (looking-at c-nonlabel-token-key
)
7088 (setq label-type nil
)
7089 (throw 'check-label nil
))
7090 (and (c-safe (c-forward-sexp)
7091 (c-forward-syntactic-ws)
7095 ;; Record the identifiers in the label for fontification, unless
7096 ;; it begins with `c-label-kwds' in which case the following
7097 ;; identifiers are part of a (constant) expression that
7098 ;; shouldn't be fontified.
7099 (when (and c-record-type-identifiers
7100 (progn (goto-char start
)
7101 (not (looking-at c-label-kwds-regexp
))))
7102 (while (c-syntactic-re-search-forward c-symbol-key nil t
)
7103 (c-record-ref-id (cons (match-beginning 0)
7106 (c-put-c-type-property (1- (point-max)) 'c-decl-end
)
7107 (goto-char (point-max)))))
7114 (defun c-forward-objc-directive ()
7115 ;; Assuming the point is at the beginning of a token, try to move
7116 ;; forward to the end of the Objective-C directive that starts
7117 ;; there. Return t if a directive was fully recognized, otherwise
7118 ;; the point is moved as far as one could be successfully parsed and
7121 ;; This function records identifier ranges on
7122 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7123 ;; `c-record-type-identifiers' is non-nil.
7125 ;; This function might do hidden buffer changes.
7127 (let ((start (point))
7129 (c-promote-possible-types t
)
7130 ;; Turn off recognition of angle bracket arglists while parsing
7131 ;; types here since the protocol reference list might then be
7132 ;; considered part of the preceding name or superclass-name.
7133 c-recognize-
<>-arglists
)
7138 (c-make-keywords-re t
7139 (append (c-lang-const c-protection-kwds objc
)
7142 (goto-char (match-end 1))
7148 (c-make-keywords-re t
7149 '("@interface" "@implementation" "@protocol")
7152 ;; Handle the name of the class itself.
7154 ; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
7156 (goto-char (match-end 0))
7161 ;; Look for ": superclass-name" or "( category-name )".
7162 (when (looking-at "[:\(]")
7163 (setq start-char
(char-after))
7165 (c-forward-syntactic-ws)
7166 (unless (c-forward-type) (throw 'break nil
))
7167 (when (eq start-char ?\
()
7168 (unless (eq (char-after) ?\
)) (throw 'break nil
))
7170 (c-forward-syntactic-ws)))
7172 ;; Look for a protocol reference list.
7173 (if (eq (char-after) ?
<)
7174 (let ((c-recognize-<>-arglists t
)
7175 (c-parse-and-markup-<>-arglists t
)
7176 c-restricted-
<>-arglists
)
7177 (c-forward-<>-arglist t
))
7181 (c-backward-syntactic-ws)
7182 (c-clear-c-type-property start
(1- (point)) 'c-decl-end
)
7183 (c-put-c-type-property (1- (point)) 'c-decl-end
)
7186 (c-clear-c-type-property start
(point) 'c-decl-end
)
7189 (defun c-beginning-of-inheritance-list (&optional lim
)
7190 ;; Go to the first non-whitespace after the colon that starts a
7191 ;; multiple inheritance introduction. Optional LIM is the farthest
7192 ;; back we should search.
7194 ;; This function might do hidden buffer changes.
7195 (c-with-syntax-table c
++-template-syntax-table
7196 (c-backward-token-2 0 t lim
)
7197 (while (and (or (looking-at c-symbol-start
)
7198 (looking-at "[<,]\\|::"))
7199 (zerop (c-backward-token-2 1 t lim
))))))
7201 (defun c-in-method-def-p ()
7202 ;; Return nil if we aren't in a method definition, otherwise the
7203 ;; position of the initial [+-].
7205 ;; This function might do hidden buffer changes.
7208 (and c-opt-method-key
7209 (looking-at c-opt-method-key
)
7213 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
7214 (defun c-in-gcc-asm-p ()
7215 ;; Return non-nil if point is within a gcc \"asm\" block.
7217 ;; This should be called with point inside an argument list.
7219 ;; Only one level of enclosing parentheses is considered, so for
7220 ;; instance `nil' is returned when in a function call within an asm
7223 ;; This function might do hidden buffer changes.
7225 (and c-opt-asm-stmt-key
7228 (backward-up-list 1)
7229 (c-beginning-of-statement-1 (point-min) nil t
)
7230 (looking-at c-opt-asm-stmt-key
))))
7232 (defun c-at-toplevel-p ()
7233 "Return a determination as to whether point is \"at the top level\".
7234 Informally, \"at the top level\" is anywhere where you can write
7237 More precisely, being at the top-level means that point is either
7238 outside any enclosing block (such as a function definition), or
7239 directly inside a class, namespace or other block that contains
7240 another declaration level.
7242 If point is not at the top-level (e.g. it is inside a method
7243 definition), then nil is returned. Otherwise, if point is at a
7244 top-level not enclosed within a class definition, t is returned.
7245 Otherwise, a 2-vector is returned where the zeroth element is the
7246 buffer position of the start of the class declaration, and the first
7247 element is the buffer position of the enclosing class's opening
7250 Note that this function might do hidden buffer changes. See the
7251 comment at the start of cc-engine.el for more info."
7252 (let ((paren-state (c-parse-state)))
7253 (or (not (c-most-enclosing-brace paren-state
))
7254 (c-search-uplist-for-classkey paren-state
))))
7256 (defun c-just-after-func-arglist-p (&optional lim
)
7257 ;; Return non-nil if the point is in the region after the argument
7258 ;; list of a function and its opening brace (or semicolon in case it
7259 ;; got no body). If there are K&R style argument declarations in
7260 ;; that region, the point has to be inside the first one for this
7261 ;; function to recognize it.
7263 ;; If successful, the point is moved to the first token after the
7264 ;; function header (see `c-forward-decl-or-cast-1' for details) and
7265 ;; the position of the opening paren of the function arglist is
7268 ;; The point is clobbered if not successful.
7270 ;; LIM is used as bound for backward buffer searches.
7272 ;; This function might do hidden buffer changes.
7274 (let ((beg (point)) end id-start
)
7276 (eq (c-beginning-of-statement-1 lim
) 'same
)
7278 (not (or (c-major-mode-is 'objc-mode
)
7279 (c-forward-objc-directive)))
7282 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws
) nil nil
)))
7285 ;; There should not be a '=' or ',' between beg and the
7286 ;; start of the declaration since that means we were in the
7287 ;; "expression part" of the declaration.
7289 (not (looking-at "[=,]")))
7292 ;; Check that there's an arglist paren in the
7294 (goto-char id-start
)
7295 (cond ((eq (char-after) ?\
()
7296 ;; The declarator is a paren expression, so skip past it
7297 ;; so that we don't get stuck on that instead of the
7298 ;; function arglist.
7300 ((and c-opt-op-identifier-prefix
7301 (looking-at c-opt-op-identifier-prefix
))
7302 ;; Don't trip up on "operator ()".
7303 (c-forward-token-2 2 t
)))
7304 (and (< (point) beg
)
7305 (c-syntactic-re-search-forward "(" beg t t
)
7308 (defun c-in-knr-argdecl (&optional lim
)
7309 ;; Return the position of the first argument declaration if point is
7310 ;; inside a K&R style argument declaration list, nil otherwise.
7311 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
7312 ;; position that bounds the backward search for the argument list.
7314 ;; Point must be within a possible K&R region, e.g. just before a top-level
7315 ;; "{". It must be outside of parens and brackets. The test can return
7316 ;; false positives otherwise.
7318 ;; This function might do hidden buffer changes.
7322 ;; If we're in a macro, our search range is restricted to it. Narrow to
7323 ;; the searchable range.
7324 (let* ((macro-start (c-query-macro-start))
7325 (lim (max (or lim
(point-min)) (or macro-start
(point-min))))
7326 before-lparen after-rparen
7327 (pp-count-out 20)) ; Max number of paren/brace constructs before we give up
7328 (narrow-to-region lim
(c-point 'eol
))
7330 ;; Search backwards for the defun's argument list. We give up if we
7331 ;; encounter a "}" (end of a previous defun) or BOB.
7333 ;; The criterion for a paren structure being the arg list is:
7334 ;; o - there is non-WS stuff after it but before any "{"; AND
7335 ;; o - the token after it isn't a ";" AND
7336 ;; o - it is preceded by either an identifier (the function name) or
7337 ;; a macro expansion like "DEFUN (...)"; AND
7338 ;; o - its content is a non-empty comma-separated list of identifiers
7339 ;; (an empty arg list won't have a knr region).
7341 ;; The following snippet illustrates these rules:
7342 ;; int foo (bar, baz, yuk)
7344 ;; int (*baz) (my_type) ;
7345 ;; int (*) (void) (*yuk) (void) ;
7349 (while (> pp-count-out
0) ; go back one paren/bracket pair each time.
7350 (setq pp-count-out
(1- pp-count-out
))
7351 (c-syntactic-skip-backward "^)]}")
7352 (cond ((eq (char-before) ?\
))
7353 (setq after-rparen
(point)))
7354 ((eq (char-before) ?\
])
7355 (setq after-rparen nil
))
7356 (t ; either } (hit previous defun) or no more parens/brackets
7360 ;; We're inside a paren. Could it be our argument list....?
7364 (goto-char after-rparen
)
7365 (unless (c-go-list-backward) (throw 'knr nil
)) ;
7366 ;; FIXME!!! What about macros between the parens? 2007/01/20
7367 (setq before-lparen
(point)))
7369 ;; It can't be the arg list if next token is ; or {
7370 (progn (goto-char after-rparen
)
7371 (c-forward-syntactic-ws)
7372 (not (memq (char-after) '(?\
; ?\{))))
7374 ;; Is the thing preceding the list an identifier (the
7375 ;; function name), or a macro expansion?
7377 (goto-char before-lparen
)
7378 (eq (c-backward-token-2) 0)
7379 (or (c-on-identifier)
7380 (and (eq (char-after) ?\
))
7381 (c-go-up-list-backward)
7382 (eq (c-backward-token-2) 0)
7383 (c-on-identifier))))
7385 ;; Have we got a non-empty list of comma-separated
7388 (goto-char before-lparen
)
7389 (c-forward-token-2) ; to first token inside parens
7394 (while (eq (char-after) ?\
,)
7396 (unless (c-on-identifier) (throw 'id-list nil
))
7397 (c-forward-token-2))
7398 (eq (char-after) ?\
))))))
7400 ;; ...Yes. We've identified the function's argument list.
7402 (progn (goto-char after-rparen
)
7403 (c-forward-syntactic-ws)
7406 ;; ...No. The current parens aren't the function's arg list.
7407 (goto-char before-lparen
))
7409 (or (c-go-list-backward) ; backwards over [ .... ]
7410 (throw 'knr nil
)))))))))
7412 (defun c-skip-conditional ()
7413 ;; skip forward over conditional at point, including any predicate
7414 ;; statements in parentheses. No error checking is performed.
7416 ;; This function might do hidden buffer changes.
7417 (c-forward-sexp (cond
7419 ((looking-at (concat "\\<else"
7420 "\\([ \t\n]\\|\\\\\n\\)+"
7421 "if\\>\\([^_]\\|$\\)"))
7423 ;; do, else, try, finally
7424 ((looking-at (concat "\\<\\("
7425 "do\\|else\\|try\\|finally"
7426 "\\)\\>\\([^_]\\|$\\)"))
7428 ;; for, if, while, switch, catch, synchronized, foreach
7431 (defun c-after-conditional (&optional lim
)
7432 ;; If looking at the token after a conditional then return the
7433 ;; position of its start, otherwise return nil.
7435 ;; This function might do hidden buffer changes.
7437 (and (zerop (c-backward-token-2 1 t lim
))
7438 (or (looking-at c-block-stmt-1-key
)
7439 (and (eq (char-after) ?\
()
7440 (zerop (c-backward-token-2 1 t lim
))
7441 (looking-at c-block-stmt-2-key
)))
7444 (defun c-after-special-operator-id (&optional lim
)
7445 ;; If the point is after an operator identifier that isn't handled
7446 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
7447 ;; position of the start of that identifier is returned. nil is
7448 ;; returned otherwise. The point may be anywhere in the syntactic
7449 ;; whitespace after the last token of the operator identifier.
7451 ;; This function might do hidden buffer changes.
7453 (and c-overloadable-operators-regexp
7454 (zerop (c-backward-token-2 1 nil lim
))
7455 (looking-at c-overloadable-operators-regexp
)
7456 (or (not c-opt-op-identifier-prefix
)
7458 (zerop (c-backward-token-2 1 nil lim
))
7459 (looking-at c-opt-op-identifier-prefix
)))
7462 (defsubst c-backward-to-block-anchor
(&optional lim
)
7463 ;; Assuming point is at a brace that opens a statement block of some
7464 ;; kind, move to the proper anchor point for that block. It might
7465 ;; need to be adjusted further by c-add-stmt-syntax, but the
7466 ;; position at return is suitable as start position for that
7469 ;; This function might do hidden buffer changes.
7470 (unless (= (point) (c-point 'boi
))
7471 (let ((start (c-after-conditional lim
)))
7473 (goto-char start
)))))
7475 (defsubst c-backward-to-decl-anchor
(&optional lim
)
7476 ;; Assuming point is at a brace that opens the block of a top level
7477 ;; declaration of some kind, move to the proper anchor point for
7480 ;; This function might do hidden buffer changes.
7481 (unless (= (point) (c-point 'boi
))
7482 (c-beginning-of-statement-1 lim
)))
7484 (defun c-search-decl-header-end ()
7485 ;; Search forward for the end of the "header" of the current
7486 ;; declaration. That's the position where the definition body
7487 ;; starts, or the first variable initializer, or the ending
7488 ;; semicolon. I.e. search forward for the closest following
7489 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
7490 ;; _after_ the first found token, or at point-max if none is found.
7492 ;; This function might do hidden buffer changes.
7494 (let ((base (point)))
7495 (if (c-major-mode-is 'c
++-mode
)
7497 ;; In C++ we need to take special care to handle operator
7498 ;; tokens and those pesky template brackets.
7500 (c-syntactic-re-search-forward "[;{<=]" nil
'move t t
)
7502 (c-end-of-current-token base
)
7503 ;; Handle operator identifiers, i.e. ignore any
7504 ;; operator token preceded by "operator".
7506 (and (c-safe (c-backward-sexp) t
)
7507 (looking-at c-opt-op-identifier-prefix
)))
7508 (and (eq (char-before) ?
<)
7509 (c-with-syntax-table c
++-template-syntax-table
7510 (if (c-safe (goto-char (c-up-list-forward (point))))
7512 (goto-char (point-max))
7514 (setq base
(point)))
7517 (c-syntactic-re-search-forward "[;{=]" nil
'move t t
)
7518 (c-end-of-current-token base
))
7519 (setq base
(point))))))
7521 (defun c-beginning-of-decl-1 (&optional lim
)
7522 ;; Go to the beginning of the current declaration, or the beginning
7523 ;; of the previous one if already at the start of it. Point won't
7524 ;; be moved out of any surrounding paren. Return a cons cell of the
7525 ;; form (MOVE . KNR-POS). MOVE is like the return value from
7526 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
7527 ;; style argument declarations (and they are to be recognized) then
7528 ;; KNR-POS is set to the start of the first such argument
7529 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
7530 ;; position that bounds the backward search.
7532 ;; NB: Cases where the declaration continues after the block, as in
7533 ;; "struct foo { ... } bar;", are currently recognized as two
7534 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
7536 ;; This function might do hidden buffer changes.
7538 (let* ((start (point))
7539 (last-stmt-start (point))
7540 (move (c-beginning-of-statement-1 lim nil t
)))
7542 ;; `c-beginning-of-statement-1' stops at a block start, but we
7543 ;; want to continue if the block doesn't begin a top level
7544 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
7545 ;; or an open paren.
7546 (let ((beg (point)) tentative-move
)
7547 ;; Go back one "statement" each time round the loop until we're just
7548 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
7549 ;; an ObjC method. This will move over a multiple declaration whose
7550 ;; components are comma separated.
7552 ;; Must check with c-opt-method-key in ObjC mode.
7553 (not (and c-opt-method-key
7554 (looking-at c-opt-method-key
)))
7555 (/= last-stmt-start
(point))
7557 (c-backward-syntactic-ws lim
)
7558 (not (memq (char-before) '(?\
; ?} ?: nil))))
7561 (not (looking-at "\\s(")))
7562 ;; Check that we don't move from the first thing in a
7563 ;; macro to its header.
7564 (not (eq (setq tentative-move
7565 (c-beginning-of-statement-1 lim nil t
))
7567 (setq last-stmt-start beg
7569 move tentative-move
))
7572 (when c-recognize-knr-p
7573 (let ((fallback-pos (point)) knr-argdecl-start
)
7574 ;; Handle K&R argdecls. Back up after the "statement" jumped
7575 ;; over by `c-beginning-of-statement-1', unless it was the
7576 ;; function body, in which case we're sitting on the opening
7577 ;; brace now. Then test if we're in a K&R argdecl region and
7578 ;; that we started at the other side of the first argdecl in
7580 (unless (eq (char-after) ?
{)
7581 (goto-char last-stmt-start
))
7582 (if (and (setq knr-argdecl-start
(c-in-knr-argdecl lim
))
7583 (< knr-argdecl-start start
)
7585 (goto-char knr-argdecl-start
)
7586 (not (eq (c-beginning-of-statement-1 lim nil t
) 'macro
))))
7588 (cons (if (eq (char-after fallback-pos
) ?
{)
7592 (goto-char fallback-pos
))))
7594 ;; `c-beginning-of-statement-1' counts each brace block as a separate
7595 ;; statement, so the result will be 'previous if we've moved over any.
7596 ;; So change our result back to 'same if necessary.
7598 ;; If they were brace list initializers we might not have moved over a
7599 ;; declaration boundary though, so change it to 'same if we've moved
7600 ;; past a '=' before '{', but not ';'. (This ought to be integrated
7601 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
7602 ;; potentially can search over a large amount of text.). Take special
7603 ;; pains not to get mislead by C++'s "operator=", and the like.
7604 (if (and (eq move
'previous
)
7605 (c-with-syntax-table (if (c-major-mode-is 'c
++-mode
)
7606 c
++-template-syntax-table
7611 (while ; keep going back to "[;={"s until we either find
7612 ; no more, or get to one which isn't an "operator ="
7613 (and (c-syntactic-re-search-forward "[;={]" start t t t
)
7614 (eq (char-before) ?
=)
7615 c-overloadable-operators-regexp
7616 c-opt-op-identifier-prefix
7618 (eq (c-backward-token-2) 0)
7619 (looking-at c-overloadable-operators-regexp
)
7620 (eq (c-backward-token-2) 0)
7621 (looking-at c-opt-op-identifier-prefix
))))
7622 (eq (char-before) ?
=))
7623 (c-syntactic-re-search-forward "[;{]" start t t
)
7624 (eq (char-before) ?
{)
7625 (c-safe (goto-char (c-up-list-forward (point))) t
)
7626 (not (c-syntactic-re-search-forward ";" start t t
))))))
7630 (defun c-end-of-decl-1 ()
7631 ;; Assuming point is at the start of a declaration (as detected by
7632 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
7633 ;; `c-beginning-of-decl-1', this function handles the case when a
7634 ;; block is followed by identifiers in e.g. struct declarations in C
7635 ;; or C++. If a proper end was found then t is returned, otherwise
7636 ;; point is moved as far as possible within the current sexp and nil
7637 ;; is returned. This function doesn't handle macros; use
7638 ;; `c-end-of-macro' instead in those cases.
7640 ;; This function might do hidden buffer changes.
7641 (let ((start (point))
7642 (decl-syntax-table (if (c-major-mode-is 'c
++-mode
)
7643 c
++-template-syntax-table
7646 (c-search-decl-header-end)
7648 (when (and c-recognize-knr-p
7649 (eq (char-before) ?\
;)
7650 (c-in-knr-argdecl start
))
7651 ;; Stopped at the ';' in a K&R argdecl section which is
7652 ;; detected using the same criteria as in
7653 ;; `c-beginning-of-decl-1'. Move to the following block
7655 (c-syntactic-re-search-forward "{" nil
'move t
))
7657 (when (eq (char-before) ?
{)
7658 ;; Encountered a block in the declaration. Jump over it.
7660 (goto-char (c-up-list-forward (point)))
7661 (error (goto-char (point-max))
7662 (throw 'return nil
)))
7663 (if (or (not c-opt-block-decls-with-vars-key
)
7665 (c-with-syntax-table decl-syntax-table
7666 (let ((lim (point)))
7669 ;; Check for `c-opt-block-decls-with-vars-key'
7670 ;; before the first paren.
7671 (c-syntactic-re-search-forward
7672 (concat "[;=\(\[{]\\|\\("
7673 c-opt-block-decls-with-vars-key
7677 (not (eq (char-before) ?_
))
7678 ;; Check that the first following paren is
7680 (c-syntactic-re-search-forward "[;=\(\[{]"
7682 (eq (char-before) ?
{)))))))
7683 ;; The declaration doesn't have any of the
7684 ;; `c-opt-block-decls-with-vars' keywords in the
7685 ;; beginning, so it ends here at the end of the block.
7688 (c-with-syntax-table decl-syntax-table
7690 (if (eq (char-before) ?\
;)
7692 (c-syntactic-re-search-forward ";" nil
'move t
))))
7695 (defun c-looking-at-decl-block (containing-sexp goto-start
&optional limit
)
7696 ;; Assuming the point is at an open brace, check if it starts a
7697 ;; block that contains another declaration level, i.e. that isn't a
7698 ;; statement block or a brace list, and if so return non-nil.
7700 ;; If the check is successful, the return value is the start of the
7701 ;; keyword that tells what kind of construct it is, i.e. typically
7702 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
7703 ;; the point will be at the start of the construct, before any
7704 ;; leading specifiers, otherwise it's at the returned position.
7706 ;; The point is clobbered if the check is unsuccessful.
7708 ;; CONTAINING-SEXP is the position of the open of the surrounding
7709 ;; paren, or nil if none.
7711 ;; The optional LIMIT limits the backward search for the start of
7712 ;; the construct. It's assumed to be at a syntactically relevant
7715 ;; If any template arglists are found in the searched region before
7716 ;; the open brace, they get marked with paren syntax.
7718 ;; This function might do hidden buffer changes.
7720 (let ((open-brace (point)) kwd-start first-specifier-pos
)
7721 (c-syntactic-skip-backward c-block-prefix-charset limit t
)
7723 (when (and c-recognize-
<>-arglists
7724 (eq (char-before) ?
>))
7725 ;; Could be at the end of a template arglist.
7726 (let ((c-parse-and-markup-<>-arglists t
)
7727 (c-disallow-comma-in-<>-arglists
7728 (and containing-sexp
7729 (not (eq (char-after containing-sexp
) ?
{)))))
7731 (c-backward-<>-arglist nil limit
)
7733 (c-syntactic-skip-backward c-block-prefix-charset limit t
)
7734 (eq (char-before) ?
>))))))
7736 ;; Note: Can't get bogus hits inside template arglists below since they
7737 ;; have gotten paren syntax above.
7739 ;; If `goto-start' is set we begin by searching for the
7740 ;; first possible position of a leading specifier list.
7741 ;; The `c-decl-block-key' search continues from there since
7742 ;; we know it can't match earlier.
7744 (when (c-syntactic-re-search-forward c-symbol-start
7746 (goto-char (setq first-specifier-pos
(match-beginning 0)))
7751 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t
)
7752 (goto-char (setq kwd-start
(match-beginning 0)))
7755 ;; Found a keyword that can't be a type?
7758 ;; Can be a type too, in which case it's the return type of a
7759 ;; function (under the assumption that no declaration level
7760 ;; block construct starts with a type).
7761 (not (c-forward-type))
7763 ;; Jumped over a type, but it could be a declaration keyword
7764 ;; followed by the declared identifier that we've jumped over
7765 ;; instead (e.g. in "class Foo {"). If it indeed is a type
7766 ;; then we should be at the declarator now, so check for a
7767 ;; valid declarator start.
7769 ;; Note: This doesn't cope with the case when a declared
7770 ;; identifier is followed by e.g. '(' in a language where '('
7771 ;; also might be part of a declarator expression. Currently
7772 ;; there's no such language.
7773 (not (or (looking-at c-symbol-start
)
7774 (looking-at c-type-decl-prefix-key
)))))
7776 ;; In Pike a list of modifiers may be followed by a brace
7777 ;; to make them apply to many identifiers. Note that the
7778 ;; match data will be empty on return in this case.
7779 ((and (c-major-mode-is 'pike-mode
)
7781 (goto-char open-brace
)
7782 (= (c-backward-token-2) 0))
7783 (looking-at c-specifier-key
)
7784 ;; Use this variant to avoid yet another special regexp.
7785 (c-keyword-member (c-keyword-sym (match-string 1))
7787 (setq kwd-start
(point))
7793 ;; Back up over any preceding specifiers and their clauses
7794 ;; by going forward from `first-specifier-pos', which is the
7795 ;; earliest possible position where the specifier list can
7798 (goto-char first-specifier-pos
)
7800 (while (< (point) kwd-start
)
7801 (if (looking-at c-symbol-key
)
7802 ;; Accept any plain symbol token on the ground that
7803 ;; it's a specifier masked through a macro (just
7804 ;; like `c-forward-decl-or-cast-1' skip forward over
7807 ;; Could be more restrictive wrt invalid keywords,
7808 ;; but that'd only occur in invalid code so there's
7809 ;; no use spending effort on it.
7810 (let ((end (match-end 0)))
7811 (unless (c-forward-keyword-clause 0)
7813 (c-forward-syntactic-ws)))
7815 ;; Can't parse a declaration preamble and is still
7816 ;; before `kwd-start'. That means `first-specifier-pos'
7817 ;; was in some earlier construct. Search again.
7818 (if (c-syntactic-re-search-forward c-symbol-start
7820 (goto-char (setq first-specifier-pos
(match-beginning 0)))
7821 ;; Got no preamble before the block declaration keyword.
7822 (setq first-specifier-pos kwd-start
))))
7824 (goto-char first-specifier-pos
))
7825 (goto-char kwd-start
))
7829 (defun c-search-uplist-for-classkey (paren-state)
7830 ;; Check if the closest containing paren sexp is a declaration
7831 ;; block, returning a 2 element vector in that case. Aref 0
7832 ;; contains the bufpos at boi of the class key line, and aref 1
7833 ;; contains the bufpos of the open brace. This function is an
7834 ;; obsolete wrapper for `c-looking-at-decl-block'.
7836 ;; This function might do hidden buffer changes.
7837 (let ((open-paren-pos (c-most-enclosing-brace paren-state
)))
7838 (when open-paren-pos
7840 (goto-char open-paren-pos
)
7841 (when (and (eq (char-after) ?
{)
7842 (c-looking-at-decl-block
7843 (c-safe-position open-paren-pos paren-state
)
7845 (back-to-indentation)
7846 (vector (point) open-paren-pos
))))))
7848 (defun c-inside-bracelist-p (containing-sexp paren-state
)
7849 ;; return the buffer position of the beginning of the brace list
7850 ;; statement if we're inside a brace list, otherwise return nil.
7851 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
7852 ;; paren. PAREN-STATE is the remainder of the state of enclosing
7855 ;; N.B.: This algorithm can potentially get confused by cpp macros
7856 ;; placed in inconvenient locations. It's a trade-off we make for
7859 ;; This function might do hidden buffer changes.
7861 ;; This will pick up brace list declarations.
7864 (goto-char containing-sexp
)
7867 (if (and (or (looking-at c-brace-list-key
)
7868 (progn (c-forward-sexp -
1)
7869 (looking-at c-brace-list-key
)))
7870 (setq bracepos
(c-down-list-forward (point)))
7871 (not (c-crosses-statement-barrier-p (point)
7874 ;; this will pick up array/aggregate init lists, even if they are nested.
7877 ;; Pike can have class definitions anywhere, so we must
7878 ;; check for the class key here.
7879 (and (c-major-mode-is 'pike-mode
)
7881 bufpos braceassignp lim next-containing
)
7882 (while (and (not bufpos
)
7885 (if (consp (car paren-state
))
7886 (setq lim
(cdr (car paren-state
))
7887 paren-state
(cdr paren-state
))
7888 (setq lim
(car paren-state
)))
7890 (setq next-containing
(car paren-state
)
7891 paren-state
(cdr paren-state
))))
7892 (goto-char containing-sexp
)
7893 (if (c-looking-at-inexpr-block next-containing next-containing
)
7894 ;; We're in an in-expression block of some kind. Do not
7895 ;; check nesting. We deliberately set the limit to the
7896 ;; containing sexp, so that c-looking-at-inexpr-block
7897 ;; doesn't check for an identifier before it.
7898 (setq containing-sexp nil
)
7899 ;; see if the open brace is preceded by = or [...] in
7900 ;; this statement, but watch out for operator=
7901 (setq braceassignp
'dontknow
)
7902 (c-backward-token-2 1 t lim
)
7903 ;; Checks to do only on the first sexp before the brace.
7904 (when (and c-opt-inexpr-brace-list-key
7905 (eq (char-after) ?\
[))
7906 ;; In Java, an initialization brace list may follow
7907 ;; directly after "new Foo[]", so check for a "new"
7909 (while (eq braceassignp
'dontknow
)
7911 (cond ((/= (c-backward-token-2 1 t lim
) 0) nil
)
7912 ((looking-at c-opt-inexpr-brace-list-key
) t
)
7913 ((looking-at "\\sw\\|\\s_\\|[.[]")
7914 ;; Carry on looking if this is an
7915 ;; identifier (may contain "." in Java)
7916 ;; or another "[]" sexp.
7919 ;; Checks to do on all sexps before the brace, up to the
7920 ;; beginning of the statement.
7921 (while (eq braceassignp
'dontknow
)
7922 (cond ((eq (char-after) ?\
;)
7923 (setq braceassignp nil
))
7925 (looking-at class-key
))
7926 (setq braceassignp nil
))
7927 ((eq (char-after) ?
=)
7928 ;; We've seen a =, but must check earlier tokens so
7929 ;; that it isn't something that should be ignored.
7930 (setq braceassignp
'maybe
)
7931 (while (and (eq braceassignp
'maybe
)
7932 (zerop (c-backward-token-2 1 t lim
)))
7935 ;; Check for operator =
7936 ((and c-opt-op-identifier-prefix
7937 (looking-at c-opt-op-identifier-prefix
))
7939 ;; Check for `<opchar>= in Pike.
7940 ((and (c-major-mode-is 'pike-mode
)
7941 (or (eq (char-after) ?
`)
7942 ;; Special case for Pikes
7943 ;; `[]=, since '[' is not in
7944 ;; the punctuation class.
7945 (and (eq (char-after) ?\
[)
7946 (eq (char-before) ?
`))))
7948 ((looking-at "\\s.") 'maybe
)
7949 ;; make sure we're not in a C++ template
7950 ;; argument assignment
7952 (c-major-mode-is 'c
++-mode
)
7954 (let ((here (point))
7956 (skip-chars-backward "^<>")
7958 (and (eq (char-before) ?
<)
7959 (not (c-crosses-statement-barrier-p
7961 (not (c-in-literal))
7965 (if (and (eq braceassignp
'dontknow
)
7966 (/= (c-backward-token-2 1 t lim
) 0))
7967 (setq braceassignp nil
)))
7968 (if (not braceassignp
)
7969 (if (eq (char-after) ?\
;)
7970 ;; Brace lists can't contain a semicolon, so we're done.
7971 (setq containing-sexp nil
)
7973 (setq containing-sexp next-containing
7975 next-containing nil
))
7976 ;; we've hit the beginning of the aggregate list
7977 (c-beginning-of-statement-1
7978 (c-most-enclosing-brace paren-state
))
7979 (setq bufpos
(point))))
7984 (defun c-looking-at-special-brace-list (&optional lim
)
7985 ;; If we're looking at the start of a pike-style list, ie `({Â })',
7986 ;; `([Â ])', `(<Â >)' etc, a cons of a cons of its starting and ending
7987 ;; positions and its entry in c-special-brace-lists is returned, nil
7988 ;; otherwise. The ending position is nil if the list is still open.
7989 ;; LIM is the limit for forward search. The point may either be at
7990 ;; the `(' or at the following paren character. Tries to check the
7991 ;; matching closer, but assumes it's correct if no balanced paren is
7992 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
7993 ;; a special brace list).
7995 ;; This function might do hidden buffer changes.
7996 (if c-special-brace-lists
8001 (c-forward-syntactic-ws)
8002 (if (eq (char-after) ?\
()
8005 (c-forward-syntactic-ws)
8006 (setq inner-beg
(point))
8007 (setq type
(assq (char-after) c-special-brace-lists
)))
8008 (if (setq type
(assq (char-after) c-special-brace-lists
))
8010 (setq inner-beg
(point))
8011 (c-backward-syntactic-ws)
8013 (setq beg
(if (eq (char-after) ?\
()
8021 (= (char-before) ?\
)))
8023 (goto-char inner-beg
)
8024 (if (looking-at "\\s(")
8025 ;; Check balancing of the inner paren
8030 ;; If the inner char isn't a paren then
8031 ;; we can't check balancing, so just
8032 ;; check the char before the outer
8036 (c-backward-syntactic-ws)
8037 (= (char-before) (cdr type
)))))
8038 (if (or (/= (char-syntax (char-before)) ?\
))
8040 (c-forward-syntactic-ws)
8043 (cons (cons beg end
) type
))
8044 (cons (list beg
) type
)))))
8047 (defun c-looking-at-bos (&optional lim
)
8048 ;; Return non-nil if between two statements or declarations, assuming
8049 ;; point is not inside a literal or comment.
8051 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
8052 ;; are recommended instead.
8054 ;; This function might do hidden buffer changes.
8055 (c-at-statement-start-p))
8056 (make-obsolete 'c-looking-at-bos
'c-at-statement-start-p
"22.1")
8058 (defun c-looking-at-inexpr-block (lim containing-sexp
&optional check-at-end
)
8059 ;; Return non-nil if we're looking at the beginning of a block
8060 ;; inside an expression. The value returned is actually a cons of
8061 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
8062 ;; position of the beginning of the construct.
8064 ;; LIM limits the backward search. CONTAINING-SEXP is the start
8065 ;; position of the closest containing list. If it's nil, the
8066 ;; containing paren isn't used to decide whether we're inside an
8067 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
8068 ;; needs to be farther back.
8070 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
8071 ;; brace block might be done. It should only be used when the
8072 ;; construct can be assumed to be complete, i.e. when the original
8073 ;; starting position was further down than that.
8075 ;; This function might do hidden buffer changes.
8078 (let ((res 'maybe
) passed-paren
8079 (closest-lim (or containing-sexp lim
(point-min)))
8080 ;; Look at the character after point only as a last resort
8081 ;; when we can't disambiguate.
8082 (block-follows (and (eq (char-after) ?
{) (point))))
8084 (while (and (eq res
'maybe
)
8085 (progn (c-backward-syntactic-ws)
8086 (> (point) closest-lim
))
8088 (progn (backward-char)
8089 (looking-at "[\]\).]\\|\\w\\|\\s_"))
8090 (c-safe (forward-char)
8091 (goto-char (scan-sexps (point) -
1))))
8094 (if (looking-at c-keywords-regexp
)
8095 (let ((kw-sym (c-keyword-sym (match-string 1))))
8098 (c-keyword-member kw-sym
'c-inexpr-class-kwds
))
8099 (and (not (eq passed-paren ?\
[))
8100 (or (not (looking-at c-class-key
))
8101 ;; If the class definition is at the start of
8102 ;; a statement, we don't consider it an
8103 ;; in-expression class.
8104 (let ((prev (point)))
8106 (= (c-backward-token-2 1 nil closest-lim
) 0)
8107 (eq (char-syntax (char-after)) ?w
))
8108 (setq prev
(point)))
8110 (not (c-at-statement-start-p)))
8111 ;; Also, in Pike we treat it as an
8112 ;; in-expression class if it's used in an
8113 ;; object clone expression.
8116 (c-major-mode-is 'pike-mode
)
8117 (progn (goto-char block-follows
)
8118 (zerop (c-forward-token-2 1 t
)))
8119 (eq (char-after) ?\
())))
8120 (cons 'inexpr-class
(point))))
8121 ((c-keyword-member kw-sym
'c-inexpr-block-kwds
)
8122 (when (not passed-paren
)
8123 (cons 'inexpr-statement
(point))))
8124 ((c-keyword-member kw-sym
'c-lambda-kwds
)
8125 (when (or (not passed-paren
)
8126 (eq passed-paren ?\
())
8127 (cons 'inlambda
(point))))
8128 ((c-keyword-member kw-sym
'c-block-stmt-kwds
)
8133 (if (looking-at "\\s(")
8135 (if (and (eq passed-paren ?\
[)
8136 (eq (char-after) ?\
[))
8137 ;; Accept several square bracket sexps for
8138 ;; Java array initializations.
8140 (setq passed-paren
(char-after))
8145 (when (and c-recognize-paren-inexpr-blocks
8148 (eq (char-after containing-sexp
) ?\
())
8149 (goto-char containing-sexp
)
8150 (if (or (save-excursion
8151 (c-backward-syntactic-ws lim
)
8152 (and (> (point) (or lim
(point-min)))
8154 (and c-special-brace-lists
8155 (c-looking-at-special-brace-list)))
8157 (cons 'inexpr-statement
(point))))
8161 (defun c-looking-at-inexpr-block-backward (paren-state)
8162 ;; Returns non-nil if we're looking at the end of an in-expression
8163 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
8164 ;; PAREN-STATE is the paren state relevant at the current position.
8166 ;; This function might do hidden buffer changes.
8168 ;; We currently only recognize a block.
8169 (let ((here (point))
8170 (elem (car-safe paren-state
))
8172 (when (and (consp elem
)
8173 (progn (goto-char (cdr elem
))
8174 (c-forward-syntactic-ws here
)
8176 (goto-char (car elem
))
8177 (if (setq paren-state
(cdr paren-state
))
8178 (setq containing-sexp
(car-safe paren-state
)))
8179 (c-looking-at-inexpr-block (c-safe-position containing-sexp
8181 containing-sexp
)))))
8184 ;; `c-guess-basic-syntax' and the functions that precedes it below
8185 ;; implements the main decision tree for determining the syntactic
8186 ;; analysis of the current line of code.
8188 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
8189 ;; auto newline analysis.
8190 (defvar c-auto-newline-analysis nil
)
8192 (defun c-brace-anchor-point (bracepos)
8193 ;; BRACEPOS is the position of a brace in a construct like "namespace
8194 ;; Bar {". Return the anchor point in this construct; this is the
8195 ;; earliest symbol on the brace's line which isn't earlier than
8198 ;; Currently (2007-08-17), "like namespace" means "matches
8199 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
8200 ;; or anything like that.
8202 (let ((boi (c-point 'boi bracepos
)))
8203 (goto-char bracepos
)
8204 (while (and (> (point) boi
)
8205 (not (looking-at c-other-decl-block-key
)))
8206 (c-backward-token-2))
8207 (if (> (point) boi
) (point) boi
))))
8209 (defsubst c-add-syntax
(symbol &rest args
)
8210 ;; A simple function to prepend a new syntax element to
8211 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
8212 ;; should always be dynamically bound but since we read it first
8213 ;; we'll fail properly anyway if this function is misused.
8214 (setq c-syntactic-context
(cons (cons symbol args
)
8215 c-syntactic-context
)))
8217 (defsubst c-append-syntax
(symbol &rest args
)
8218 ;; Like `c-add-syntax' but appends to the end of the syntax list.
8219 ;; (Normally not necessary.)
8220 (setq c-syntactic-context
(nconc c-syntactic-context
8221 (list (cons symbol args
)))))
8223 (defun c-add-stmt-syntax (syntax-symbol
8228 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
8229 ;; needed with further syntax elements of the types `substatement',
8230 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
8231 ;; `defun-block-intro'.
8233 ;; Do the generic processing to anchor the given syntax symbol on
8234 ;; the preceding statement: Skip over any labels and containing
8235 ;; statements on the same line, and then search backward until we
8236 ;; find a statement or block start that begins at boi without a
8237 ;; label or comment.
8239 ;; Point is assumed to be at the prospective anchor point for the
8240 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
8241 ;; skip past open parens and containing statements. Most of the added
8242 ;; syntax elements will get the same anchor point - the exception is
8243 ;; for an anchor in a construct like "namespace"[*] - this is as early
8244 ;; as possible in the construct but on the same line as the {.
8246 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
8248 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
8249 ;; syntax symbol. They are appended after the anchor point.
8251 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
8252 ;; if the current statement starts there.
8254 ;; Note: It's not a problem if PAREN-STATE "overshoots"
8255 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
8257 ;; This function might do hidden buffer changes.
8259 (if (= (point) (c-point 'boi
))
8260 ;; This is by far the most common case, so let's give it special
8262 (apply 'c-add-syntax syntax-symbol
(point) syntax-extra-args
)
8264 (let ((syntax-last c-syntactic-context
)
8265 (boi (c-point 'boi
))
8266 ;; Set when we're on a label, so that we don't stop there.
8267 ;; FIXME: To be complete we should check if we're on a label
8268 ;; now at the start.
8271 ;; Use point as the anchor point for "namespace", "extern", etc.
8272 (apply 'c-add-syntax syntax-symbol
8273 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist
)
8277 ;; Loop while we have to back out of containing blocks.
8280 (catch 'back-up-block
8282 ;; Loop while we have to back up statements.
8283 (while (or (/= (point) boi
)
8285 (looking-at c-comment-start-regexp
))
8287 ;; Skip past any comments that stands between the
8288 ;; statement start and boi.
8289 (let ((savepos (point)))
8290 (while (and (/= savepos boi
)
8291 (c-backward-single-comment))
8292 (setq savepos
(point)
8293 boi
(c-point 'boi
)))
8294 (goto-char savepos
))
8296 ;; Skip to the beginning of this statement or backward
8298 (let ((old-pos (point))
8300 (step-type (c-beginning-of-statement-1 containing-sexp
)))
8301 (setq boi
(c-point 'boi
)
8302 on-label
(eq step-type
'label
))
8304 (cond ((= (point) old-pos
)
8305 ;; If we didn't move we're at the start of a block and
8306 ;; have to continue outside it.
8307 (throw 'back-up-block t
))
8309 ((and (eq step-type
'up
)
8310 (>= (point) old-boi
)
8311 (looking-at "else\\>[^_]")
8314 (looking-at "if\\>[^_]")))
8315 ;; Special case to avoid deeper and deeper indentation
8316 ;; of "else if" clauses.
8319 ((and (not stop-at-boi-only
)
8320 (/= old-pos old-boi
)
8321 (memq step-type
'(up previous
)))
8322 ;; If stop-at-boi-only is nil, we shouldn't back up
8323 ;; over previous or containing statements to try to
8324 ;; reach boi, so go back to the last position and
8327 (throw 'back-up-block nil
))
8330 (if (and (not stop-at-boi-only
)
8331 (memq step-type
'(up previous beginning
)))
8332 ;; If we've moved into another statement then we
8333 ;; should no longer try to stop in the middle of a
8335 (setq stop-at-boi-only t
))
8337 ;; Record this as a substatement if we skipped up one
8339 (when (eq step-type
'up
)
8340 (c-add-syntax 'substatement nil
))))
8345 ;; Now we have to go out of this block.
8346 (goto-char containing-sexp
)
8348 ;; Don't stop in the middle of a special brace list opener
8350 (when c-special-brace-lists
8351 (let ((special-list (c-looking-at-special-brace-list)))
8352 (when (and special-list
8353 (< (car (car special-list
)) (point)))
8354 (setq containing-sexp
(car (car special-list
)))
8355 (goto-char containing-sexp
))))
8357 (setq paren-state
(c-whack-state-after containing-sexp paren-state
)
8358 containing-sexp
(c-most-enclosing-brace paren-state
)
8361 ;; Analyze the construct in front of the block we've stepped out
8362 ;; from and add the right syntactic element for it.
8363 (let ((paren-pos (point))
8364 (paren-char (char-after))
8367 (if (eq paren-char ?\
()
8368 ;; Stepped out of a parenthesis block, so we're in an
8371 (when (/= paren-pos boi
)
8372 (if (and c-recognize-paren-inexpr-blocks
8374 (c-backward-syntactic-ws containing-sexp
)
8375 (or (not (looking-at "\\>"))
8376 (not (c-on-identifier))))
8378 (goto-char (1+ paren-pos
))
8379 (c-forward-syntactic-ws)
8380 (eq (char-after) ?
{)))
8381 ;; Stepped out of an in-expression statement. This
8382 ;; syntactic element won't get an anchor pos.
8383 (c-add-syntax 'inexpr-statement
)
8385 ;; A parenthesis normally belongs to an arglist.
8386 (c-add-syntax 'arglist-cont-nonempty nil paren-pos
)))
8390 (1+ containing-sexp
)
8392 (setq step-type
'same
8395 ;; Stepped out of a brace block.
8396 (setq step-type
(c-beginning-of-statement-1 containing-sexp
)
8397 on-label
(eq step-type
'label
))
8399 (if (and (eq step-type
'same
)
8400 (/= paren-pos
(point)))
8404 (goto-char paren-pos
)
8405 (setq inexpr
(c-looking-at-inexpr-block
8406 (c-safe-position containing-sexp paren-state
)
8408 (c-add-syntax (if (eq (car inexpr
) 'inlambda
)
8410 'statement-block-intro
)
8412 ((looking-at c-other-decl-block-key
)
8414 (cdr (assoc (match-string 1)
8415 c-other-decl-block-key-in-symbols-alist
))
8416 (max (c-point 'boi paren-pos
) (point))))
8417 (t (c-add-syntax 'defun-block-intro nil
))))
8419 (c-add-syntax 'statement-block-intro nil
)))
8421 (if (= paren-pos boi
)
8422 ;; Always done if the open brace was at boi. The
8423 ;; c-beginning-of-statement-1 call above is necessary
8424 ;; anyway, to decide the type of block-intro to add.
8425 (goto-char paren-pos
)
8426 (setq boi
(c-point 'boi
)))
8429 ;; Fill in the current point as the anchor for all the symbols
8431 (let ((p c-syntactic-context
) q
)
8432 (while (not (eq p syntax-last
))
8433 (setq q
(cdr (car p
))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
8441 (defun c-add-class-syntax (symbol
8442 containing-decl-open
8443 containing-decl-start
8446 ;; The inclass and class-close syntactic symbols are added in
8447 ;; several places and some work is needed to fix everything.
8448 ;; Therefore it's collected here.
8450 ;; This function might do hidden buffer changes.
8451 (goto-char containing-decl-open
)
8452 (if (and (eq symbol
'inclass
) (= (point) (c-point 'boi
)))
8454 (c-add-syntax symbol containing-decl-open
)
8455 containing-decl-open
)
8456 (goto-char containing-decl-start
)
8457 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
8458 ;; here, but we have to do like this for compatibility.
8459 (back-to-indentation)
8460 (c-add-syntax symbol
(point))
8461 (if (and (c-keyword-member containing-decl-kwd
8462 'c-inexpr-class-kwds
)
8463 (/= containing-decl-start
(c-point 'boi containing-decl-start
)))
8464 (c-add-syntax 'inexpr-class
))
8467 (defun c-guess-continued-construct (indent-point
8469 beg-of-same-or-containing-stmt
8472 ;; This function contains the decision tree reached through both
8473 ;; cases 18 and 10. It's a continued statement or top level
8474 ;; construct of some kind.
8476 ;; This function might do hidden buffer changes.
8478 (let (special-brace-list)
8479 (goto-char indent-point
)
8480 (skip-chars-forward " \t")
8483 ;; (CASE A removed.)
8484 ;; CASE B: open braces for class or brace-lists
8485 ((setq special-brace-list
8486 (or (and c-special-brace-lists
8487 (c-looking-at-special-brace-list))
8488 (eq char-after-ip ?
{)))
8491 ;; CASE B.1: class-open
8493 (and (eq (char-after) ?
{)
8494 (c-looking-at-decl-block containing-sexp t
)
8495 (setq beg-of-same-or-containing-stmt
(point))))
8496 (c-add-syntax 'class-open beg-of-same-or-containing-stmt
))
8498 ;; CASE B.2: brace-list-open
8499 ((or (consp special-brace-list
)
8501 (goto-char beg-of-same-or-containing-stmt
)
8502 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
8503 indent-point t t t
)))
8504 ;; The most semantically accurate symbol here is
8505 ;; brace-list-open, but we normally report it simply as a
8506 ;; statement-cont. The reason is that one normally adjusts
8507 ;; brace-list-open for brace lists as top-level constructs,
8508 ;; and brace lists inside statements is a completely different
8509 ;; context. C.f. case 5A.3.
8510 (c-beginning-of-statement-1 containing-sexp
)
8511 (c-add-stmt-syntax (if c-auto-newline-analysis
8512 ;; Turn off the dwim above when we're
8513 ;; analyzing the nature of the brace
8514 ;; for the auto newline feature.
8518 containing-sexp paren-state
))
8520 ;; CASE B.3: The body of a function declared inside a normal
8521 ;; block. Can occur e.g. in Pike and when using gcc
8522 ;; extensions, but watch out for macros followed by blocks.
8523 ;; C.f. cases E, 16F and 17G.
8524 ((and (not (c-at-statement-start-p))
8525 (eq (c-beginning-of-statement-1 containing-sexp nil nil t
)
8528 (let ((c-recognize-typeless-decls nil
))
8529 ;; Turn off recognition of constructs that lacks a
8530 ;; type in this case, since that's more likely to be
8531 ;; a macro followed by a block.
8532 (c-forward-decl-or-cast-1 (c-point 'bosws
) nil nil
))))
8533 (c-add-stmt-syntax 'defun-open nil t
8534 containing-sexp paren-state
))
8536 ;; CASE B.4: Continued statement with block open. The most
8537 ;; accurate analysis is perhaps `statement-cont' together with
8538 ;; `block-open' but we play DWIM and use `substatement-open'
8539 ;; instead. The rationaly is that this typically is a macro
8540 ;; followed by a block which makes it very similar to a
8541 ;; statement with a substatement block.
8543 (c-add-stmt-syntax 'substatement-open nil nil
8544 containing-sexp paren-state
))
8547 ;; CASE C: iostream insertion or extraction operator
8548 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
8550 (goto-char beg-of-same-or-containing-stmt
)
8551 ;; If there is no preceding streamop in the statement
8552 ;; then indent this line as a normal statement-cont.
8553 (when (c-syntactic-re-search-forward
8554 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point
'move t t
)
8555 (c-add-syntax 'stream-op
(c-point 'boi
))
8558 ;; CASE E: In the "K&R region" of a function declared inside a
8559 ;; normal block. C.f. case B.3.
8560 ((and (save-excursion
8561 ;; Check that the next token is a '{'. This works as
8562 ;; long as no language that allows nested function
8563 ;; definitions allows stuff like member init lists, K&R
8564 ;; declarations or throws clauses there.
8566 ;; Note that we do a forward search for something ahead
8567 ;; of the indentation line here. That's not good since
8568 ;; the user might not have typed it yet. Unfortunately
8569 ;; it's exceedingly tricky to recognize a function
8570 ;; prototype in a code block without resorting to this.
8571 (c-forward-syntactic-ws)
8572 (eq (char-after) ?
{))
8573 (not (c-at-statement-start-p))
8574 (eq (c-beginning-of-statement-1 containing-sexp nil nil t
)
8577 (let ((c-recognize-typeless-decls nil
))
8578 ;; Turn off recognition of constructs that lacks a
8579 ;; type in this case, since that's more likely to be
8580 ;; a macro followed by a block.
8581 (c-forward-decl-or-cast-1 (c-point 'bosws
) nil nil
))))
8582 (c-add-stmt-syntax 'func-decl-cont nil t
8583 containing-sexp paren-state
))
8585 ;; CASE D: continued statement.
8587 (c-beginning-of-statement-1 containing-sexp
)
8588 (c-add-stmt-syntax 'statement-cont nil nil
8589 containing-sexp paren-state
))
8592 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
8595 (defun c-guess-basic-syntax ()
8596 "Return the syntactic context of the current line."
8599 (c-save-buffer-state
8600 ((indent-point (point))
8601 (case-fold-search nil
)
8602 ;; A whole ugly bunch of various temporary variables. Have
8603 ;; to declare them here since it's not possible to declare
8604 ;; a variable with only the scope of a cond test and the
8605 ;; following result clauses, and most of this function is a
8606 ;; single gigantic cond. :P
8607 literal char-before-ip before-ws-ip char-after-ip macro-start
8608 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
8609 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
8611 ;; The following record some positions for the containing
8612 ;; declaration block if we're directly within one:
8613 ;; `containing-decl-open' is the position of the open
8614 ;; brace. `containing-decl-start' is the start of the
8615 ;; declaration. `containing-decl-kwd' is the keyword
8616 ;; symbol of the keyword that tells what kind of block it
8618 containing-decl-open
8619 containing-decl-start
8621 ;; The open paren of the closest surrounding sexp or nil if
8624 ;; The position after the closest preceding brace sexp
8625 ;; (nested sexps are ignored), or the position after
8626 ;; `containing-sexp' if there is none, or (point-min) if
8627 ;; `containing-sexp' is nil.
8629 ;; The paren state outside `containing-sexp', or at
8630 ;; `indent-point' if `containing-sexp' is nil.
8631 (paren-state (c-parse-state))
8632 ;; There's always at most one syntactic element which got
8633 ;; an anchor pos. It's stored in syntactic-relpos.
8635 (c-stmt-delim-chars c-stmt-delim-chars
))
8637 ;; Check if we're directly inside an enclosing declaration
8639 (when (and (setq containing-sexp
8640 (c-most-enclosing-brace paren-state
))
8642 (goto-char containing-sexp
)
8643 (eq (char-after) ?
{))
8645 (c-looking-at-decl-block
8646 (c-most-enclosing-brace paren-state
8649 (setq containing-decl-open containing-sexp
8650 containing-decl-start
(point)
8651 containing-sexp nil
)
8652 (goto-char placeholder
)
8653 (setq containing-decl-kwd
(and (looking-at c-keywords-regexp
)
8654 (c-keyword-sym (match-string 1)))))
8656 ;; Init some position variables.
8659 (setq containing-sexp
(car paren-state
)
8660 paren-state
(cdr paren-state
))
8661 (if (consp containing-sexp
)
8663 (setq lim
(cdr containing-sexp
))
8664 (if (cdr c-state-cache
)
8665 ;; Ignore balanced paren. The next entry
8666 ;; can't be another one.
8667 (setq containing-sexp
(car (cdr c-state-cache
))
8668 paren-state
(cdr paren-state
))
8669 ;; If there is no surrounding open paren then
8670 ;; put the last balanced pair back on paren-state.
8671 (setq paren-state
(cons containing-sexp paren-state
)
8672 containing-sexp nil
)))
8673 (setq lim
(1+ containing-sexp
))))
8674 (setq lim
(point-min)))
8676 ;; If we're in a parenthesis list then ',' delimits the
8677 ;; "statements" rather than being an operator (with the
8678 ;; exception of the "for" clause). This difference is
8679 ;; typically only noticeable when statements are used in macro
8681 (when (and containing-sexp
8682 (eq (char-after containing-sexp
) ?\
())
8683 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma
))
8685 ;; cache char before and after indent point, and move point to
8686 ;; the most likely position to perform the majority of tests
8687 (goto-char indent-point
)
8688 (c-backward-syntactic-ws lim
)
8689 (setq before-ws-ip
(point)
8690 char-before-ip
(char-before))
8691 (goto-char indent-point
)
8692 (skip-chars-forward " \t")
8693 (setq char-after-ip
(char-after))
8695 ;; are we in a literal?
8696 (setq literal
(c-in-literal lim
))
8698 ;; now figure out syntactic qualities of the current line
8701 ;; CASE 1: in a string.
8702 ((eq literal
'string
)
8703 (c-add-syntax 'string
(c-point 'bopl
)))
8705 ;; CASE 2: in a C or C++ style comment.
8706 ((and (memq literal
'(c c
++))
8707 ;; This is a kludge for XEmacs where we use
8708 ;; `buffer-syntactic-context', which doesn't correctly
8709 ;; recognize "\*/" to end a block comment.
8710 ;; `parse-partial-sexp' which is used by
8711 ;; `c-literal-limits' will however do that in most
8712 ;; versions, which results in that we get nil from
8713 ;; `c-literal-limits' even when `c-in-literal' claims
8714 ;; we're inside a comment.
8715 (setq placeholder
(c-literal-limits lim
)))
8716 (c-add-syntax literal
(car placeholder
)))
8718 ;; CASE 3: in a cpp preprocessor macro continuation.
8719 ((and (save-excursion
8720 (when (c-beginning-of-macro)
8721 (setq macro-start
(point))))
8722 (/= macro-start
(c-point 'boi
))
8724 (setq tmpsymbol
'cpp-macro-cont
)
8725 (or (not c-syntactic-indentation-in-macros
)
8727 (goto-char macro-start
)
8728 ;; If at the beginning of the body of a #define
8729 ;; directive then analyze as cpp-define-intro
8730 ;; only. Go on with the syntactic analysis
8731 ;; otherwise. in-macro-expr is set if we're in a
8732 ;; cpp expression, i.e. before the #define body
8733 ;; or anywhere in a non-#define directive.
8734 (if (c-forward-to-cpp-define-body)
8735 (let ((indent-boi (c-point 'boi indent-point
)))
8736 (setq in-macro-expr
(> (point) indent-boi
)
8737 tmpsymbol
'cpp-define-intro
)
8738 (= (point) indent-boi
))
8739 (setq in-macro-expr t
)
8741 (c-add-syntax tmpsymbol macro-start
)
8742 (setq macro-start nil
))
8744 ;; CASE 11: an else clause?
8745 ((looking-at "else\\>[^_]")
8746 (c-beginning-of-statement-1 containing-sexp
)
8747 (c-add-stmt-syntax 'else-clause nil t
8748 containing-sexp paren-state
))
8750 ;; CASE 12: while closure of a do/while construct?
8751 ((and (looking-at "while\\>[^_]")
8753 (prog1 (eq (c-beginning-of-statement-1 containing-sexp
)
8755 (setq placeholder
(point)))))
8756 (goto-char placeholder
)
8757 (c-add-stmt-syntax 'do-while-closure nil t
8758 containing-sexp paren-state
))
8760 ;; CASE 13: A catch or finally clause? This case is simpler
8761 ;; than if-else and do-while, because a block is required
8762 ;; after every try, catch and finally.
8764 (and (cond ((c-major-mode-is 'c
++-mode
)
8765 (looking-at "catch\\>[^_]"))
8766 ((c-major-mode-is 'java-mode
)
8767 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
8768 (and (c-safe (c-backward-syntactic-ws)
8771 (eq (char-after) ?
{)
8772 (c-safe (c-backward-syntactic-ws)
8775 (if (eq (char-after) ?\
()
8776 (c-safe (c-backward-sexp) t
)
8778 (looking-at "\\(try\\|catch\\)\\>[^_]")
8779 (setq placeholder
(point))))
8780 (goto-char placeholder
)
8781 (c-add-stmt-syntax 'catch-clause nil t
8782 containing-sexp paren-state
))
8784 ;; CASE 18: A substatement we can recognize by keyword.
8786 (and c-opt-block-stmt-key
8787 (not (eq char-before-ip ?\
;))
8788 (not (c-at-vsemi-p before-ws-ip
))
8789 (not (memq char-after-ip
'(?\
) ?\
] ?
,)))
8790 (or (not (eq char-before-ip ?
}))
8791 (c-looking-at-inexpr-block-backward c-state-cache
))
8794 ;; Ought to cache the result from the
8795 ;; c-beginning-of-statement-1 calls here.
8796 (setq placeholder
(point))
8797 (while (eq (setq step-type
8798 (c-beginning-of-statement-1 lim
))
8800 (if (eq step-type
'previous
)
8801 (goto-char placeholder
)
8802 (setq placeholder
(point))
8803 (if (and (eq step-type
'same
)
8804 (not (looking-at c-opt-block-stmt-key
)))
8805 ;; Step up to the containing statement if we
8806 ;; stayed in the same one.
8810 (c-beginning-of-statement-1 lim
))
8813 (setq placeholder
(point))
8814 ;; There was no containing statement afterall.
8815 (goto-char placeholder
)))))
8817 (if (looking-at c-block-stmt-2-key
)
8818 ;; Require a parenthesis after these keywords.
8819 ;; Necessary to catch e.g. synchronized in Java,
8820 ;; which can be used both as statement and
8822 (and (zerop (c-forward-token-2 1 nil
))
8823 (eq (char-after) ?\
())
8824 (looking-at c-opt-block-stmt-key
))))
8826 (if (eq step-type
'up
)
8827 ;; CASE 18A: Simple substatement.
8829 (goto-char placeholder
)
8831 ((eq char-after-ip ?
{)
8832 (c-add-stmt-syntax 'substatement-open nil nil
8833 containing-sexp paren-state
))
8835 (goto-char indent-point
)
8836 (back-to-indentation)
8838 (c-add-stmt-syntax 'substatement-label nil nil
8839 containing-sexp paren-state
))
8841 (c-add-stmt-syntax 'substatement nil nil
8842 containing-sexp paren-state
))))
8844 ;; CASE 18B: Some other substatement. This is shared
8846 (c-guess-continued-construct indent-point
8852 ;; CASE 14: A case or default label
8853 ((looking-at c-label-kwds-regexp
)
8856 (goto-char containing-sexp
)
8857 (setq lim
(c-most-enclosing-brace c-state-cache
8859 (c-backward-to-block-anchor lim
)
8860 (c-add-stmt-syntax 'case-label nil t lim paren-state
))
8861 ;; Got a bogus label at the top level. In lack of better
8862 ;; alternatives, anchor it on (point-min).
8863 (c-add-syntax 'case-label
(point-min))))
8865 ;; CASE 15: any other label
8867 (back-to-indentation)
8868 (and (not (looking-at c-syntactic-ws-start
))
8870 (cond (containing-decl-open
8871 (setq placeholder
(c-add-class-syntax 'inclass
8872 containing-decl-open
8873 containing-decl-start
8876 ;; Append access-label with the same anchor point as
8878 (c-append-syntax 'access-label placeholder
))
8881 (goto-char containing-sexp
)
8882 (setq lim
(c-most-enclosing-brace c-state-cache
8886 (if (and (eq (c-beginning-of-statement-1 lim
) 'up
)
8887 (looking-at "switch\\>[^_]"))
8888 ;; If the surrounding statement is a switch then
8889 ;; let's analyze all labels as switch labels, so
8890 ;; that they get lined up consistently.
8893 (c-backward-to-block-anchor lim
)
8894 (c-add-stmt-syntax tmpsymbol nil t lim paren-state
))
8897 ;; A label on the top level. Treat it as a class
8898 ;; context. (point-min) is the closest we get to the
8899 ;; class open brace.
8900 (c-add-syntax 'access-label
(point-min)))))
8902 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
8904 ((setq placeholder
(c-looking-at-inexpr-block
8905 (c-safe-position containing-sexp paren-state
)
8907 ;; Have to turn on the heuristics after
8908 ;; the point even though it doesn't work
8909 ;; very well. C.f. test case class-16.pike.
8911 (setq tmpsymbol
(assq (car placeholder
)
8912 '((inexpr-class . class-open
)
8913 (inexpr-statement . block-open
))))
8915 ;; It's a statement block or an anonymous class.
8916 (setq tmpsymbol
(cdr tmpsymbol
))
8917 ;; It's a Pike lambda. Check whether we are between the
8918 ;; lambda keyword and the argument list or at the defun
8920 (setq tmpsymbol
(if (eq char-after-ip ?
{)
8922 'lambda-intro-cont
)))
8923 (goto-char (cdr placeholder
))
8924 (back-to-indentation)
8925 (c-add-stmt-syntax tmpsymbol nil t
8926 (c-most-enclosing-brace c-state-cache
(point))
8928 (unless (eq (point) (cdr placeholder
))
8929 (c-add-syntax (car placeholder
))))
8931 ;; CASE 5: Line is inside a declaration level block or at top level.
8932 ((or containing-decl-open
(null containing-sexp
))
8935 ;; CASE 5A: we are looking at a defun, brace list, class,
8936 ;; or inline-inclass method opening brace
8937 ((setq special-brace-list
8938 (or (and c-special-brace-lists
8939 (c-looking-at-special-brace-list))
8940 (eq char-after-ip ?
{)))
8943 ;; CASE 5A.1: Non-class declaration block open.
8946 (and (eq char-after-ip ?
{)
8947 (setq tmp
(c-looking-at-decl-block containing-sexp t
))
8949 (setq placeholder
(point))
8951 (looking-at c-symbol-key
))
8953 (c-keyword-sym (setq keyword
(match-string 0)))
8954 'c-other-block-decl-kwds
))))
8955 (goto-char placeholder
)
8957 (if (string-equal keyword
"extern")
8958 ;; Special case for extern-lang-open.
8960 (intern (concat keyword
"-open")))
8961 nil t containing-sexp paren-state
))
8963 ;; CASE 5A.2: we are looking at a class opening brace
8965 (goto-char indent-point
)
8966 (skip-chars-forward " \t")
8967 (and (eq (char-after) ?
{)
8968 (c-looking-at-decl-block containing-sexp t
)
8969 (setq placeholder
(point))))
8970 (c-add-syntax 'class-open placeholder
))
8972 ;; CASE 5A.3: brace list open
8974 (c-beginning-of-decl-1 lim
)
8975 (while (looking-at c-specifier-key
)
8976 (goto-char (match-end 1))
8977 (c-forward-syntactic-ws indent-point
))
8978 (setq placeholder
(c-point 'boi
))
8979 (or (consp special-brace-list
)
8980 (and (or (save-excursion
8981 (goto-char indent-point
)
8982 (setq tmpsymbol nil
)
8983 (while (and (> (point) placeholder
)
8984 (zerop (c-backward-token-2 1 t
))
8985 (/= (char-after) ?
=))
8986 (and c-opt-inexpr-brace-list-key
8988 (looking-at c-opt-inexpr-brace-list-key
)
8989 (setq tmpsymbol
'topmost-intro-cont
)))
8990 (eq (char-after) ?
=))
8991 (looking-at c-brace-list-key
))
8993 (while (and (< (point) indent-point
)
8994 (zerop (c-forward-token-2 1 t
))
8995 (not (memq (char-after) '(?\
; ?\()))))
8996 (not (memq (char-after) '(?\
; ?\()))
8998 (if (and (not c-auto-newline-analysis
)
8999 (c-major-mode-is 'java-mode
)
9000 (eq tmpsymbol
'topmost-intro-cont
))
9001 ;; We're in Java and have found that the open brace
9002 ;; belongs to a "new Foo[]" initialization list,
9003 ;; which means the brace list is part of an
9004 ;; expression and not a top level definition. We
9005 ;; therefore treat it as any topmost continuation
9006 ;; even though the semantically correct symbol still
9007 ;; is brace-list-open, on the same grounds as in
9010 (c-beginning-of-statement-1 lim
)
9011 (c-add-syntax 'topmost-intro-cont
(c-point 'boi
)))
9012 (c-add-syntax 'brace-list-open placeholder
)))
9014 ;; CASE 5A.4: inline defun open
9015 ((and containing-decl-open
9016 (not (c-keyword-member containing-decl-kwd
9017 'c-other-block-decl-kwds
)))
9018 (c-add-syntax 'inline-open
)
9019 (c-add-class-syntax 'inclass
9020 containing-decl-open
9021 containing-decl-start
9025 ;; CASE 5A.5: ordinary defun open
9028 (c-beginning-of-decl-1 lim
)
9029 (while (looking-at c-specifier-key
)
9030 (goto-char (match-end 1))
9031 (c-forward-syntactic-ws indent-point
))
9032 (c-add-syntax 'defun-open
(c-point 'boi
))
9033 ;; Bogus to use bol here, but it's the legacy. (Resolved,
9037 ;; CASE 5B: After a function header but before the body (or
9038 ;; the ending semicolon if there's no body).
9040 (when (setq placeholder
(c-just-after-func-arglist-p lim
))
9041 (setq tmp-pos
(point))))
9044 ;; CASE 5B.1: Member init list.
9045 ((eq (char-after tmp-pos
) ?
:)
9046 (if (or (> tmp-pos indent-point
)
9047 (= (c-point 'bosws
) (1+ tmp-pos
)))
9049 ;; There is no preceding member init clause.
9050 ;; Indent relative to the beginning of indentation
9051 ;; for the topmost-intro line that contains the
9052 ;; prototype's open paren.
9053 (goto-char placeholder
)
9054 (c-add-syntax 'member-init-intro
(c-point 'boi
)))
9055 ;; Indent relative to the first member init clause.
9056 (goto-char (1+ tmp-pos
))
9057 (c-forward-syntactic-ws)
9058 (c-add-syntax 'member-init-cont
(point))))
9060 ;; CASE 5B.2: K&R arg decl intro
9061 ((and c-recognize-knr-p
9062 (c-in-knr-argdecl lim
))
9063 (c-beginning-of-statement-1 lim
)
9064 (c-add-syntax 'knr-argdecl-intro
(c-point 'boi
))
9065 (if containing-decl-open
9066 (c-add-class-syntax 'inclass
9067 containing-decl-open
9068 containing-decl-start
9072 ;; CASE 5B.4: Nether region after a C++ or Java func
9073 ;; decl, which could include a `throws' declaration.
9075 (c-beginning-of-statement-1 lim
)
9076 (c-add-syntax 'func-decl-cont
(c-point 'boi
))
9079 ;; CASE 5C: inheritance line. could be first inheritance
9080 ;; line, or continuation of a multiple inheritance
9081 ((or (and (c-major-mode-is 'c
++-mode
)
9083 (when (eq char-after-ip ?
,)
9084 (skip-chars-forward " \t")
9086 (looking-at c-opt-postfix-decl-spec-key
)))
9087 (and (or (eq char-before-ip ?
:)
9088 ;; watch out for scope operator
9090 (and (eq char-after-ip ?
:)
9091 (c-safe (forward-char 1) t
)
9092 (not (eq (char-after) ?
:))
9095 (c-backward-syntactic-ws lim
)
9096 (if (eq char-before-ip ?
:)
9099 (c-backward-syntactic-ws lim
)))
9100 (back-to-indentation)
9101 (looking-at c-class-key
)))
9103 (and (c-major-mode-is 'java-mode
)
9104 (let ((fence (save-excursion
9105 (c-beginning-of-statement-1 lim
)
9110 (cond ((looking-at c-opt-postfix-decl-spec-key
)
9111 (setq injava-inher
(cons cont
(point))
9113 ((or (not (c-safe (c-forward-sexp -
1) t
))
9119 (not (c-crosses-statement-barrier-p (cdr injava-inher
)
9124 ;; CASE 5C.1: non-hanging colon on an inher intro
9125 ((eq char-after-ip ?
:)
9126 (c-beginning-of-statement-1 lim
)
9127 (c-add-syntax 'inher-intro
(c-point 'boi
))
9128 ;; don't add inclass symbol since relative point already
9129 ;; contains any class offset
9132 ;; CASE 5C.2: hanging colon on an inher intro
9133 ((eq char-before-ip ?
:)
9134 (c-beginning-of-statement-1 lim
)
9135 (c-add-syntax 'inher-intro
(c-point 'boi
))
9136 (if containing-decl-open
9137 (c-add-class-syntax 'inclass
9138 containing-decl-open
9139 containing-decl-start
9143 ;; CASE 5C.3: in a Java implements/extends
9145 (let ((where (cdr injava-inher
))
9146 (cont (car injava-inher
)))
9148 (cond ((looking-at "throws\\>[^_]")
9149 (c-add-syntax 'func-decl-cont
9150 (progn (c-beginning-of-statement-1 lim
)
9152 (cont (c-add-syntax 'inher-cont where
))
9153 (t (c-add-syntax 'inher-intro
9154 (progn (goto-char (cdr injava-inher
))
9155 (c-beginning-of-statement-1 lim
)
9159 ;; CASE 5C.4: a continued inheritance line
9161 (c-beginning-of-inheritance-list lim
)
9162 (c-add-syntax 'inher-cont
(point))
9163 ;; don't add inclass symbol since relative point already
9164 ;; contains any class offset
9167 ;; CASE 5D: this could be a top-level initialization, a
9168 ;; member init list continuation, or a template argument
9169 ;; list continuation.
9171 ;; Note: We use the fact that lim is always after any
9172 ;; preceding brace sexp.
9173 (if c-recognize-
<>-arglists
9176 (c-syntactic-skip-backward "^;,=<>" lim t
)
9179 (when c-overloadable-operators-regexp
9180 (when (setq placeholder
(c-after-special-operator-id lim
))
9181 (goto-char placeholder
)
9184 ((eq (char-before) ?
>)
9185 (or (c-backward-<>-arglist nil lim
)
9188 ((eq (char-before) ?
<)
9191 (c-forward-<>-arglist nil
))
9192 (progn (forward-char)
9196 ;; NB: No c-after-special-operator-id stuff in this
9197 ;; clause - we assume only C++ needs it.
9198 (c-syntactic-skip-backward "^;,=" lim t
))
9199 (memq (char-before) '(?
, ?
= ?
<)))
9202 ;; CASE 5D.3: perhaps a template list continuation?
9203 ((and (c-major-mode-is 'c
++-mode
)
9206 (c-with-syntax-table c
++-template-syntax-table
9207 (goto-char indent-point
)
9208 (setq placeholder
(c-up-list-backward))
9210 (eq (char-after placeholder
) ?
<))))))
9211 (c-with-syntax-table c
++-template-syntax-table
9212 (goto-char placeholder
)
9213 (c-beginning-of-statement-1 lim t
)
9215 (c-backward-syntactic-ws lim
)
9216 (eq (char-before) ?
<))
9217 ;; In a nested template arglist.
9219 (goto-char placeholder
)
9220 (c-syntactic-skip-backward "^,;" lim t
)
9221 (c-forward-syntactic-ws))
9222 (back-to-indentation)))
9223 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9225 (c-add-syntax 'template-args-cont
(point) placeholder
))
9227 ;; CASE 5D.4: perhaps a multiple inheritance line?
9228 ((and (c-major-mode-is 'c
++-mode
)
9230 (c-beginning-of-statement-1 lim
)
9231 (setq placeholder
(point))
9232 (if (looking-at "static\\>[^_]")
9233 (c-forward-token-2 1 nil indent-point
))
9234 (and (looking-at c-class-key
)
9235 (zerop (c-forward-token-2 2 nil indent-point
))
9236 (if (eq (char-after) ?
<)
9237 (c-with-syntax-table c
++-template-syntax-table
9238 (zerop (c-forward-token-2 1 t indent-point
)))
9240 (eq (char-after) ?
:))))
9241 (goto-char placeholder
)
9242 (c-add-syntax 'inher-cont
(c-point 'boi
)))
9244 ;; CASE 5D.5: Continuation of the "expression part" of a
9245 ;; top level construct. Or, perhaps, an unrecognised construct.
9247 (while (and (setq placeholder
(point))
9248 (eq (car (c-beginning-of-decl-1 containing-sexp
))
9251 (c-backward-syntactic-ws)
9252 (eq (char-before) ?
}))
9253 (< (point) placeholder
)))
9256 ((eq (point) placeholder
) 'statement
) ; unrecognised construct
9257 ;; A preceding comma at the top level means that a
9258 ;; new variable declaration starts here. Use
9259 ;; topmost-intro-cont for it, for consistency with
9260 ;; the first variable declaration. C.f. case 5N.
9261 ((eq char-before-ip ?
,) 'topmost-intro-cont
)
9262 (t 'statement-cont
))
9263 nil nil containing-sexp paren-state
))
9266 ;; CASE 5F: Close of a non-class declaration level block.
9267 ((and (eq char-after-ip ?
})
9268 (c-keyword-member containing-decl-kwd
9269 'c-other-block-decl-kwds
))
9270 ;; This is inconsistent: Should use `containing-decl-open'
9271 ;; here if it's at boi, like in case 5J.
9272 (goto-char containing-decl-start
)
9274 (if (string-equal (symbol-name containing-decl-kwd
) "extern")
9275 ;; Special case for compatibility with the
9276 ;; extern-lang syntactic symbols.
9278 (intern (concat (symbol-name containing-decl-kwd
)
9281 (c-most-enclosing-brace paren-state
(point))
9284 ;; CASE 5G: we are looking at the brace which closes the
9285 ;; enclosing nested class decl
9286 ((and containing-sexp
9287 (eq char-after-ip ?
})
9288 (eq containing-decl-open containing-sexp
))
9289 (c-add-class-syntax 'class-close
9290 containing-decl-open
9291 containing-decl-start
9295 ;; CASE 5H: we could be looking at subsequent knr-argdecls
9296 ((and c-recognize-knr-p
9297 (not containing-sexp
) ; can't be knr inside braces.
9298 (not (eq char-before-ip ?
}))
9300 (setq placeholder
(cdr (c-beginning-of-decl-1 lim
)))
9302 ;; Do an extra check to avoid tripping up on
9303 ;; statements that occur in invalid contexts
9304 ;; (e.g. in macro bodies where we don't really
9305 ;; know the context of what we're looking at).
9306 (not (and c-opt-block-stmt-key
9307 (looking-at c-opt-block-stmt-key
)))))
9308 (< placeholder indent-point
))
9309 (goto-char placeholder
)
9310 (c-add-syntax 'knr-argdecl
(point)))
9312 ;; CASE 5I: ObjC method definition.
9313 ((and c-opt-method-key
9314 (looking-at c-opt-method-key
))
9315 (c-beginning-of-statement-1 nil t
)
9316 (if (= (point) indent-point
)
9317 ;; Handle the case when it's the first (non-comment)
9318 ;; thing in the buffer. Can't look for a 'same return
9319 ;; value from cbos1 since ObjC directives currently
9320 ;; aren't recognized fully, so that we get 'same
9321 ;; instead of 'previous if it moved over a preceding
9323 (goto-char (point-min)))
9324 (c-add-syntax 'objc-method-intro
(c-point 'boi
)))
9326 ;; CASE 5P: AWK pattern or function or continuation
9328 ((c-major-mode-is 'awk-mode
)
9329 (setq placeholder
(point))
9331 (if (and (eq (c-beginning-of-statement-1) 'same
)
9332 (/= (point) placeholder
))
9336 containing-sexp paren-state
))
9338 ;; CASE 5N: At a variable declaration that follows a class
9339 ;; definition or some other block declaration that doesn't
9340 ;; end at the closing '}'. C.f. case 5D.5.
9342 (c-backward-syntactic-ws lim
)
9343 (and (eq (char-before) ?
})
9345 (let ((start (point)))
9346 (if (and c-state-cache
9347 (consp (car c-state-cache
))
9348 (eq (cdar c-state-cache
) (point)))
9349 ;; Speed up the backward search a bit.
9350 (goto-char (caar c-state-cache
)))
9351 (c-beginning-of-decl-1 containing-sexp
)
9352 (setq placeholder
(point))
9353 (if (= start
(point))
9354 ;; The '}' is unbalanced.
9357 (>= (point) indent-point
))))))
9358 (goto-char placeholder
)
9359 (c-add-stmt-syntax 'topmost-intro-cont nil nil
9360 containing-sexp paren-state
))
9362 ;; NOTE: The point is at the end of the previous token here.
9364 ;; CASE 5J: we are at the topmost level, make
9365 ;; sure we skip back past any access specifiers
9367 ;; A macro continuation line is never at top level.
9368 (not (and macro-start
9369 (> indent-point macro-start
)))
9371 (setq placeholder
(point))
9372 (or (memq char-before-ip
'(?\
; ?{ ?} nil))
9373 (c-at-vsemi-p before-ws-ip
)
9374 (when (and (eq char-before-ip ?
:)
9375 (eq (c-beginning-of-statement-1 lim
)
9377 (c-backward-syntactic-ws lim
)
9378 (setq placeholder
(point)))
9379 (and (c-major-mode-is 'objc-mode
)
9380 (catch 'not-in-directive
9381 (c-beginning-of-statement-1 lim
)
9382 (setq placeholder
(point))
9383 (while (and (c-forward-objc-directive)
9384 (< (point) indent-point
))
9385 (c-forward-syntactic-ws)
9386 (if (>= (point) indent-point
)
9387 (throw 'not-in-directive t
))
9388 (setq placeholder
(point)))
9390 ;; For historic reasons we anchor at bol of the last
9391 ;; line of the previous declaration. That's clearly
9392 ;; highly bogus and useless, and it makes our lives hard
9393 ;; to remain compatible. :P
9394 (goto-char placeholder
)
9395 (c-add-syntax 'topmost-intro
(c-point 'bol
))
9396 (if containing-decl-open
9397 (if (c-keyword-member containing-decl-kwd
9398 'c-other-block-decl-kwds
)
9400 (goto-char (c-brace-anchor-point containing-decl-open
))
9402 (if (string-equal (symbol-name containing-decl-kwd
)
9404 ;; Special case for compatibility with the
9405 ;; extern-lang syntactic symbols.
9407 (intern (concat "in"
9408 (symbol-name containing-decl-kwd
))))
9410 (c-most-enclosing-brace paren-state
(point))
9412 (c-add-class-syntax 'inclass
9413 containing-decl-open
9414 containing-decl-start
9417 (when (and c-syntactic-indentation-in-macros
9419 (/= macro-start
(c-point 'boi indent-point
)))
9420 (c-add-syntax 'cpp-define-intro
)
9421 (setq macro-start nil
)))
9423 ;; CASE 5K: we are at an ObjC method definition
9424 ;; continuation line.
9425 ((and c-opt-method-key
9427 (c-beginning-of-statement-1 lim
)
9429 (when (looking-at c-opt-method-key
)
9430 (setq placeholder
(point)))))
9431 (c-add-syntax 'objc-method-args-cont placeholder
))
9433 ;; CASE 5L: we are at the first argument of a template
9434 ;; arglist that begins on the previous line.
9435 ((and c-recognize-
<>-arglists
9436 (eq (char-before) ?
<)
9437 (setq placeholder
(1- (point)))
9438 (not (and c-overloadable-operators-regexp
9439 (c-after-special-operator-id lim
))))
9440 (c-beginning-of-statement-1 (c-safe-position (point) paren-state
))
9441 (c-add-syntax 'template-args-cont
(c-point 'boi
) placeholder
))
9443 ;; CASE 5Q: we are at a statement within a macro.
9445 (c-beginning-of-statement-1 containing-sexp
)
9446 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state
))
9448 ;; CASE 5M: we are at a topmost continuation line
9450 (c-beginning-of-statement-1 (c-safe-position (point) paren-state
))
9451 (when (c-major-mode-is 'objc-mode
)
9452 (setq placeholder
(point))
9453 (while (and (c-forward-objc-directive)
9454 (< (point) indent-point
))
9455 (c-forward-syntactic-ws)
9456 (setq placeholder
(point)))
9457 (goto-char placeholder
))
9458 (c-add-syntax 'topmost-intro-cont
(c-point 'boi
)))
9461 ;; (CASE 6 has been removed.)
9463 ;; CASE 19: line is an expression, not a statement, and is directly
9464 ;; contained by a template delimiter. Most likely, we are in a
9465 ;; template arglist within a statement. This case is based on CASE
9466 ;; 7. At some point in the future, we may wish to create more
9467 ;; syntactic symbols such as `template-intro',
9468 ;; `template-cont-nonempty', etc., and distinguish between them as we
9469 ;; do for `arglist-intro' etc. (2009-12-07).
9470 ((and c-recognize-
<>-arglists
9471 (setq containing-
< (c-up-list-backward indent-point containing-sexp
))
9472 (eq (char-after containing-
<) ?\
<))
9473 (setq placeholder
(c-point 'boi containing-
<))
9474 (goto-char containing-sexp
) ; Most nested Lbrace/Lparen (but not
9475 ; '<') before indent-point.
9476 (if (>= (point) placeholder
)
9479 (skip-chars-forward " \t"))
9480 (goto-char placeholder
))
9481 (c-add-stmt-syntax 'template-args-cont
(list containing-
<) t
9482 (c-most-enclosing-brace c-state-cache
(point))
9486 ;; CASE 7: line is an expression, not a statement. Most
9487 ;; likely we are either in a function prototype or a function
9488 ;; call argument list, or a template argument list.
9489 ((not (or (and c-special-brace-lists
9491 (goto-char containing-sexp
)
9492 (c-looking-at-special-brace-list)))
9493 (eq (char-after containing-sexp
) ?
{)
9494 (eq (char-after containing-sexp
) ?
<)))
9497 ;; CASE 7A: we are looking at the arglist closing paren.
9499 ((memq char-after-ip
'(?\
) ?\
]))
9500 (goto-char containing-sexp
)
9501 (setq placeholder
(c-point 'boi
))
9502 (if (and (c-safe (backward-up-list 1) t
)
9503 (>= (point) placeholder
))
9506 (skip-chars-forward " \t"))
9507 (goto-char placeholder
))
9508 (c-add-stmt-syntax 'arglist-close
(list containing-sexp
) t
9509 (c-most-enclosing-brace paren-state
(point))
9512 ;; CASE 7B: Looking at the opening brace of an
9513 ;; in-expression block or brace list. C.f. cases 4, 16A
9515 ((and (eq char-after-ip ?
{)
9517 (setq placeholder
(c-inside-bracelist-p (point)
9520 (setq tmpsymbol
'(brace-list-open . inexpr-class
))
9521 (setq tmpsymbol
'(block-open . inexpr-statement
)
9523 (cdr-safe (c-looking-at-inexpr-block
9524 (c-safe-position containing-sexp
9527 ;; placeholder is nil if it's a block directly in
9528 ;; a function arglist. That makes us skip out of
9531 (goto-char placeholder
)
9532 (back-to-indentation)
9533 (c-add-stmt-syntax (car tmpsymbol
) nil t
9534 (c-most-enclosing-brace paren-state
(point))
9536 (if (/= (point) placeholder
)
9537 (c-add-syntax (cdr tmpsymbol
))))
9539 ;; CASE 7C: we are looking at the first argument in an empty
9540 ;; argument list. Use arglist-close if we're actually
9541 ;; looking at a close paren or bracket.
9542 ((memq char-before-ip
'(?\
( ?\
[))
9543 (goto-char containing-sexp
)
9544 (setq placeholder
(c-point 'boi
))
9545 (if (and (c-safe (backward-up-list 1) t
)
9546 (>= (point) placeholder
))
9549 (skip-chars-forward " \t"))
9550 (goto-char placeholder
))
9551 (c-add-stmt-syntax 'arglist-intro
(list containing-sexp
) t
9552 (c-most-enclosing-brace paren-state
(point))
9555 ;; CASE 7D: we are inside a conditional test clause. treat
9556 ;; these things as statements
9558 (goto-char containing-sexp
)
9559 (and (c-safe (c-forward-sexp -
1) t
)
9560 (looking-at "\\<for\\>[^_]")))
9561 (goto-char (1+ containing-sexp
))
9562 (c-forward-syntactic-ws indent-point
)
9563 (if (eq char-before-ip ?\
;)
9564 (c-add-syntax 'statement
(point))
9565 (c-add-syntax 'statement-cont
(point))
9568 ;; CASE 7E: maybe a continued ObjC method call. This is the
9569 ;; case when we are inside a [] bracketed exp, and what
9570 ;; precede the opening bracket is not an identifier.
9571 ((and c-opt-method-key
9572 (eq (char-after containing-sexp
) ?\
[)
9574 (goto-char (1- containing-sexp
))
9575 (c-backward-syntactic-ws (c-point 'bod
))
9576 (if (not (looking-at c-symbol-key
))
9577 (c-add-syntax 'objc-method-call-cont containing-sexp
))
9580 ;; CASE 7F: we are looking at an arglist continuation line,
9581 ;; but the preceding argument is on the same line as the
9582 ;; opening paren. This case includes multi-line
9583 ;; mathematical paren groupings, but we could be on a
9584 ;; for-list continuation line. C.f. case 7A.
9586 (goto-char (1+ containing-sexp
))
9588 (c-forward-syntactic-ws)
9591 (goto-char containing-sexp
) ; paren opening the arglist
9592 (setq placeholder
(c-point 'boi
))
9593 (if (and (c-safe (backward-up-list 1) t
)
9594 (>= (point) placeholder
))
9597 (skip-chars-forward " \t"))
9598 (goto-char placeholder
))
9599 (c-add-stmt-syntax 'arglist-cont-nonempty
(list containing-sexp
) t
9600 (c-most-enclosing-brace c-state-cache
(point))
9603 ;; CASE 7G: we are looking at just a normal arglist
9604 ;; continuation line
9605 (t (c-forward-syntactic-ws indent-point
)
9606 (c-add-syntax 'arglist-cont
(c-point 'boi
)))
9609 ;; CASE 8: func-local multi-inheritance line
9610 ((and (c-major-mode-is 'c
++-mode
)
9612 (goto-char indent-point
)
9613 (skip-chars-forward " \t")
9614 (looking-at c-opt-postfix-decl-spec-key
)))
9615 (goto-char indent-point
)
9616 (skip-chars-forward " \t")
9619 ;; CASE 8A: non-hanging colon on an inher intro
9620 ((eq char-after-ip ?
:)
9621 (c-backward-syntactic-ws lim
)
9622 (c-add-syntax 'inher-intro
(c-point 'boi
)))
9624 ;; CASE 8B: hanging colon on an inher intro
9625 ((eq char-before-ip ?
:)
9626 (c-add-syntax 'inher-intro
(c-point 'boi
)))
9628 ;; CASE 8C: a continued inheritance line
9630 (c-beginning-of-inheritance-list lim
)
9631 (c-add-syntax 'inher-cont
(point))
9634 ;; CASE 9: we are inside a brace-list
9635 ((and (not (c-major-mode-is 'awk-mode
)) ; Maybe this isn't needed (ACM, 2002/3/29)
9636 (setq special-brace-list
9637 (or (and c-special-brace-lists
;;;; ALWAYS NIL FOR AWK!!
9639 (goto-char containing-sexp
)
9640 (c-looking-at-special-brace-list)))
9641 (c-inside-bracelist-p containing-sexp paren-state
))))
9644 ;; CASE 9A: In the middle of a special brace list opener.
9645 ((and (consp special-brace-list
)
9647 (goto-char containing-sexp
)
9648 (eq (char-after) ?\
())
9649 (eq char-after-ip
(car (cdr special-brace-list
))))
9650 (goto-char (car (car special-brace-list
)))
9651 (skip-chars-backward " \t")
9653 (assoc 'statement-cont
9654 (setq placeholder
(c-guess-basic-syntax))))
9655 (setq c-syntactic-context placeholder
)
9656 (c-beginning-of-statement-1
9657 (c-safe-position (1- containing-sexp
) paren-state
))
9658 (c-forward-token-2 0)
9659 (while (looking-at c-specifier-key
)
9660 (goto-char (match-end 1))
9661 (c-forward-syntactic-ws))
9662 (c-add-syntax 'brace-list-open
(c-point 'boi
))))
9664 ;; CASE 9B: brace-list-close brace
9665 ((if (consp special-brace-list
)
9666 ;; Check special brace list closer.
9668 (goto-char (car (car special-brace-list
)))
9670 (goto-char indent-point
)
9671 (back-to-indentation)
9673 ;; We were between the special close char and the `)'.
9674 (and (eq (char-after) ?\
))
9675 (eq (1+ (point)) (cdr (car special-brace-list
))))
9676 ;; We were before the special close char.
9677 (and (eq (char-after) (cdr (cdr special-brace-list
)))
9678 (zerop (c-forward-token-2))
9679 (eq (1+ (point)) (cdr (car special-brace-list
)))))))
9680 ;; Normal brace list check.
9681 (and (eq char-after-ip ?
})
9682 (c-safe (goto-char (c-up-list-backward (point))) t
)
9683 (= (point) containing-sexp
)))
9684 (if (eq (point) (c-point 'boi
))
9685 (c-add-syntax 'brace-list-close
(point))
9686 (setq lim
(c-most-enclosing-brace c-state-cache
(point)))
9687 (c-beginning-of-statement-1 lim
)
9688 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state
)))
9691 ;; Prepare for the rest of the cases below by going to the
9692 ;; token following the opening brace
9693 (if (consp special-brace-list
)
9695 (goto-char (car (car special-brace-list
)))
9696 (c-forward-token-2 1 nil indent-point
))
9697 (goto-char containing-sexp
))
9699 (let ((start (point)))
9700 (c-forward-syntactic-ws indent-point
)
9701 (goto-char (max start
(c-point 'bol
))))
9702 (c-skip-ws-forward indent-point
)
9705 ;; CASE 9C: we're looking at the first line in a brace-list
9706 ((= (point) indent-point
)
9707 (if (consp special-brace-list
)
9708 (goto-char (car (car special-brace-list
)))
9709 (goto-char containing-sexp
))
9710 (if (eq (point) (c-point 'boi
))
9711 (c-add-syntax 'brace-list-intro
(point))
9712 (setq lim
(c-most-enclosing-brace c-state-cache
(point)))
9713 (c-beginning-of-statement-1 lim
)
9714 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state
)))
9716 ;; CASE 9D: this is just a later brace-list-entry or
9718 (t (if (or (eq char-after-ip ?
{)
9719 (and c-special-brace-lists
9721 (goto-char indent-point
)
9722 (c-forward-syntactic-ws (c-point 'eol
))
9723 (c-looking-at-special-brace-list (point)))))
9724 (c-add-syntax 'brace-entry-open
(point))
9725 (c-add-syntax 'brace-list-entry
(point))
9729 ;; CASE 10: A continued statement or top level construct.
9730 ((and (not (memq char-before-ip
'(?\
; ?:)))
9731 (not (c-at-vsemi-p before-ws-ip
))
9732 (or (not (eq char-before-ip ?
}))
9733 (c-looking-at-inexpr-block-backward c-state-cache
))
9736 (c-beginning-of-statement-1 containing-sexp
)
9737 (setq placeholder
(point))))
9738 (/= placeholder containing-sexp
))
9739 ;; This is shared with case 18.
9740 (c-guess-continued-construct indent-point
9746 ;; CASE 16: block close brace, possibly closing the defun or
9748 ((eq char-after-ip ?
})
9749 ;; From here on we have the next containing sexp in lim.
9750 (setq lim
(c-most-enclosing-brace paren-state
))
9751 (goto-char containing-sexp
)
9754 ;; CASE 16E: Closing a statement block? This catches
9755 ;; cases where it's preceded by a statement keyword,
9756 ;; which works even when used in an "invalid" context,
9757 ;; e.g. a macro argument.
9758 ((c-after-conditional)
9759 (c-backward-to-block-anchor lim
)
9760 (c-add-stmt-syntax 'block-close nil t lim paren-state
))
9762 ;; CASE 16A: closing a lambda defun or an in-expression
9763 ;; block? C.f. cases 4, 7B and 17E.
9764 ((setq placeholder
(c-looking-at-inexpr-block
9765 (c-safe-position containing-sexp paren-state
)
9767 (setq tmpsymbol
(if (eq (car placeholder
) 'inlambda
)
9770 (goto-char containing-sexp
)
9771 (back-to-indentation)
9772 (if (= containing-sexp
(point))
9773 (c-add-syntax tmpsymbol
(point))
9774 (goto-char (cdr placeholder
))
9775 (back-to-indentation)
9776 (c-add-stmt-syntax tmpsymbol nil t
9777 (c-most-enclosing-brace paren-state
(point))
9779 (if (/= (point) (cdr placeholder
))
9780 (c-add-syntax (car placeholder
)))))
9782 ;; CASE 16B: does this close an inline or a function in
9783 ;; a non-class declaration level block?
9788 (c-looking-at-decl-block
9789 (c-most-enclosing-brace paren-state lim
)
9791 (setq placeholder
(point))))
9792 (c-backward-to-decl-anchor lim
)
9793 (back-to-indentation)
9795 (goto-char placeholder
)
9796 (looking-at c-other-decl-block-key
))
9797 (c-add-syntax 'defun-close
(point))
9798 (c-add-syntax 'inline-close
(point))))
9800 ;; CASE 16F: Can be a defun-close of a function declared
9801 ;; in a statement block, e.g. in Pike or when using gcc
9802 ;; extensions, but watch out for macros followed by
9803 ;; blocks. Let it through to be handled below.
9804 ;; C.f. cases B.3 and 17G.
9806 (and (not (c-at-statement-start-p))
9807 (eq (c-beginning-of-statement-1 lim nil nil t
) 'same
)
9808 (setq placeholder
(point))
9809 (let ((c-recognize-typeless-decls nil
))
9810 ;; Turn off recognition of constructs that
9811 ;; lacks a type in this case, since that's more
9812 ;; likely to be a macro followed by a block.
9813 (c-forward-decl-or-cast-1 (c-point 'bosws
) nil nil
))))
9814 (back-to-indentation)
9815 (if (/= (point) containing-sexp
)
9816 (goto-char placeholder
))
9817 (c-add-stmt-syntax 'defun-close nil t lim paren-state
))
9819 ;; CASE 16C: If there is an enclosing brace then this is
9820 ;; a block close since defun closes inside declaration
9821 ;; level blocks have been handled above.
9823 ;; If the block is preceded by a case/switch label on
9824 ;; the same line, we anchor at the first preceding label
9825 ;; at boi. The default handling in c-add-stmt-syntax
9826 ;; really fixes it better, but we do like this to keep
9827 ;; the indentation compatible with version 5.28 and
9828 ;; earlier. C.f. case 17H.
9829 (while (and (/= (setq placeholder
(point)) (c-point 'boi
))
9830 (eq (c-beginning-of-statement-1 lim
) 'label
)))
9831 (goto-char placeholder
)
9832 (if (looking-at c-label-kwds-regexp
)
9833 (c-add-syntax 'block-close
(point))
9834 (goto-char containing-sexp
)
9835 ;; c-backward-to-block-anchor not necessary here; those
9836 ;; situations are handled in case 16E above.
9837 (c-add-stmt-syntax 'block-close nil t lim paren-state
)))
9839 ;; CASE 16D: Only top level defun close left.
9841 (goto-char containing-sexp
)
9842 (c-backward-to-decl-anchor lim
)
9843 (c-add-stmt-syntax 'defun-close nil nil
9844 (c-most-enclosing-brace paren-state
)
9848 ;; CASE 17: Statement or defun catchall.
9850 (goto-char indent-point
)
9851 ;; Back up statements until we find one that starts at boi.
9852 (while (let* ((prev-point (point))
9853 (last-step-type (c-beginning-of-statement-1
9855 (if (= (point) prev-point
)
9857 (setq step-type
(or step-type last-step-type
))
9859 (setq step-type last-step-type
)
9860 (/= (point) (c-point 'boi
)))))
9863 ;; CASE 17B: continued statement
9864 ((and (eq step-type
'same
)
9865 (/= (point) indent-point
))
9866 (c-add-stmt-syntax 'statement-cont nil nil
9867 containing-sexp paren-state
))
9869 ;; CASE 17A: After a case/default label?
9871 (while (and (eq step-type
'label
)
9872 (not (looking-at c-label-kwds-regexp
)))
9874 (c-beginning-of-statement-1 containing-sexp
)))
9875 (eq step-type
'label
))
9876 (c-add-stmt-syntax (if (eq char-after-ip ?
{)
9877 'statement-case-open
9878 'statement-case-intro
)
9879 nil t containing-sexp paren-state
))
9881 ;; CASE 17D: any old statement
9883 (while (eq step-type
'label
)
9885 (c-beginning-of-statement-1 containing-sexp
)))
9886 (eq step-type
'previous
))
9887 (c-add-stmt-syntax 'statement nil t
9888 containing-sexp paren-state
)
9889 (if (eq char-after-ip ?
{)
9890 (c-add-syntax 'block-open
)))
9892 ;; CASE 17I: Inside a substatement block.
9894 ;; The following tests are all based on containing-sexp.
9895 (goto-char containing-sexp
)
9896 ;; From here on we have the next containing sexp in lim.
9897 (setq lim
(c-most-enclosing-brace paren-state containing-sexp
))
9898 (c-after-conditional))
9899 (c-backward-to-block-anchor lim
)
9900 (c-add-stmt-syntax 'statement-block-intro nil t
9902 (if (eq char-after-ip ?
{)
9903 (c-add-syntax 'block-open
)))
9905 ;; CASE 17E: first statement in an in-expression block.
9906 ;; C.f. cases 4, 7B and 16A.
9907 ((setq placeholder
(c-looking-at-inexpr-block
9908 (c-safe-position containing-sexp paren-state
)
9910 (setq tmpsymbol
(if (eq (car placeholder
) 'inlambda
)
9912 'statement-block-intro
))
9913 (back-to-indentation)
9914 (if (= containing-sexp
(point))
9915 (c-add-syntax tmpsymbol
(point))
9916 (goto-char (cdr placeholder
))
9917 (back-to-indentation)
9918 (c-add-stmt-syntax tmpsymbol nil t
9919 (c-most-enclosing-brace c-state-cache
(point))
9921 (if (/= (point) (cdr placeholder
))
9922 (c-add-syntax (car placeholder
))))
9923 (if (eq char-after-ip ?
{)
9924 (c-add-syntax 'block-open
)))
9926 ;; CASE 17F: first statement in an inline, or first
9927 ;; statement in a top-level defun. we can tell this is it
9928 ;; if there are no enclosing braces that haven't been
9929 ;; narrowed out by a class (i.e. don't use bod here).
9931 (or (not (setq placeholder
(c-most-enclosing-brace
9934 (goto-char placeholder
)
9935 (eq (char-after) ?
{))
9936 (c-looking-at-decl-block (c-most-enclosing-brace
9937 paren-state
(point))
9939 (c-backward-to-decl-anchor lim
)
9940 (back-to-indentation)
9941 (c-add-syntax 'defun-block-intro
(point)))
9943 ;; CASE 17G: First statement in a function declared inside
9944 ;; a normal block. This can occur in Pike and with
9945 ;; e.g. the gcc extensions, but watch out for macros
9946 ;; followed by blocks. C.f. cases B.3 and 16F.
9948 (and (not (c-at-statement-start-p))
9949 (eq (c-beginning-of-statement-1 lim nil nil t
) 'same
)
9950 (setq placeholder
(point))
9951 (let ((c-recognize-typeless-decls nil
))
9952 ;; Turn off recognition of constructs that lacks
9953 ;; a type in this case, since that's more likely
9954 ;; to be a macro followed by a block.
9955 (c-forward-decl-or-cast-1 (c-point 'bosws
) nil nil
))))
9956 (back-to-indentation)
9957 (if (/= (point) containing-sexp
)
9958 (goto-char placeholder
))
9959 (c-add-stmt-syntax 'defun-block-intro nil t
9962 ;; CASE 17H: First statement in a block.
9964 ;; If the block is preceded by a case/switch label on the
9965 ;; same line, we anchor at the first preceding label at
9966 ;; boi. The default handling in c-add-stmt-syntax is
9967 ;; really fixes it better, but we do like this to keep the
9968 ;; indentation compatible with version 5.28 and earlier.
9970 (while (and (/= (setq placeholder
(point)) (c-point 'boi
))
9971 (eq (c-beginning-of-statement-1 lim
) 'label
)))
9972 (goto-char placeholder
)
9973 (if (looking-at c-label-kwds-regexp
)
9974 (c-add-syntax 'statement-block-intro
(point))
9975 (goto-char containing-sexp
)
9976 ;; c-backward-to-block-anchor not necessary here; those
9977 ;; situations are handled in case 17I above.
9978 (c-add-stmt-syntax 'statement-block-intro nil t
9980 (if (eq char-after-ip ?
{)
9981 (c-add-syntax 'block-open
)))
9985 ;; now we need to look at any modifiers
9986 (goto-char indent-point
)
9987 (skip-chars-forward " \t")
9989 ;; are we looking at a comment only line?
9990 (when (and (looking-at c-comment-start-regexp
)
9991 (/= (c-forward-token-2 0 nil
(c-point 'eol
)) 0))
9992 (c-append-syntax 'comment-intro
))
9994 ;; we might want to give additional offset to friends (in C++).
9995 (when (and c-opt-friend-key
9996 (looking-at c-opt-friend-key
))
9997 (c-append-syntax 'friend
))
9999 ;; Set syntactic-relpos.
10000 (let ((p c-syntactic-context
))
10002 (if (integerp (c-langelem-pos (car p
)))
10004 (setq syntactic-relpos
(c-langelem-pos (car p
)))
10009 ;; Start of or a continuation of a preprocessor directive?
10010 (if (and macro-start
10011 (eq macro-start
(c-point 'boi
))
10012 (not (and (c-major-mode-is 'pike-mode
)
10013 (eq (char-after (1+ macro-start
)) ?
\"))))
10014 (c-append-syntax 'cpp-macro
)
10015 (when (and c-syntactic-indentation-in-macros macro-start
)
10018 (< syntactic-relpos macro-start
)
10020 (assq 'arglist-intro c-syntactic-context
)
10021 (assq 'arglist-cont c-syntactic-context
)
10022 (assq 'arglist-cont-nonempty c-syntactic-context
)
10023 (assq 'arglist-close c-syntactic-context
))))
10024 ;; If inside a cpp expression, i.e. anywhere in a
10025 ;; cpp directive except a #define body, we only let
10026 ;; through the syntactic analysis that is internal
10027 ;; in the expression. That means the arglist
10028 ;; elements, if they are anchored inside the cpp
10030 (setq c-syntactic-context nil
)
10031 (c-add-syntax 'cpp-macro-cont macro-start
))
10032 (when (and (eq macro-start syntactic-relpos
)
10033 (not (assq 'cpp-define-intro c-syntactic-context
))
10035 (goto-char macro-start
)
10036 (or (not (c-forward-to-cpp-define-body))
10037 (<= (point) (c-point 'boi indent-point
)))))
10038 ;; Inside a #define body and the syntactic analysis is
10039 ;; anchored on the start of the #define. In this case
10040 ;; we add cpp-define-intro to get the extra
10041 ;; indentation of the #define body.
10042 (c-add-syntax 'cpp-define-intro
)))))
10044 ;; return the syntax
10045 c-syntactic-context
)))
10048 ;; Indentation calculation.
10050 (defun c-evaluate-offset (offset langelem symbol
)
10051 ;; offset can be a number, a function, a variable, a list, or one of
10052 ;; the symbols + or -
10054 ;; This function might do hidden buffer changes.
10057 ((numberp offset
) offset
)
10058 ((vectorp offset
) offset
)
10059 ((null offset
) nil
)
10061 ((eq offset
'+) c-basic-offset
)
10062 ((eq offset
'-
) (- c-basic-offset
))
10063 ((eq offset
'++) (* 2 c-basic-offset
))
10064 ((eq offset
'--
) (* 2 (- c-basic-offset
)))
10065 ((eq offset
'*) (/ c-basic-offset
2))
10066 ((eq offset
'/) (/ (- c-basic-offset
) 2))
10068 ((functionp offset
)
10071 (cons (c-langelem-sym langelem
)
10072 (c-langelem-pos langelem
)))
10077 ((eq (car offset
) 'quote
)
10078 (c-benign-error "The offset %S for %s was mistakenly quoted"
10082 ((memq (car offset
) '(min max
))
10083 (let (res val
(method (car offset
)))
10084 (setq offset
(cdr offset
))
10086 (setq val
(c-evaluate-offset (car offset
) langelem symbol
))
10094 Error evaluating offset %S for %s: \
10095 Cannot combine absolute offset %S with relative %S in `%s' method"
10096 (car offset
) symbol res val method
)
10097 (setq res
(funcall method res val
))))
10101 Error evaluating offset %S for %s: \
10102 Cannot combine relative offset %S with absolute %S in `%s' method"
10103 (car offset
) symbol res val method
)
10104 (setq res
(vector (funcall method
(aref res
0)
10106 (setq offset
(cdr offset
)))
10109 ((eq (car offset
) 'add
)
10111 (setq offset
(cdr offset
))
10113 (setq val
(c-evaluate-offset (car offset
) langelem symbol
))
10120 (setq res
(vector (+ (aref res
0) val
)))
10121 (setq res
(+ res val
))))
10125 Error evaluating offset %S for %s: \
10126 Cannot combine absolute offsets %S and %S in `add' method"
10127 (car offset
) symbol res val
)
10128 (setq res val
)))) ; Override.
10129 (setq offset
(cdr offset
)))
10134 (when (eq (car offset
) 'first
)
10135 (setq offset
(cdr offset
)))
10136 (while (and (not res
) offset
)
10137 (setq res
(c-evaluate-offset (car offset
) langelem symbol
)
10138 offset
(cdr offset
)))
10141 ((and (symbolp offset
) (boundp offset
))
10142 (symbol-value offset
))
10145 (c-benign-error "Unknown offset format %S for %s" offset symbol
)
10148 (if (or (null res
) (integerp res
)
10149 (and (vectorp res
) (= (length res
) 1) (integerp (aref res
0))))
10151 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
10155 (defun c-calc-offset (langelem)
10156 ;; Get offset from LANGELEM which is a list beginning with the
10157 ;; syntactic symbol and followed by any analysis data it provides.
10158 ;; That data may be zero or more elements, but if at least one is
10159 ;; given then the first is the anchor position (or nil). The symbol
10160 ;; is matched against `c-offsets-alist' and the offset calculated
10161 ;; from that is returned.
10163 ;; This function might do hidden buffer changes.
10164 (let* ((symbol (c-langelem-sym langelem
))
10165 (match (assq symbol c-offsets-alist
))
10166 (offset (cdr-safe match
)))
10168 (setq offset
(c-evaluate-offset offset langelem symbol
))
10169 (if c-strict-syntax-p
10170 (c-benign-error "No offset found for syntactic symbol %s" symbol
))
10172 (if (vectorp offset
)
10174 (or (and (numberp offset
) offset
)
10175 (and (symbolp offset
) (symbol-value offset
))
10179 (defun c-get-offset (langelem)
10180 ;; This is a compatibility wrapper for `c-calc-offset' in case
10181 ;; someone is calling it directly. It takes an old style syntactic
10182 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
10185 ;; This function might do hidden buffer changes.
10186 (if (c-langelem-pos langelem
)
10187 (c-calc-offset (list (c-langelem-sym langelem
)
10188 (c-langelem-pos langelem
)))
10189 (c-calc-offset langelem
)))
10191 (defun c-get-syntactic-indentation (langelems)
10192 ;; Calculate the syntactic indentation from a syntactic description
10193 ;; as returned by `c-guess-syntax'.
10195 ;; Note that topmost-intro always has an anchor position at bol, for
10196 ;; historical reasons. It's often used together with other symbols
10197 ;; that has more sane positions. Since we always use the first
10198 ;; found anchor position, we rely on that these other symbols always
10199 ;; precede topmost-intro in the LANGELEMS list.
10201 ;; This function might do hidden buffer changes.
10202 (let ((indent 0) anchor
)
10205 (let* ((c-syntactic-element (car langelems
))
10206 (res (c-calc-offset c-syntactic-element
)))
10209 ;; Got an absolute column that overrides any indentation
10210 ;; we've collected so far, but not the relative
10211 ;; indentation we might get for the nested structures
10212 ;; further down the langelems list.
10213 (setq indent
(elt res
0)
10214 anchor
(point-min)) ; A position at column 0.
10216 ;; Got a relative change of the current calculated
10218 (setq indent
(+ indent res
))
10220 ;; Use the anchor position from the first syntactic
10221 ;; element with one.
10223 (setq anchor
(c-langelem-pos (car langelems
)))))
10225 (setq langelems
(cdr langelems
))))
10228 (+ indent
(save-excursion
10234 (cc-provide 'cc-engine
)
10236 ;; arch-tag: 149add18-4673-4da5-ac47-6805e4eae089
10237 ;;; cc-engine.el ends here