Mercurial > emacs
annotate lisp/progmodes/cc-engine.el @ 26475:7bd41cca7ed8
*** empty log message ***
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 17 Nov 1999 21:08:37 +0000 |
parents | 1dc57e616e8d |
children | 03befb219d03 |
rev | line source |
---|---|
18720 | 1 ;;; cc-engine.el --- core syntax guessing engine for CC mode |
2 | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
3 ;; Copyright (C) 1985,87,92,93,94,95,96,97,98 Free Software Foundation, Inc. |
18720 | 4 |
24282 | 5 ;; Authors: 1998 Barry A. Warsaw and Martin Stjernholm |
6 ;; 1992-1997 Barry A. Warsaw | |
18720 | 7 ;; 1987 Dave Detlefs and Stewart Clamen |
8 ;; 1985 Richard M. Stallman | |
24282 | 9 ;; Maintainer: bug-cc-mode@gnu.org |
18720 | 10 ;; Created: 22-Apr-1997 (split from cc-mode.el) |
20142 | 11 ;; Version: See cc-mode.el |
18720 | 12 ;; Keywords: c languages oop |
13 | |
14 ;; This file is part of GNU Emacs. | |
15 | |
16 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
17 ;; it under the terms of the GNU General Public License as published by | |
18 ;; the Free Software Foundation; either version 2, or (at your option) | |
19 ;; any later version. | |
20 | |
21 ;; GNU Emacs is distributed in the hope that it will be useful, | |
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
24 ;; GNU General Public License for more details. | |
25 | |
26 ;; You should have received a copy of the GNU General Public License | |
27 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
28 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
29 ;; Boston, MA 02111-1307, USA. | |
30 | |
31 | |
24282 | 32 (eval-when-compile |
33 (require 'cc-defs)) | |
34 | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
35 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
36 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
37 ;; better way should be implemented, but this will at least shut up |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
38 ;; the byte compiler. |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
39 (defvar c-maybe-labelp nil) |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
40 |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
41 ;; WARNING WARNING WARNING |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
42 ;; |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
43 ;; Be *exceptionally* careful about modifications to this function! |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
44 ;; Much of CC Mode depends on this Doing The Right Thing. If you |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
45 ;; break it you will be sorry. If you think you know how this works, |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
46 ;; you probably don't. No human on Earth does! :-) |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
47 ;; |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
48 ;; WARNING WARNING WARNING |
18720 | 49 |
50 (defun c-beginning-of-statement-1 (&optional lim) | |
51 ;; move to the start of the current statement, or the previous | |
52 ;; statement if already at the beginning of one. | |
53 (let ((firstp t) | |
54 (substmt-p t) | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
55 donep c-in-literal-cache saved |
18720 | 56 (last-begin (point))) |
57 ;; first check for bare semicolon | |
58 (if (and (progn (c-backward-syntactic-ws lim) | |
59 (eq (char-before) ?\;)) | |
60 (c-safe (progn (forward-char -1) | |
61 (setq saved (point)) | |
62 t)) | |
63 (progn (c-backward-syntactic-ws lim) | |
19251
6a7d40ec4b29
(c-beginning-of-statement-1): When checking for bare semi, don't match
Richard M. Stallman <rms@gnu.org>
parents:
18844
diff
changeset
|
64 (memq (char-before) '(?\; ?{ ?:))) |
18720 | 65 ) |
66 (setq last-begin saved) | |
67 (goto-char last-begin) | |
68 (while (not donep) | |
69 ;; stop at beginning of buffer | |
70 (if (bobp) (setq donep t) | |
71 ;; go backwards one balanced expression, but be careful of | |
72 ;; unbalanced paren being reached | |
24282 | 73 (if (not (c-safe (progn (c-backward-sexp 1) t))) |
18720 | 74 (progn |
75 (if firstp | |
76 (backward-up-list 1) | |
77 (goto-char last-begin)) | |
78 ;; skip over any unary operators, or other special | |
79 ;; characters appearing at front of identifier | |
80 (save-excursion | |
81 (c-backward-syntactic-ws lim) | |
24282 | 82 (skip-chars-backward "-+!*&:.~@ \t\n") |
18720 | 83 (if (eq (char-before) ?\() |
84 (setq last-begin (point)))) | |
85 (goto-char last-begin) | |
86 (setq last-begin (point) | |
87 donep t))) | |
88 | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
89 (setq c-maybe-labelp nil) |
18720 | 90 ;; see if we're in a literal. if not, then this bufpos may be |
91 ;; a candidate for stopping | |
92 (cond | |
93 ;; CASE 0: did we hit the error condition above? | |
94 (donep) | |
95 ;; CASE 1: are we in a literal? | |
96 ((eq (c-in-literal lim) 'pound) | |
97 (beginning-of-line)) | |
98 ;; CASE 2: some other kind of literal? | |
99 ((c-in-literal lim)) | |
100 ;; CASE 3: are we looking at a conditional keyword? | |
101 ((or (looking-at c-conditional-key) | |
102 (and (eq (char-after) ?\() | |
103 (save-excursion | |
24282 | 104 (c-forward-sexp 1) |
18720 | 105 (c-forward-syntactic-ws) |
106 (not (eq (char-after) ?\;))) | |
107 (let ((here (point)) | |
108 (foundp (progn | |
109 (c-backward-syntactic-ws lim) | |
110 (forward-word -1) | |
111 (and lim | |
112 (<= lim (point)) | |
113 (not (c-in-literal lim)) | |
20142 | 114 (not (eq (char-before) ?_)) |
18720 | 115 (looking-at c-conditional-key) |
116 )))) | |
117 ;; did we find a conditional? | |
118 (if (not foundp) | |
119 (goto-char here)) | |
120 foundp))) | |
121 ;; are we in the middle of an else-if clause? | |
122 (if (save-excursion | |
123 (and (not substmt-p) | |
24282 | 124 (c-safe (progn (c-forward-sexp -1) t)) |
18720 | 125 (looking-at "\\<else\\>[ \t\n]+\\<if\\>") |
126 (not (c-in-literal lim)))) | |
127 (progn | |
24282 | 128 (c-forward-sexp -1) |
18720 | 129 (c-backward-to-start-of-if lim))) |
130 ;; are we sitting at an else clause, that we are not a | |
131 ;; substatement of? | |
132 (if (and (not substmt-p) | |
133 (looking-at "\\<else\\>[^_]")) | |
134 (c-backward-to-start-of-if lim)) | |
24282 | 135 ;; a finally or a series of catches? |
136 (if (not substmt-p) | |
137 (while (looking-at "\\<\\(catch\\|finally\\)\\>[^_]") | |
138 (c-safe (c-backward-sexp 2)) | |
139 (if (eq (char-after) ?\() | |
140 (c-safe (c-backward-sexp))))) | |
18720 | 141 ;; are we sitting at the while of a do-while? |
142 (if (and (looking-at "\\<while\\>[^_]") | |
143 (c-backward-to-start-of-do lim)) | |
144 (setq substmt-p nil)) | |
145 (setq last-begin (point) | |
146 donep substmt-p)) | |
147 ;; CASE 4: are we looking at a label? | |
148 ((looking-at c-label-key)) | |
149 ;; CASE 5: is this the first time we're checking? | |
150 (firstp (setq firstp nil | |
151 substmt-p (not (c-crosses-statement-barrier-p | |
152 (point) last-begin)) | |
153 last-begin (point))) | |
154 ;; CASE 6: have we crossed a statement barrier? | |
24282 | 155 ((save-excursion |
156 ;; Move over in-expression blocks before checking the | |
157 ;; barrier | |
158 (if (or (memq (char-after) '(?\( ?\[)) | |
159 (and (eq (char-after) ?{) | |
160 (c-looking-at-inexpr-block lim))) | |
161 (c-forward-sexp 1)) | |
162 (c-crosses-statement-barrier-p (point) last-begin)) | |
18720 | 163 (setq donep t)) |
164 ;; CASE 7: ignore labels | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
165 ((and c-maybe-labelp |
18720 | 166 (or (and c-access-key (looking-at c-access-key)) |
167 ;; with switch labels, we have to go back further | |
168 ;; to try to pick up the case or default | |
169 ;; keyword. Potential bogosity alert: we assume | |
170 ;; `case' or `default' is first thing on line | |
171 (let ((here (point))) | |
172 (beginning-of-line) | |
173 (c-forward-syntactic-ws) | |
174 (if (looking-at c-switch-label-key) | |
175 t | |
176 (goto-char here) | |
177 nil)) | |
178 (looking-at c-label-key)))) | |
179 ;; CASE 8: ObjC or Java method def | |
180 ((and c-method-key | |
181 (setq last-begin (c-in-method-def-p))) | |
182 (setq donep t)) | |
183 ;; CASE 9: nothing special | |
184 (t (setq last-begin (point))) | |
185 )))) | |
186 (goto-char last-begin) | |
24282 | 187 ;; We always want to skip over the non-whitespace modifier |
188 ;; characters that can start a statement. | |
189 (let ((lim (point))) | |
190 (skip-chars-backward "-+!*&~@ \t\n" (c-point 'boi)) | |
191 (skip-chars-forward " \t\n" lim)))) | |
18720 | 192 |
193 (defun c-end-of-statement-1 () | |
19377
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
194 (condition-case nil |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
195 (let (beg end found) |
18720 | 196 (while (and (not (eobp)) |
19377
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
197 (progn |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
198 (setq beg (point)) |
24282 | 199 (c-forward-sexp 1) |
19377
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
200 (setq end (point)) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
201 (goto-char beg) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
202 (setq found nil) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
203 (while (and (not found) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
204 (re-search-forward "[;{}]" end t)) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
205 (if (not (c-in-literal beg)) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
206 (setq found t))) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
207 (not found))) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
208 (goto-char end)) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
209 (re-search-backward "[;{}]") |
18720 | 210 (forward-char 1)) |
19806
dc7a5df6e4b9
(c-end-of-statement-1): Wrap backward-up-list in a c-safe call so no
Richard M. Stallman <rms@gnu.org>
parents:
19377
diff
changeset
|
211 (error |
18720 | 212 (let ((beg (point))) |
19806
dc7a5df6e4b9
(c-end-of-statement-1): Wrap backward-up-list in a c-safe call so no
Richard M. Stallman <rms@gnu.org>
parents:
19377
diff
changeset
|
213 (c-safe (backward-up-list -1)) |
18720 | 214 (let ((end (point))) |
215 (goto-char beg) | |
19806
dc7a5df6e4b9
(c-end-of-statement-1): Wrap backward-up-list in a c-safe call so no
Richard M. Stallman <rms@gnu.org>
parents:
19377
diff
changeset
|
216 (search-forward ";" end 'move))) |
dc7a5df6e4b9
(c-end-of-statement-1): Wrap backward-up-list in a c-safe call so no
Richard M. Stallman <rms@gnu.org>
parents:
19377
diff
changeset
|
217 ))) |
18720 | 218 |
219 | |
220 (defun c-crosses-statement-barrier-p (from to) | |
221 ;; Does buffer positions FROM to TO cross a C statement boundary? | |
222 (let ((here (point)) | |
223 (lim from) | |
224 crossedp) | |
225 (condition-case () | |
226 (progn | |
227 (goto-char from) | |
228 (while (and (not crossedp) | |
229 (< (point) to)) | |
24282 | 230 (skip-chars-forward "^;{}:" (1- to)) |
18720 | 231 (if (not (c-in-literal lim)) |
232 (progn | |
233 (if (memq (char-after) '(?\; ?{ ?})) | |
234 (setq crossedp t) | |
235 (if (eq (char-after) ?:) | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
236 (setq c-maybe-labelp t)) |
18720 | 237 (forward-char 1)) |
238 (setq lim (point))) | |
239 (forward-char 1)))) | |
240 (error (setq crossedp nil))) | |
241 (goto-char here) | |
242 crossedp)) | |
243 | |
244 | |
245 ;; Skipping of "syntactic whitespace", defined as lexical whitespace, | |
246 ;; C and C++ style comments, and preprocessor directives. Search no | |
247 ;; farther back or forward than optional LIM. If LIM is omitted, | |
248 ;; `beginning-of-defun' is used for backward skipping, point-max is | |
249 ;; used for forward skipping. | |
250 | |
251 (defun c-forward-syntactic-ws (&optional lim) | |
252 ;; Forward skip of syntactic whitespace for Emacs 19. | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
253 (let* ((here (point-max)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
254 (hugenum (point-max))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
255 (while (/= here (point)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
256 (setq here (point)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
257 (forward-comment hugenum) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
258 ;; skip preprocessor directives |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
259 (when (and (eq (char-after) ?#) |
18720 | 260 (= (c-point 'boi) (point))) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
261 (while (eq (char-before (c-point 'eol)) ?\\) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
262 (forward-line 1)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
263 (end-of-line)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
264 ) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
265 (if lim (goto-char (min (point) lim))))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
266 |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
267 (defsubst c-beginning-of-macro (&optional lim) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
268 ;; Go to the beginning of a cpp macro definition. Leaves point at |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
269 ;; the beginning of the macro and returns t if in a cpp macro |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
270 ;; definition, otherwise returns nil and leaves point unchanged. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
271 ;; `lim' is currently ignored, but the interface requires it. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
272 (let ((here (point))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
273 (beginning-of-line) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
274 (while (eq (char-before (1- (point))) ?\\) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
275 (forward-line -1)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
276 (back-to-indentation) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
277 (if (eq (char-after) ?#) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
278 t |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
279 (goto-char here) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
280 nil))) |
18720 | 281 |
282 (defun c-backward-syntactic-ws (&optional lim) | |
283 ;; Backward skip over syntactic whitespace for Emacs 19. | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
284 (let* ((here (point-min)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
285 (hugenum (- (point-max)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
286 (while (/= here (point)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
287 (setq here (point)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
288 (forward-comment hugenum) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
289 (c-beginning-of-macro)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
290 (if lim (goto-char (max (point) lim))))) |
18720 | 291 |
292 | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
293 ;; Moving by tokens, where a token is defined as all symbols and |
24282 | 294 ;; identifiers which aren't syntactic whitespace (note that "->" is |
295 ;; considered to be two tokens). Point is always either left at the | |
296 ;; beginning of a token or not moved at all. COUNT specifies the | |
297 ;; number of tokens to move; a negative COUNT moves in the opposite | |
298 ;; direction. A COUNT of 0 moves to the next token beginning only if | |
299 ;; not already at one. If BALANCED is true, move over balanced | |
300 ;; parens, otherwise move into them. Also, if BALANCED is true, never | |
301 ;; move out of an enclosing paren. LIM sets the limit for the | |
302 ;; movement and defaults to the point limit. Returns the number of | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
303 ;; tokens left to move (positive or negative). If BALANCED is true, a |
24282 | 304 ;; move over a balanced paren counts as one. Note that if COUNT is 0 |
305 ;; and no appropriate token beginning is found, 1 will be returned. | |
306 ;; Thus, a return value of 0 guarantees that point is at the requested | |
307 ;; position and a return value less (without signs) than COUNT | |
308 ;; guarantees that point is at the beginning of some token. | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
309 |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
310 (defun c-forward-token-1 (&optional count balanced lim) |
24282 | 311 (or count (setq count 1)) |
312 (if (< count 0) | |
313 (- (c-backward-token-1 (- count) balanced lim)) | |
314 (let ((jump-syntax (if balanced | |
315 '(?w ?_ ?\( ?\) ?\" ?\\ ?/ ?$ ?') | |
316 '(?w ?_ ?\" ?\\ ?/ ?'))) | |
317 (last (point)) | |
318 (prev (point))) | |
319 (if (/= (point) | |
320 (progn (c-forward-syntactic-ws) (point))) | |
321 ;; Skip whitespace. Count this as a move if we did in fact | |
322 ;; move and aren't out of bounds. | |
323 (or (eobp) | |
324 (and lim (> (point) lim)) | |
325 (setq count (max (1- count) 0)))) | |
326 (if (and (= count 0) | |
327 (or (and (memq (char-syntax (or (char-after) ? )) '(?w ?_)) | |
328 (memq (char-syntax (or (char-before) ? )) '(?w ?_))) | |
329 (eobp))) | |
330 ;; If count is zero we should jump if in the middle of a | |
331 ;; token or if there is whitespace between point and the | |
332 ;; following token beginning. | |
333 (setq count 1)) | |
334 ;; Avoid having the limit tests inside the loop. | |
335 (save-restriction | |
336 (if lim (narrow-to-region (point-min) lim)) | |
337 (if (eobp) | |
338 (goto-char last) | |
339 (condition-case nil | |
340 (while (> count 0) | |
341 (setq prev last | |
342 last (point)) | |
343 (if (memq (char-syntax (char-after)) jump-syntax) | |
344 (goto-char (scan-sexps (point) 1)) | |
345 (forward-char)) | |
346 (c-forward-syntactic-ws lim) | |
347 (setq count (1- count))) | |
348 (error (goto-char last))) | |
349 (when (eobp) | |
350 (goto-char prev) | |
351 (setq count (1+ count))))) | |
352 count))) | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
353 |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
354 (defun c-backward-token-1 (&optional count balanced lim) |
24282 | 355 (or count (setq count 1)) |
356 (if (< count 0) | |
357 (- (c-forward-token-1 (- count) balanced lim)) | |
358 (let ((jump-syntax (if balanced | |
359 '(?w ?_ ?\( ?\) ?\" ?\\ ?/ ?$ ?') | |
360 '(?w ?_ ?\" ?\\ ?/ ?'))) | |
361 last) | |
362 (if (and (= count 0) | |
363 (or (and (memq (char-syntax (or (char-after) ? )) '(?w ?_)) | |
364 (memq (char-syntax (or (char-before) ? )) '(?w ?_))) | |
365 (/= (point) | |
366 (save-excursion (c-forward-syntactic-ws) (point))) | |
367 (eobp))) | |
368 ;; If count is zero we should jump if in the middle of a | |
369 ;; token or if there is whitespace between point and the | |
370 ;; following token beginning. | |
371 (setq count 1)) | |
372 ;; Avoid having the limit tests inside the loop. | |
373 (save-restriction | |
374 (if lim (narrow-to-region lim (point-max))) | |
375 (or (bobp) | |
376 (progn | |
377 (condition-case nil | |
378 (while (progn | |
379 (setq last (point)) | |
380 (> count 0)) | |
381 (c-backward-syntactic-ws lim) | |
382 (if (memq (char-syntax (char-before)) jump-syntax) | |
383 (goto-char (scan-sexps (point) -1)) | |
384 (backward-char)) | |
385 (setq count (1- count))) | |
386 (error (goto-char last))) | |
387 (if (bobp) (goto-char last))))) | |
388 count))) | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
389 |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
390 |
18720 | 391 ;; Return `c' if in a C-style comment, `c++' if in a C++ style |
392 ;; comment, `string' if in a string literal, `pound' if on a | |
393 ;; preprocessor line, or nil if not in a comment at all. Optional LIM | |
394 ;; is used as the backward limit of the search. If omitted, or nil, | |
395 ;; `beginning-of-defun' is used." | |
396 | |
397 (defun c-in-literal (&optional lim) | |
398 ;; Determine if point is in a C++ literal. we cache the last point | |
399 ;; calculated if the cache is enabled | |
400 (if (and (boundp 'c-in-literal-cache) | |
401 c-in-literal-cache | |
402 (= (point) (aref c-in-literal-cache 0))) | |
403 (aref c-in-literal-cache 1) | |
404 (let ((rtn (save-excursion | |
405 (let* ((lim (or lim (c-point 'bod))) | |
406 (state (parse-partial-sexp lim (point)))) | |
407 (cond | |
408 ((nth 3 state) 'string) | |
409 ((nth 4 state) (if (nth 7 state) 'c++ 'c)) | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
410 ((c-beginning-of-macro lim) 'pound) |
18720 | 411 (t nil)))))) |
412 ;; cache this result if the cache is enabled | |
413 (and (boundp 'c-in-literal-cache) | |
414 (setq c-in-literal-cache (vector (point) rtn))) | |
415 rtn))) | |
416 | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
417 ;; XEmacs has a built-in function that should make this much quicker. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
418 ;; I don't think we even need the cache, which makes our lives more |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
419 ;; complicated anyway. In this case, lim is ignored. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
420 (defun c-fast-in-literal (&optional lim) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
421 (let ((context (buffer-syntactic-context))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
422 (cond |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
423 ((eq context 'string) 'string) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
424 ((eq context 'comment) 'c++) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
425 ((eq context 'block-comment) 'c) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
426 ((save-excursion (c-beginning-of-macro lim)) 'pound)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
427 |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
428 (if (fboundp 'buffer-syntactic-context) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
429 (defalias 'c-in-literal 'c-fast-in-literal)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
430 |
24282 | 431 (defun c-literal-limits (&optional lim near) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
432 ;; Returns a cons of the beginning and end positions of the comment |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
433 ;; or string surrounding point (including both delimiters), or nil |
24282 | 434 ;; if point isn't in one. If LIM is non-nil, it's used as the |
435 ;; "safe" position to start parsing from. If NEAR is non-nil, then | |
436 ;; the limits of any literal next to point is returned. "Next to" | |
437 ;; means there's only [ \t] between point and the literal. The | |
438 ;; search for such a literal is done first in forward direction. | |
439 ;; | |
440 ;; This is the Emacs 19 version. | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
441 (save-excursion |
24282 | 442 (let* ((pos (point)) |
443 (lim (or lim (c-point 'bod))) | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
444 (state (parse-partial-sexp lim (point)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
445 (cond ((nth 3 state) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
446 ;; String. Search backward for the start. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
447 (while (nth 3 state) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
448 (search-backward (make-string 1 (nth 3 state))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
449 (setq state (parse-partial-sexp lim (point)))) |
24282 | 450 (cons (point) (or (c-safe (c-forward-sexp 1) (point)) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
451 (point-max)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
452 ((nth 7 state) |
24282 | 453 ;; Line comment. Search from bol for the comment starter. |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
454 (beginning-of-line) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
455 (setq state (parse-partial-sexp lim (point)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
456 lim (point)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
457 (while (not (nth 7 state)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
458 (search-forward "//") ; Should never fail. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
459 (setq state (parse-partial-sexp |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
460 lim (point) nil nil state) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
461 lim (point))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
462 (backward-char 2) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
463 (cons (point) (progn (forward-comment 1) (point)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
464 ((nth 4 state) |
24282 | 465 ;; Block comment. Search backward for the comment starter. |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
466 (while (nth 4 state) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
467 (search-backward "/*") ; Should never fail. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
468 (setq state (parse-partial-sexp lim (point)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
469 (cons (point) (progn (forward-comment 1) (point)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
470 ((c-safe (nth 4 (parse-partial-sexp ; Can't use prev state due |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
471 lim (1+ (point))))) ; to bug in Emacs 19.34. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
472 ;; We're standing in a comment starter. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
473 (backward-char 2) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
474 (cons (point) (progn (forward-comment 1) (point)))) |
24282 | 475 (near |
476 (goto-char pos) | |
477 ;; Search forward for a literal. | |
478 (skip-chars-forward " \t") | |
479 (cond | |
480 ((eq (char-syntax (or (char-after) ?\ )) ?\") ; String. | |
481 (cons (point) (or (c-safe (c-forward-sexp 1) (point)) | |
482 (point-max)))) | |
483 ((looking-at "/[/*]") ; Line or block comment. | |
484 (cons (point) (progn (forward-comment 1) (point)))) | |
485 (t | |
486 ;; Search backward. | |
487 (skip-chars-backward " \t") | |
488 (let ((end (point)) beg) | |
489 (cond | |
490 ((eq (char-syntax (or (char-before) ?\ )) ?\") ; String. | |
491 (setq beg (c-safe (c-backward-sexp 1) (point)))) | |
492 ((and (c-safe (forward-char -2) t) | |
493 (looking-at "*/")) | |
494 ;; Block comment. Due to the nature of line | |
495 ;; comments, they will always be covered by the | |
496 ;; normal case above. | |
497 (goto-char end) | |
498 (forward-comment -1) | |
499 ;; If LIM is bogus, beg will be bogus. | |
500 (setq beg (point)))) | |
501 (if beg (cons beg end)))))) | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
502 )))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
503 |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
504 (defun c-literal-limits-fast (&optional lim) |
24282 | 505 ;; Like c-literal-limits, but for emacsen whose `parse-partial-sexp' |
506 ;; returns the pos of the comment start. FIXME: Add NEAR. | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
507 (save-excursion |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
508 (let ((state (parse-partial-sexp lim (point)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
509 (cond ((nth 3 state) ; String. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
510 (goto-char (nth 8 state)) |
24282 | 511 (cons (point) (or (c-safe (c-forward-sexp 1) (point)) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
512 (point-max)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
513 ((nth 4 state) ; Comment. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
514 (goto-char (nth 8 state)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
515 (cons (point) (progn (forward-comment 1) (point)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
516 ((c-safe |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
517 (nth 4 (parse-partial-sexp ; Works? |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
518 (point) (1+ (point)) nil nil state))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
519 ;; We're in a comment starter. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
520 (backward-char 2) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
521 (cons (point) (progn (forward-comment 1) (point)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
522 )))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
523 |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
524 (defun c-collect-line-comments (range) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
525 ;; If the argument is a cons of two buffer positions (such as |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
526 ;; returned by c-literal-limits), and that range contains a C++ |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
527 ;; style line comment, then an extended range is returned that |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
528 ;; contains all adjacent line comments (i.e. all comments that |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
529 ;; starts in the same column with no empty lines or non-whitespace |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
530 ;; characters between them). Otherwise the argument is returned. |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
531 (save-excursion |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
532 (condition-case nil |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
533 (if (and (consp range) (progn |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
534 (goto-char (car range)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
535 (looking-at "//"))) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
536 (let ((col (current-column)) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
537 (beg (point)) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
538 (end (cdr range))) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
539 (while (and (not (bobp)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
540 (forward-comment -1) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
541 (looking-at "//") |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
542 (= col (current-column))) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
543 (setq beg (point))) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
544 (goto-char end) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
545 (while (progn |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
546 (skip-chars-forward " \t") |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
547 (and (looking-at "//") |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
548 (= col (current-column)))) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
549 (forward-comment 1) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
550 (setq end (point))) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
551 (cons beg end)) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
552 range) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
553 (error range)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
554 |
24282 | 555 (defun c-literal-type (range) |
556 ;; Convenience function that given the result of c-literal-limits, | |
557 ;; returns nil or the type of literal that the range surrounds. | |
558 ;; It's much faster than using c-in-literal and is intended to be | |
559 ;; used when you need both the type of a literal and its limits. | |
560 (if (consp range) | |
561 (save-excursion | |
562 (goto-char (car range)) | |
563 (cond ((eq (char-syntax (or (char-after) ?\ )) ?\") 'string) | |
564 ((looking-at "//") 'c++) | |
565 (t 'c))) ; Assuming the range is valid. | |
566 range)) | |
567 | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
568 |
18720 | 569 |
570 ;; utilities for moving and querying around syntactic elements | |
571 (defvar c-parsing-error nil) | |
572 | |
573 (defun c-parse-state () | |
574 ;; Finds and records all open parens between some important point | |
575 ;; earlier in the file and point. | |
576 ;; | |
577 ;; if there's a state cache, return it | |
578 (setq c-parsing-error nil) | |
579 (if (boundp 'c-state-cache) c-state-cache | |
580 (let* (at-bob | |
581 (pos (save-excursion | |
582 ;; go back 2 bods, but ignore any bogus positions | |
583 ;; returned by beginning-of-defun (i.e. open paren | |
584 ;; in column zero) | |
585 (let ((cnt 2)) | |
586 (while (not (or at-bob (zerop cnt))) | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
587 (goto-char (c-point 'bod)) |
24282 | 588 (if (and |
589 (eq (char-after) ?\{) | |
590 ;; The following catches an obscure special | |
591 ;; case where the brace is preceded by an | |
592 ;; open paren. That can only legally occur | |
593 ;; with blocks inside expressions and in | |
594 ;; Pike special brace lists. Even so, this | |
595 ;; test is still bogus then, but hopefully | |
596 ;; good enough. (We don't want to use | |
597 ;; up-list here since it might be slow.) | |
598 (save-excursion | |
599 (c-backward-syntactic-ws) | |
600 (not (eq (char-before) ?\()))) | |
18720 | 601 (setq cnt (1- cnt))) |
602 (if (bobp) | |
603 (setq at-bob t)))) | |
604 (point))) | |
605 (here (save-excursion | |
606 ;;(skip-chars-forward " \t}") | |
607 (point))) | |
608 (last-bod pos) (last-pos pos) | |
609 placeholder state sexp-end) | |
610 ;; cache last bod position | |
611 (while (catch 'backup-bod | |
612 (setq state nil) | |
613 (while (and pos (< pos here)) | |
614 (setq last-pos pos) | |
615 (if (and (setq pos (c-safe (scan-lists pos 1 -1))) | |
616 (<= pos here)) | |
617 (progn | |
618 (setq sexp-end (c-safe (scan-sexps (1- pos) 1))) | |
619 (if (and sexp-end | |
620 (<= sexp-end here)) | |
621 ;; we want to record both the start and end | |
622 ;; of this sexp, but we only want to record | |
623 ;; the last-most of any of them before here | |
624 (progn | |
625 (if (eq (char-after (1- pos)) ?\{) | |
626 (setq state (cons (cons (1- pos) sexp-end) | |
627 (if (consp (car state)) | |
628 (cdr state) | |
629 state)))) | |
630 (setq pos sexp-end)) | |
631 ;; we're contained in this sexp so put pos on | |
632 ;; front of list | |
633 (setq state (cons (1- pos) state)))) | |
634 ;; something bad happened. check to see if we | |
635 ;; crossed an unbalanced close brace. if so, we | |
636 ;; didn't really find the right `important bufpos' | |
637 ;; so lets back up and try again | |
638 (if (and (not pos) (not at-bob) | |
639 (setq placeholder | |
640 (c-safe (scan-lists last-pos 1 1))) | |
641 ;;(char-after (1- placeholder)) | |
642 (<= placeholder here) | |
643 (eq (char-after (1- placeholder)) ?\})) | |
644 (while t | |
645 (setq last-bod (c-safe (scan-lists last-bod -1 1))) | |
646 (if (not last-bod) | |
647 (progn | |
648 ;; bogus, but what can we do here? | |
649 (setq c-parsing-error (1- placeholder)) | |
650 (throw 'backup-bod nil)) | |
651 (setq at-bob (= last-bod (point-min)) | |
652 pos last-bod) | |
653 (if (= (char-after last-bod) ?\{) | |
654 (throw 'backup-bod t))) | |
655 )) ;end-if | |
656 )) ;end-while | |
657 nil)) | |
658 state))) | |
659 | |
660 (defun c-whack-state (bufpos state) | |
661 ;; whack off any state information that appears on STATE which lies | |
662 ;; after the bounds of BUFPOS. | |
663 (let (newstate car) | |
664 (while state | |
665 (setq car (car state) | |
666 state (cdr state)) | |
667 (if (consp car) | |
668 ;; just check the car, because in a balanced brace | |
669 ;; expression, it must be impossible for the corresponding | |
670 ;; close brace to be before point, but the open brace to be | |
671 ;; after. | |
672 (if (<= bufpos (car car)) | |
673 nil ; whack it off | |
674 ;; its possible that the open brace is before bufpos, but | |
675 ;; the close brace is after. In that case, convert this | |
676 ;; to a non-cons element. | |
677 (if (<= bufpos (cdr car)) | |
678 (setq newstate (append newstate (list (car car)))) | |
679 ;; we know that both the open and close braces are | |
680 ;; before bufpos, so we also know that everything else | |
681 ;; on state is before bufpos, so we can glom up the | |
682 ;; whole thing and exit. | |
683 (setq newstate (append newstate (list car) state) | |
684 state nil))) | |
685 (if (<= bufpos car) | |
686 nil ; whack it off | |
687 ;; it's before bufpos, so everything else should too | |
688 (setq newstate (append newstate (list car) state) | |
689 state nil)))) | |
690 newstate)) | |
691 | |
692 (defun c-hack-state (bufpos which state) | |
693 ;; Using BUFPOS buffer position, and WHICH (must be 'open or | |
694 ;; 'close), hack the c-parse-state STATE and return the results. | |
695 (if (eq which 'open) | |
696 (let ((car (car state))) | |
697 (if (or (null car) | |
698 (consp car) | |
699 (/= bufpos car)) | |
700 (cons bufpos state) | |
701 state)) | |
702 (if (not (eq which 'close)) | |
703 (error "c-hack-state, bad argument: %s" which)) | |
704 ;; 'close brace | |
705 (let ((car (car state)) | |
706 (cdr (cdr state))) | |
707 (if (consp car) | |
708 (setq car (car cdr) | |
709 cdr (cdr cdr))) | |
710 ;; TBD: is this test relevant??? | |
711 (if (consp car) | |
712 state ;on error, don't change | |
713 ;; watch out for balanced expr already on cdr of list | |
714 (cons (cons car bufpos) | |
715 (if (consp (car cdr)) | |
716 (cdr cdr) cdr)) | |
717 )))) | |
718 | |
719 (defun c-adjust-state (from to shift state) | |
720 ;; Adjust all points in state that lie in the region FROM..TO by | |
24282 | 721 ;; SHIFT amount. |
18720 | 722 (mapcar |
723 (function | |
724 (lambda (e) | |
725 (if (consp e) | |
726 (let ((car (car e)) | |
727 (cdr (cdr e))) | |
728 (if (and (<= from car) (< car to)) | |
729 (setcar e (+ shift car))) | |
730 (if (and (<= from cdr) (< cdr to)) | |
731 (setcdr e (+ shift cdr)))) | |
732 (if (and (<= from e) (< e to)) | |
733 (setq e (+ shift e)))) | |
734 e)) | |
735 state)) | |
736 | |
737 | |
738 (defun c-beginning-of-inheritance-list (&optional lim) | |
739 ;; Go to the first non-whitespace after the colon that starts a | |
740 ;; multiple inheritance introduction. Optional LIM is the farthest | |
741 ;; back we should search. | |
742 (let ((lim (or lim (c-point 'bod))) | |
743 (placeholder (progn | |
744 (back-to-indentation) | |
745 (point)))) | |
746 (c-backward-syntactic-ws lim) | |
747 (while (and (> (point) lim) | |
748 (memq (char-before) '(?, ?:)) | |
749 (progn | |
750 (beginning-of-line) | |
751 (setq placeholder (point)) | |
752 (skip-chars-forward " \t") | |
753 (not (looking-at c-class-key)) | |
754 )) | |
755 (c-backward-syntactic-ws lim)) | |
756 (goto-char placeholder) | |
757 (skip-chars-forward "^:" (c-point 'eol)))) | |
758 | |
759 (defun c-in-method-def-p () | |
760 ;; Return nil if we aren't in a method definition, otherwise the | |
761 ;; position of the initial [+-]. | |
762 (save-excursion | |
763 (beginning-of-line) | |
764 (and c-method-key | |
765 (looking-at c-method-key) | |
766 (point)) | |
767 )) | |
768 | |
24335
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
769 (defun c-at-toplevel-p () |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
770 "Return a determination as to whether point is at the `top-level'. |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
771 Being at the top-level means that point is either outside any |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
772 enclosing block (such function definition), or inside a class |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
773 definition, but outside any method blocks. |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
774 |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
775 If point is not at the top-level (e.g. it is inside a method |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
776 definition), then nil is returned. Otherwise, if point is at a |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
777 top-level not enclosed within a class definition, t is returned. |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
778 Otherwise, a 2-vector is returned where the zeroth element is the |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
779 buffer position of the start of the class declaration, and the first |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
780 element is the buffer position of the enclosing class's opening |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
781 brace." |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
782 (let ((state (c-parse-state))) |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
783 (or (not (c-most-enclosing-brace state)) |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
784 (c-search-uplist-for-classkey state)))) |
0c4688f9a396
Added c-at-toplevel-p for font-lock.el.
Simon Marshall <simon@gnu.org>
parents:
24282
diff
changeset
|
785 |
18720 | 786 (defun c-just-after-func-arglist-p (&optional containing) |
787 ;; Return t if we are between a function's argument list closing | |
788 ;; paren and its opening brace. Note that the list close brace | |
789 ;; could be followed by a "const" specifier or a member init hanging | |
790 ;; colon. Optional CONTAINING is position of containing s-exp open | |
791 ;; brace. If not supplied, point is used as search start. | |
792 (save-excursion | |
793 (c-backward-syntactic-ws) | |
794 (let ((checkpoint (or containing (point)))) | |
795 (goto-char checkpoint) | |
796 ;; could be looking at const specifier | |
797 (if (and (eq (char-before) ?t) | |
798 (forward-word -1) | |
799 (looking-at "\\<const\\>")) | |
800 (c-backward-syntactic-ws) | |
801 ;; otherwise, we could be looking at a hanging member init | |
802 ;; colon | |
803 (goto-char checkpoint) | |
804 (if (and (eq (char-before) ?:) | |
805 (progn | |
806 (forward-char -1) | |
807 (c-backward-syntactic-ws) | |
808 (looking-at "[ \t\n]*:\\([^:]+\\|$\\)"))) | |
809 nil | |
810 (goto-char checkpoint)) | |
811 ) | |
812 (and (eq (char-before) ?\)) | |
813 ;; check if we are looking at a method def | |
814 (or (not c-method-key) | |
815 (progn | |
24282 | 816 (c-forward-sexp -1) |
18720 | 817 (forward-char -1) |
818 (c-backward-syntactic-ws) | |
819 (not (or (memq (char-before) '(?- ?+)) | |
820 ;; or a class category | |
821 (progn | |
24282 | 822 (c-forward-sexp -2) |
18720 | 823 (looking-at c-class-key)) |
824 ))))) | |
825 ))) | |
826 | |
827 ;; defuns to look backwards for things | |
828 (defun c-backward-to-start-of-do (&optional lim) | |
829 ;; Move to the start of the last "unbalanced" do expression. | |
830 ;; Optional LIM is the farthest back to search. If none is found, | |
831 ;; nil is returned and point is left unchanged, otherwise t is returned. | |
832 (let ((do-level 1) | |
833 (case-fold-search nil) | |
834 (lim (or lim (c-point 'bod))) | |
835 (here (point)) | |
836 foundp) | |
837 (while (not (zerop do-level)) | |
838 ;; we protect this call because trying to execute this when the | |
839 ;; while is not associated with a do will throw an error | |
840 (condition-case nil | |
841 (progn | |
24282 | 842 (c-backward-sexp 1) |
18720 | 843 (cond |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
844 ;; break infloop for illegal C code |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
845 ((bobp) (setq do-level 0)) |
18720 | 846 ((memq (c-in-literal lim) '(c c++))) |
847 ((looking-at "while\\b[^_]") | |
848 (setq do-level (1+ do-level))) | |
849 ((looking-at "do\\b[^_]") | |
850 (if (zerop (setq do-level (1- do-level))) | |
851 (setq foundp t))) | |
852 ((<= (point) lim) | |
853 (setq do-level 0) | |
854 (goto-char lim)))) | |
855 (error | |
856 (goto-char lim) | |
857 (setq do-level 0)))) | |
858 (if (not foundp) | |
859 (goto-char here)) | |
860 foundp)) | |
861 | |
862 (defun c-backward-to-start-of-if (&optional lim) | |
863 ;; Move to the start of the last "unbalanced" if and return t. If | |
864 ;; none is found, and we are looking at an if clause, nil is | |
865 ;; returned. If none is found and we are looking at an else clause, | |
866 ;; an error is thrown. | |
867 (let ((if-level 1) | |
868 (here (c-point 'bol)) | |
869 (case-fold-search nil) | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
870 (lim (or (and (>= (point) lim) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
871 lim) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
872 (c-point 'bod))) |
18720 | 873 (at-if (looking-at "if\\b[^_]"))) |
874 (catch 'orphan-if | |
875 (while (and (not (bobp)) | |
876 (not (zerop if-level))) | |
877 (c-backward-syntactic-ws) | |
878 (condition-case nil | |
24282 | 879 (c-backward-sexp 1) |
18720 | 880 (error |
881 (if at-if | |
882 (throw 'orphan-if nil) | |
883 (error "No matching `if' found for `else' on line %d." | |
884 (1+ (count-lines 1 here)))))) | |
885 (cond | |
886 ((looking-at "else\\b[^_]") | |
887 (setq if-level (1+ if-level))) | |
888 ((looking-at "if\\b[^_]") | |
889 ;; check for else if... skip over | |
890 (let ((here (point))) | |
24282 | 891 (c-safe (c-forward-sexp -1)) |
18720 | 892 (if (looking-at "\\<else\\>[ \t]+\\<if\\>") |
893 nil | |
894 (setq if-level (1- if-level)) | |
895 (goto-char here)))) | |
896 ((< (point) lim) | |
897 (setq if-level 0) | |
898 (goto-char lim)) | |
899 )) | |
900 t))) | |
901 | |
902 (defun c-skip-conditional () | |
903 ;; skip forward over conditional at point, including any predicate | |
904 ;; statements in parentheses. No error checking is performed. | |
24282 | 905 (c-forward-sexp (cond |
906 ;; else if() | |
907 ((looking-at "\\<else\\>[ \t]+\\<if\\>") 3) | |
908 ;; do, else, try, finally | |
909 ((looking-at "\\<\\(do\\|else\\|try\\|finally\\)\\>") 1) | |
910 ;; for, if, while, switch, catch, synchronized | |
911 (t 2)))) | |
18720 | 912 |
913 (defun c-skip-case-statement-forward (state &optional lim) | |
914 ;; skip forward over case/default bodies, with optional maximal | |
915 ;; limit. if no next case body is found, nil is returned and point | |
916 ;; is not moved | |
917 (let ((lim (or lim (point-max))) | |
918 (here (point)) | |
919 donep foundp bufpos | |
920 (safepos (point)) | |
921 (balanced (car state))) | |
922 ;; search until we've passed the limit, or we've found our match | |
923 (while (and (< (point) lim) | |
924 (not donep)) | |
925 (setq safepos (point)) | |
926 ;; see if we can find a case statement, not in a literal | |
927 (if (and (re-search-forward c-switch-label-key lim 'move) | |
928 (setq bufpos (match-beginning 0)) | |
929 (not (c-in-literal safepos)) | |
930 (/= bufpos here)) | |
931 ;; if we crossed into a balanced sexp, we know the case is | |
932 ;; not part of our switch statement, so just bound over the | |
933 ;; sexp and keep looking. | |
934 (if (and (consp balanced) | |
935 (> bufpos (car balanced)) | |
936 (< bufpos (cdr balanced))) | |
937 (goto-char (cdr balanced)) | |
938 (goto-char bufpos) | |
939 (setq donep t | |
940 foundp t)))) | |
941 (if (not foundp) | |
942 (goto-char here)) | |
943 foundp)) | |
944 | |
945 (defun c-search-uplist-for-classkey (brace-state) | |
946 ;; search for the containing class, returning a 2 element vector if | |
24282 | 947 ;; found. aref 0 contains the bufpos of the boi of the class key |
948 ;; line, and aref 1 contains the bufpos of the open brace. | |
18720 | 949 (if (null brace-state) |
950 ;; no brace-state means we cannot be inside a class | |
951 nil | |
952 (let ((carcache (car brace-state)) | |
953 search-start search-end) | |
954 (if (consp carcache) | |
955 ;; a cons cell in the first element means that there is some | |
956 ;; balanced sexp before the current bufpos. this we can | |
957 ;; ignore. the nth 1 and nth 2 elements define for us the | |
958 ;; search boundaries | |
959 (setq search-start (nth 2 brace-state) | |
960 search-end (nth 1 brace-state)) | |
961 ;; if the car was not a cons cell then nth 0 and nth 1 define | |
962 ;; for us the search boundaries | |
963 (setq search-start (nth 1 brace-state) | |
964 search-end (nth 0 brace-state))) | |
965 ;; search-end cannot be a cons cell | |
966 (and (consp search-end) | |
967 (error "consp search-end: %s" search-end)) | |
968 ;; if search-end is nil, or if the search-end character isn't an | |
969 ;; open brace, we are definitely not in a class | |
970 (if (or (not search-end) | |
971 (< search-end (point-min)) | |
972 (not (eq (char-after search-end) ?{))) | |
973 nil | |
974 ;; now, we need to look more closely at search-start. if | |
975 ;; search-start is nil, then our start boundary is really | |
976 ;; point-min. | |
977 (if (not search-start) | |
978 (setq search-start (point-min)) | |
979 ;; if search-start is a cons cell, then we can start | |
980 ;; searching from the end of the balanced sexp just ahead of | |
981 ;; us | |
982 (if (consp search-start) | |
983 (setq search-start (cdr search-start)))) | |
984 ;; now we can do a quick regexp search from search-start to | |
985 ;; search-end and see if we can find a class key. watch for | |
986 ;; class like strings in literals | |
987 (save-excursion | |
988 (save-restriction | |
989 (goto-char search-start) | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
990 (let ((search-key (concat c-class-key "\\|" c-extra-toplevel-key)) |
18720 | 991 foundp class match-end) |
24282 | 992 (if c-inexpr-class-key |
993 (setq search-key (concat search-key "\\|" | |
994 c-inexpr-class-key))) | |
18720 | 995 (while (and (not foundp) |
996 (progn | |
997 (c-forward-syntactic-ws) | |
998 (> search-end (point))) | |
999 (re-search-forward search-key search-end t)) | |
1000 (setq class (match-beginning 0) | |
1001 match-end (match-end 0)) | |
1002 (if (c-in-literal search-start) | |
1003 nil ; its in a comment or string, ignore | |
1004 (goto-char class) | |
1005 (skip-chars-forward " \t\n") | |
1006 (setq foundp (vector (c-point 'boi) search-end)) | |
1007 (cond | |
1008 ;; check for embedded keywords | |
1009 ((let ((char (char-after (1- class)))) | |
1010 (and char | |
1011 (memq (char-syntax char) '(?w ?_)))) | |
1012 (goto-char match-end) | |
1013 (setq foundp nil)) | |
1014 ;; make sure we're really looking at the start of a | |
1015 ;; class definition, and not a forward decl, return | |
1016 ;; arg, template arg list, or an ObjC or Java method. | |
1017 ((and c-method-key | |
24282 | 1018 (re-search-forward c-method-key search-end t) |
1019 (not (c-in-literal class))) | |
18720 | 1020 (setq foundp nil)) |
24282 | 1021 ;; Check if this is an anonymous inner class. |
1022 ((and c-inexpr-class-key | |
1023 (looking-at c-inexpr-class-key)) | |
1024 (while (and (= (c-forward-token-1 1 t) 0) | |
1025 (looking-at "(\\|\\w\\|\\s_\\|\\."))) | |
1026 (if (eq (point) search-end) | |
1027 ;; We're done. Just trap this case in the cond. | |
1028 nil | |
1029 ;; False alarm; all conditions aren't satisfied. | |
1030 (setq foundp nil))) | |
18720 | 1031 ;; Its impossible to define a regexp for this, and |
1032 ;; nearly so to do it programmatically. | |
1033 ;; | |
1034 ;; ; picks up forward decls | |
1035 ;; = picks up init lists | |
1036 ;; ) picks up return types | |
1037 ;; > picks up templates, but remember that we can | |
1038 ;; inherit from templates! | |
1039 ((let ((skipchars "^;=)")) | |
1040 ;; try to see if we found the `class' keyword | |
1041 ;; inside a template arg list | |
1042 (save-excursion | |
1043 (skip-chars-backward "^<>" search-start) | |
1044 (if (eq (char-before) ?<) | |
1045 (setq skipchars (concat skipchars ">")))) | |
24282 | 1046 (while (progn |
1047 (skip-chars-forward skipchars search-end) | |
1048 (c-in-literal class)) | |
1049 (forward-char)) | |
18720 | 1050 (/= (point) search-end)) |
1051 (setq foundp nil)) | |
1052 ))) | |
1053 foundp)) | |
1054 ))))) | |
1055 | |
1056 (defun c-inside-bracelist-p (containing-sexp brace-state) | |
1057 ;; return the buffer position of the beginning of the brace list | |
1058 ;; statement if we're inside a brace list, otherwise return nil. | |
1059 ;; CONTAINING-SEXP is the buffer pos of the innermost containing | |
1060 ;; paren. BRACE-STATE is the remainder of the state of enclosing braces | |
1061 ;; | |
1062 ;; N.B.: This algorithm can potentially get confused by cpp macros | |
1063 ;; places in inconvenient locations. Its a trade-off we make for | |
1064 ;; speed. | |
1065 (or | |
1066 ;; this will pick up enum lists | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1067 (c-safe |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1068 (save-excursion |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1069 (goto-char containing-sexp) |
24282 | 1070 (c-forward-sexp -1) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1071 (let (bracepos) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1072 (if (and (or (looking-at "enum[\t\n ]+") |
24282 | 1073 (progn (c-forward-sexp -1) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1074 (looking-at "enum[\t\n ]+"))) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1075 (setq bracepos (c-safe (scan-lists (point) 1 -1))) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1076 (not (c-crosses-statement-barrier-p (point) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1077 (- bracepos 2)))) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1078 (point))))) |
18720 | 1079 ;; this will pick up array/aggregate init lists, even if they are nested. |
1080 (save-excursion | |
24282 | 1081 (let ((class-key |
1082 ;; Pike can have class definitions anywhere, so we must | |
1083 ;; check for the class key here. | |
1084 (and (c-major-mode-is 'pike-mode) | |
1085 (concat c-class-key "\\|" c-extra-toplevel-key))) | |
1086 bufpos lim braceassignp) | |
18720 | 1087 (while (and (not bufpos) |
1088 containing-sexp) | |
1089 (if (consp containing-sexp) | |
1090 (setq containing-sexp (car brace-state) | |
1091 brace-state (cdr brace-state)) | |
1092 (goto-char containing-sexp) | |
24282 | 1093 (if (c-looking-at-inexpr-block) |
1094 ;; We're in an in-expression block of some kind. Do | |
1095 ;; not check nesting. | |
1096 (setq containing-sexp nil) | |
1097 ;; see if the open brace is preceded by = or [...] in | |
1098 ;; this statement, but watch out for operator= | |
1099 (setq lim (if (consp (car brace-state)) | |
1100 (cdr (car brace-state)) | |
1101 (car brace-state)) | |
1102 braceassignp 'dontknow) | |
25178
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1103 (c-backward-token-1 1 t lim) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1104 ;; Checks to do only on the first sexp before the brace. |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1105 (when (and (c-major-mode-is 'java-mode) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1106 (eq (char-after) ?\[)) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1107 ;; In Java, an initialization brace list may follow |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1108 ;; directly after "new Foo[]", so check for a "new" |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1109 ;; earlier. |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1110 (while (eq braceassignp 'dontknow) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1111 (setq braceassignp |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1112 (cond ((/= (c-backward-token-1 1 t lim) 0) nil) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1113 ((looking-at "new\\>") t) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1114 ((looking-at "\\sw\\|\\s_\\|[.[]") |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1115 ;; Carry on looking if this is an |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1116 ;; identifier (may contain "." in Java) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1117 ;; or another "[]" sexp. |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1118 'dontknow) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1119 (t nil))))) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1120 ;; Checks to do on all sexps before the brace, up to the |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1121 ;; beginning of the statement. |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1122 (while (eq braceassignp 'dontknow) |
24282 | 1123 (cond ((eq (char-after) ?\;) |
1124 (setq braceassignp nil)) | |
1125 ((and class-key | |
1126 (looking-at class-key)) | |
1127 (setq braceassignp nil)) | |
1128 ((eq (char-after) ?=) | |
1129 ;; We've seen a =, but must check earlier tokens so | |
1130 ;; that it isn't something that should be ignored. | |
1131 (setq braceassignp 'maybe) | |
1132 (while (and (eq braceassignp 'maybe) | |
1133 (zerop (c-backward-token-1 1 t lim))) | |
1134 (setq braceassignp | |
1135 (cond | |
1136 ;; Check for operator = | |
1137 ((looking-at "operator\\>") nil) | |
1138 ;; Check for `<opchar>= (Pike) | |
1139 ((eq (char-after) ?`) nil) | |
1140 ((looking-at "\\s.") 'maybe) | |
1141 ;; make sure we're not in a C++ template | |
1142 ;; argument assignment | |
1143 ((save-excursion | |
1144 (let ((here (point)) | |
1145 (pos< (progn | |
1146 (skip-chars-backward "^<") | |
1147 (point)))) | |
1148 (and (c-major-mode-is 'c++-mode) | |
1149 (eq (char-before) ?<) | |
1150 (not (c-crosses-statement-barrier-p | |
25178
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1151 pos< here)) |
24282 | 1152 (not (c-in-literal)) |
1153 ))) | |
1154 nil) | |
25178
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1155 (t t)))))) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1156 (if (and (eq braceassignp 'dontknow) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1157 (/= (c-backward-token-1 1 t lim) 0)) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1158 (setq braceassignp nil))) |
1dc57e616e8d
(c-inside-bracelist-p): Tighter test for
Richard M. Stallman <rms@gnu.org>
parents:
24335
diff
changeset
|
1159 (if (not braceassignp) |
24282 | 1160 (if (eq (char-after) ?\;) |
1161 ;; Brace lists can't contain a semicolon, so we're done. | |
1162 (setq containing-sexp nil) | |
1163 ;; lets see if we're nested. find the most nested | |
1164 ;; containing brace | |
1165 (setq containing-sexp (car brace-state) | |
1166 brace-state (cdr brace-state))) | |
1167 ;; we've hit the beginning of the aggregate list | |
1168 (c-beginning-of-statement-1 | |
1169 (c-most-enclosing-brace brace-state)) | |
1170 (setq bufpos (point)))) | |
18720 | 1171 )) |
1172 bufpos)) | |
1173 )) | |
1174 | |
24282 | 1175 (defun c-looking-at-special-brace-list (&optional lim) |
1176 ;; If we're looking at the start of a pike-style list, ie `({ })', | |
1177 ;; `([ ])', `(< >)' etc, a cons of a cons its starting and ending | |
1178 ;; positions and its entry in c-special-brace-lists is returned, nil | |
1179 ;; otherwise. The ending position is nil if the list is still open. | |
1180 ;; LIM is the limit for forward search. The point may either be at | |
1181 ;; the `(' or at the following paren character. Tries to check the | |
1182 ;; matching closer, but assumes it's correct if no balanced paren is | |
1183 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being | |
1184 ;; a special brace list). | |
1185 (if c-special-brace-lists | |
1186 (condition-case () | |
1187 (save-excursion | |
1188 (let ((beg (point)) | |
1189 end type) | |
1190 (c-forward-syntactic-ws) | |
1191 (if (eq (char-after) ?\() | |
1192 (progn | |
1193 (forward-char 1) | |
1194 (c-forward-syntactic-ws) | |
1195 (setq type (assq (char-after) c-special-brace-lists))) | |
1196 (if (setq type (assq (char-after) c-special-brace-lists)) | |
1197 (progn | |
1198 (c-backward-syntactic-ws) | |
1199 (forward-char -1) | |
1200 (setq beg (if (eq (char-after) ?\() | |
1201 (point) | |
1202 nil))))) | |
1203 (if (and beg type) | |
1204 (if (and (c-safe (goto-char beg) | |
1205 (c-forward-sexp 1) | |
1206 (setq end (point)) | |
1207 (= (char-before) ?\))) | |
1208 (c-safe (goto-char beg) | |
1209 (forward-char 1) | |
1210 (c-forward-sexp 1) | |
1211 ;; Kludges needed to handle inner | |
1212 ;; chars both with and without | |
1213 ;; paren syntax. | |
1214 (or (/= (char-syntax (char-before)) ?\)) | |
1215 (= (char-before) (cdr type))))) | |
1216 (if (or (/= (char-syntax (char-before)) ?\)) | |
1217 (= (progn | |
1218 (c-forward-syntactic-ws) | |
1219 (point)) | |
1220 (1- end))) | |
1221 (cons (cons beg end) type)) | |
1222 (cons (list beg) type))))) | |
1223 (error nil)))) | |
1224 | |
1225 (defun c-looking-at-inexpr-block (&optional lim) | |
1226 ;; Returns non-nil if we're looking at the beginning of a block | |
1227 ;; inside an expression. The value returned is actually a cons of | |
1228 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the | |
1229 ;; position of the beginning of the construct. LIM limits the | |
1230 ;; backward search. | |
1231 (save-excursion | |
1232 (or lim (setq lim (point-min))) | |
1233 (if (and (eq (char-after) ?{) | |
1234 (progn (c-backward-syntactic-ws) (> (point) lim)) | |
1235 (eq (char-before) ?\() | |
1236 (not (and c-special-brace-lists | |
1237 (c-looking-at-special-brace-list)))) | |
1238 (cons 'inexpr-statement (point)) | |
1239 (let (res) | |
1240 (while (and (not res) | |
1241 (= (c-backward-token-1 1 t lim) 0) | |
1242 (>= (point) lim) | |
1243 (looking-at "(\\|\\w\\|\\s_\\|\\.")) | |
1244 (setq res | |
1245 (cond ((and c-inexpr-class-key | |
1246 (looking-at c-inexpr-class-key)) | |
1247 (cons 'inexpr-class (point))) | |
1248 ((and c-inexpr-block-key | |
1249 (looking-at c-inexpr-block-key)) | |
1250 (cons 'inexpr-statement (point))) | |
1251 ((and c-lambda-key | |
1252 (looking-at c-lambda-key)) | |
1253 (cons 'inlambda (point)))))) | |
1254 res)))) | |
1255 | |
1256 (defun c-looking-at-inexpr-block-backward (&optional lim) | |
1257 ;; Returns non-nil if we're looking at the end of an in-expression | |
1258 ;; block, otherwise the same as `c-looking-at-inexpr-block'. | |
1259 (save-excursion | |
1260 (let ((lim (or lim (c-point 'bod)))) | |
1261 (c-safe | |
1262 (c-backward-syntactic-ws lim) | |
1263 (if (eq (char-before) ?}) ; Recognize only a block currently. | |
1264 (progn | |
1265 (c-forward-sexp -1) | |
1266 (if (>= (point) lim) | |
1267 (c-looking-at-inexpr-block lim)))))))) | |
1268 | |
18720 | 1269 |
1270 (defun c-most-enclosing-brace (state) | |
1271 ;; return the bufpos of the most enclosing brace that hasn't been | |
1272 ;; narrowed out by any enclosing class, or nil if none was found | |
1273 (let (enclosingp) | |
1274 (while (and state (not enclosingp)) | |
1275 (setq enclosingp (car state) | |
1276 state (cdr state)) | |
1277 (if (consp enclosingp) | |
1278 (setq enclosingp nil) | |
1279 (if (> (point-min) enclosingp) | |
1280 (setq enclosingp nil)) | |
1281 (setq state nil))) | |
1282 enclosingp)) | |
1283 | |
1284 (defun c-least-enclosing-brace (state) | |
1285 ;; return the bufpos of the least (highest) enclosing brace that | |
1286 ;; hasn't been narrowed out by any enclosing class, or nil if none | |
1287 ;; was found. | |
1288 (c-most-enclosing-brace (nreverse state))) | |
1289 | |
1290 (defun c-safe-position (bufpos state) | |
1291 ;; return the closest known safe position higher up than point | |
1292 (let ((safepos nil)) | |
1293 (while state | |
1294 (setq safepos | |
1295 (if (consp (car state)) | |
1296 (cdr (car state)) | |
1297 (car state))) | |
1298 (if (< safepos bufpos) | |
1299 (setq state nil) | |
1300 (setq state (cdr state)))) | |
1301 safepos)) | |
1302 | |
1303 (defun c-narrow-out-enclosing-class (state lim) | |
1304 ;; narrow the buffer so that the enclosing class is hidden | |
1305 (let (inclass-p) | |
1306 (and state | |
1307 (setq inclass-p (c-search-uplist-for-classkey state)) | |
1308 (narrow-to-region | |
1309 (progn | |
1310 (goto-char (1+ (aref inclass-p 1))) | |
1311 (skip-chars-forward " \t\n" lim) | |
1312 ;; if point is now left of the class opening brace, we're | |
1313 ;; hosed, so try a different tact | |
1314 (if (<= (point) (aref inclass-p 1)) | |
1315 (progn | |
1316 (goto-char (1+ (aref inclass-p 1))) | |
1317 (c-forward-syntactic-ws lim))) | |
1318 (point)) | |
1319 ;; end point is the end of the current line | |
1320 (progn | |
1321 (goto-char lim) | |
1322 (c-point 'eol)))) | |
1323 ;; return the class vector | |
1324 inclass-p)) | |
1325 | |
24282 | 1326 (defsubst c-add-class-syntax (symbol classkey) |
1327 ;; The inclass and class-close syntactic symbols are added in | |
1328 ;; several places and some work is needed to fix everything. | |
1329 ;; Therefore it's collected here. | |
1330 (save-restriction | |
1331 (widen) | |
1332 (goto-char (aref classkey 1)) | |
1333 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi))) | |
1334 (c-add-syntax symbol (point)) | |
1335 (c-add-syntax symbol (aref classkey 0)) | |
1336 (if (and c-inexpr-class-key (c-looking-at-inexpr-block)) | |
1337 (c-add-syntax 'inexpr-class))))) | |
1338 | |
18720 | 1339 |
1340 ;; This function implements the main decision tree for determining the | |
1341 ;; syntactic analysis of the current line of code. Yes, it's huge and | |
1342 ;; bloated! | |
1343 | |
1344 (defun c-guess-basic-syntax () | |
1345 (save-excursion | |
1346 (save-restriction | |
1347 (beginning-of-line) | |
1348 (let* ((indent-point (point)) | |
1349 (case-fold-search nil) | |
1350 (fullstate (c-parse-state)) | |
1351 (state fullstate) | |
24282 | 1352 (in-method-intro-p (and (c-major-mode-is 'objc-mode) |
18720 | 1353 c-method-key |
1354 (looking-at c-method-key))) | |
1355 literal containing-sexp char-before-ip char-after-ip lim | |
1356 syntax placeholder c-in-literal-cache inswitch-p | |
24282 | 1357 tmpsymbol keyword injava-inher special-brace-list |
18720 | 1358 ;; narrow out any enclosing class or extern "C" block |
1359 (inclass-p (c-narrow-out-enclosing-class state indent-point)) | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1360 inenclosing-p) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1361 ;; check for meta top-level enclosing constructs, possible |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1362 ;; extern language definitions, possibly (in C++) namespace |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1363 ;; definitions. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1364 (save-excursion |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1365 (save-restriction |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1366 (widen) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1367 (if (and inclass-p |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1368 (progn |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1369 (goto-char (aref inclass-p 0)) |
24282 | 1370 (looking-at (concat c-extra-toplevel-key "[^_]")))) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1371 (let ((enclosing (match-string 1))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1372 (cond |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1373 ((string-equal enclosing "extern") |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1374 (setq inenclosing-p 'extern)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1375 ((string-equal enclosing "namespace") |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1376 (setq inenclosing-p 'namespace)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1377 ))))) |
18720 | 1378 ;; get the buffer position of the most nested opening brace, |
1379 ;; if there is one, and it hasn't been narrowed out | |
1380 (save-excursion | |
1381 (goto-char indent-point) | |
1382 (skip-chars-forward " \t}") | |
1383 (skip-chars-backward " \t") | |
1384 (while (and state | |
1385 (not in-method-intro-p) | |
1386 (not containing-sexp)) | |
1387 (setq containing-sexp (car state) | |
1388 state (cdr state)) | |
1389 (if (consp containing-sexp) | |
1390 ;; if cdr == point, then containing sexp is the brace | |
1391 ;; that opens the sexp we close | |
1392 (if (= (cdr containing-sexp) (point)) | |
1393 (setq containing-sexp (car containing-sexp)) | |
1394 ;; otherwise, ignore this element | |
1395 (setq containing-sexp nil)) | |
1396 ;; ignore the bufpos if its been narrowed out by the | |
1397 ;; containing class | |
1398 (if (<= containing-sexp (point-min)) | |
1399 (setq containing-sexp nil))))) | |
1400 | |
1401 ;; set the limit on the farthest back we need to search | |
1402 (setq lim (or containing-sexp | |
1403 (if (consp (car fullstate)) | |
1404 (cdr (car fullstate)) | |
1405 nil) | |
1406 (point-min))) | |
1407 | |
1408 ;; cache char before and after indent point, and move point to | |
1409 ;; the most likely position to perform the majority of tests | |
1410 (goto-char indent-point) | |
1411 (skip-chars-forward " \t") | |
1412 (setq char-after-ip (char-after)) | |
1413 (c-backward-syntactic-ws lim) | |
1414 (setq char-before-ip (char-before)) | |
1415 (goto-char indent-point) | |
1416 (skip-chars-forward " \t") | |
1417 | |
1418 ;; are we in a literal? | |
1419 (setq literal (c-in-literal lim)) | |
1420 | |
1421 ;; now figure out syntactic qualities of the current line | |
1422 (cond | |
1423 ;; CASE 1: in a string. | |
1424 ((memq literal '(string)) | |
1425 (c-add-syntax 'string (c-point 'bopl))) | |
1426 ;; CASE 2: in a C or C++ style comment. | |
1427 ((memq literal '(c c++)) | |
1428 ;; we need to catch multi-paragraph C comments | |
1429 (while (and (zerop (forward-line -1)) | |
1430 (looking-at "^[ \t]*$"))) | |
1431 (c-add-syntax literal (c-point 'boi))) | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1432 ;; CASE 3: in a cpp preprocessor macro |
18720 | 1433 ((eq literal 'pound) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1434 (let ((boi (c-point 'boi)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1435 (macrostart (progn (c-beginning-of-macro lim) (point)))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1436 (setq tmpsymbol (if (= boi macrostart) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1437 'cpp-macro |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1438 'cpp-macro-cont)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1439 (c-add-syntax tmpsymbol macrostart))) |
18720 | 1440 ;; CASE 4: in an objective-c method intro |
1441 (in-method-intro-p | |
1442 (c-add-syntax 'objc-method-intro (c-point 'boi))) | |
1443 ;; CASE 5: Line is at top level. | |
1444 ((null containing-sexp) | |
1445 (cond | |
24282 | 1446 ;; CASE 5A: we are looking at a defun, brace list, class, |
1447 ;; or inline-inclass method opening brace | |
1448 ((setq special-brace-list | |
1449 (or (and c-special-brace-lists | |
1450 (c-looking-at-special-brace-list)) | |
1451 (eq char-after-ip ?{))) | |
18720 | 1452 (cond |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1453 ;; CASE 5A.1: extern language or namespace construct |
18720 | 1454 ((save-excursion |
1455 (goto-char indent-point) | |
1456 (skip-chars-forward " \t") | |
24282 | 1457 (and (c-safe (progn (c-backward-sexp 2) t)) |
1458 (looking-at (concat c-extra-toplevel-key "[^_]")) | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1459 (setq keyword (match-string 1) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1460 placeholder (point)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1461 (or (and (string-equal keyword "namespace") |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1462 (setq tmpsymbol 'namespace-open)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1463 (and (string-equal keyword "extern") |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1464 (progn |
24282 | 1465 (c-forward-sexp 1) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1466 (c-forward-syntactic-ws) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1467 (eq (char-after) ?\")) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1468 (setq tmpsymbol 'extern-lang-open))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1469 )) |
18720 | 1470 (goto-char placeholder) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1471 (c-add-syntax tmpsymbol (c-point 'boi))) |
18720 | 1472 ;; CASE 5A.2: we are looking at a class opening brace |
1473 ((save-excursion | |
1474 (goto-char indent-point) | |
1475 (skip-chars-forward " \t{") | |
1476 ;; TBD: watch out! there could be a bogus | |
1477 ;; c-state-cache in place when we get here. we have | |
1478 ;; to go through much chicanery to ignore the cache. | |
1479 ;; But of course, there may not be! BLECH! BOGUS! | |
1480 (let ((decl | |
1481 (if (boundp 'c-state-cache) | |
1482 (let ((old-cache c-state-cache)) | |
1483 (prog2 | |
1484 (makunbound 'c-state-cache) | |
1485 (c-search-uplist-for-classkey (c-parse-state)) | |
1486 (setq c-state-cache old-cache))) | |
1487 (c-search-uplist-for-classkey (c-parse-state)) | |
1488 ))) | |
1489 (and decl | |
1490 (setq placeholder (aref decl 0))) | |
1491 )) | |
1492 (c-add-syntax 'class-open placeholder)) | |
1493 ;; CASE 5A.3: brace list open | |
1494 ((save-excursion | |
1495 (c-beginning-of-statement-1 lim) | |
1496 ;; c-b-o-s could have left us at point-min | |
1497 (and (bobp) | |
1498 (c-forward-syntactic-ws indent-point)) | |
1499 (if (looking-at "typedef[^_]") | |
24282 | 1500 (progn (c-forward-sexp 1) |
18720 | 1501 (c-forward-syntactic-ws indent-point))) |
1502 (setq placeholder (c-point 'boi)) | |
24282 | 1503 (or (consp special-brace-list) |
1504 (and (or (looking-at "enum[ \t\n]+") | |
1505 (save-excursion | |
1506 (goto-char indent-point) | |
1507 (while (and (> (point) placeholder) | |
1508 (= (c-backward-token-1 1 t) 0) | |
1509 (/= (char-after) ?=))) | |
1510 (eq (char-after) ?=))) | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1511 (save-excursion |
24282 | 1512 (while (and (< (point) indent-point) |
1513 (= (c-forward-token-1 1 t) 0) | |
1514 (not (memq (char-after) '(?\; ?\())))) | |
1515 (not (memq (char-after) '(?\; ?\())) | |
1516 )))) | |
18720 | 1517 (c-add-syntax 'brace-list-open placeholder)) |
1518 ;; CASE 5A.4: inline defun open | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1519 ((and inclass-p (not inenclosing-p)) |
18720 | 1520 (c-add-syntax 'inline-open) |
24282 | 1521 (c-add-class-syntax 'inclass inclass-p)) |
18720 | 1522 ;; CASE 5A.5: ordinary defun open |
1523 (t | |
1524 (goto-char placeholder) | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1525 (if inclass-p |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1526 (c-add-syntax 'defun-open (c-point 'boi)) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1527 (c-add-syntax 'defun-open (c-point 'bol))) |
18720 | 1528 ))) |
1529 ;; CASE 5B: first K&R arg decl or member init | |
1530 ((c-just-after-func-arglist-p) | |
1531 (cond | |
1532 ;; CASE 5B.1: a member init | |
1533 ((or (eq char-before-ip ?:) | |
1534 (eq char-after-ip ?:)) | |
1535 ;; this line should be indented relative to the beginning | |
1536 ;; of indentation for the topmost-intro line that contains | |
1537 ;; the prototype's open paren | |
1538 ;; TBD: is the following redundant? | |
1539 (if (eq char-before-ip ?:) | |
1540 (forward-char -1)) | |
1541 (c-backward-syntactic-ws lim) | |
1542 ;; TBD: is the preceding redundant? | |
1543 (if (eq (char-before) ?:) | |
1544 (progn (forward-char -1) | |
1545 (c-backward-syntactic-ws lim))) | |
1546 (if (eq (char-before) ?\)) | |
24282 | 1547 (c-backward-sexp 1)) |
18720 | 1548 (setq placeholder (point)) |
1549 (save-excursion | |
24282 | 1550 (and (c-safe (c-backward-sexp 1) t) |
18720 | 1551 (looking-at "throw[^_]") |
24282 | 1552 (c-safe (c-backward-sexp 1) t) |
18720 | 1553 (setq placeholder (point)))) |
1554 (goto-char placeholder) | |
1555 (c-add-syntax 'member-init-intro (c-point 'boi)) | |
1556 ;; we don't need to add any class offset since this | |
1557 ;; should be relative to the ctor's indentation | |
1558 ) | |
1559 ;; CASE 5B.2: K&R arg decl intro | |
1560 (c-recognize-knr-p | |
1561 (c-add-syntax 'knr-argdecl-intro (c-point 'boi)) | |
24282 | 1562 (if inclass-p (c-add-class-syntax 'inclass inclass-p))) |
18720 | 1563 ;; CASE 5B.3: Nether region after a C++ or Java func |
1564 ;; decl, which could include a `throws' declaration. | |
1565 (t | |
1566 (c-beginning-of-statement-1 lim) | |
1567 (c-add-syntax 'func-decl-cont (c-point 'boi)) | |
1568 ))) | |
1569 ;; CASE 5C: inheritance line. could be first inheritance | |
1570 ;; line, or continuation of a multiple inheritance | |
1571 ((or (and c-baseclass-key (looking-at c-baseclass-key)) | |
1572 (and (or (eq char-before-ip ?:) | |
1573 ;; watch out for scope operator | |
1574 (save-excursion | |
1575 (and (eq char-after-ip ?:) | |
1576 (c-safe (progn (forward-char 1) t)) | |
1577 (not (eq (char-after) ?:)) | |
1578 ))) | |
1579 (save-excursion | |
1580 (c-backward-syntactic-ws lim) | |
1581 (if (eq char-before-ip ?:) | |
1582 (progn | |
1583 (forward-char -1) | |
1584 (c-backward-syntactic-ws lim))) | |
1585 (back-to-indentation) | |
1586 (looking-at c-class-key))) | |
1587 ;; for Java | |
24282 | 1588 (and (c-major-mode-is 'java-mode) |
18720 | 1589 (let ((fence (save-excursion |
1590 (c-beginning-of-statement-1 lim) | |
1591 (point))) | |
1592 cont done) | |
1593 (save-excursion | |
1594 (while (not done) | |
1595 (cond ((looking-at c-Java-special-key) | |
1596 (setq injava-inher (cons cont (point)) | |
1597 done t)) | |
24282 | 1598 ((or (not (c-safe (c-forward-sexp -1) t)) |
18720 | 1599 (<= (point) fence)) |
1600 (setq done t)) | |
1601 ) | |
1602 (setq cont t))) | |
1603 injava-inher) | |
1604 (not (c-crosses-statement-barrier-p (cdr injava-inher) | |
1605 (point))) | |
1606 )) | |
1607 (cond | |
1608 ;; CASE 5C.1: non-hanging colon on an inher intro | |
1609 ((eq char-after-ip ?:) | |
1610 (c-backward-syntactic-ws lim) | |
1611 (c-add-syntax 'inher-intro (c-point 'boi)) | |
1612 ;; don't add inclass symbol since relative point already | |
1613 ;; contains any class offset | |
1614 ) | |
1615 ;; CASE 5C.2: hanging colon on an inher intro | |
1616 ((eq char-before-ip ?:) | |
1617 (c-add-syntax 'inher-intro (c-point 'boi)) | |
24282 | 1618 (if inclass-p (c-add-class-syntax 'inclass inclass-p))) |
18720 | 1619 ;; CASE 5C.3: in a Java implements/extends |
1620 (injava-inher | |
1621 (let ((where (cdr injava-inher)) | |
1622 (cont (car injava-inher))) | |
1623 (goto-char where) | |
1624 (cond ((looking-at "throws[ \t\n]") | |
1625 (c-add-syntax 'func-decl-cont | |
1626 (progn (c-beginning-of-statement-1 lim) | |
1627 (c-point 'boi)))) | |
1628 (cont (c-add-syntax 'inher-cont where)) | |
1629 (t (c-add-syntax 'inher-intro | |
1630 (progn (goto-char (cdr injava-inher)) | |
1631 (c-beginning-of-statement-1 lim) | |
1632 (point)))) | |
1633 ))) | |
1634 ;; CASE 5C.4: a continued inheritance line | |
1635 (t | |
1636 (c-beginning-of-inheritance-list lim) | |
1637 (c-add-syntax 'inher-cont (point)) | |
1638 ;; don't add inclass symbol since relative point already | |
1639 ;; contains any class offset | |
1640 ))) | |
1641 ;; CASE 5D: this could be a top-level compound statement or a | |
1642 ;; member init list continuation | |
1643 ((eq char-before-ip ?,) | |
1644 (goto-char indent-point) | |
1645 (c-backward-syntactic-ws lim) | |
1646 (while (and (< lim (point)) | |
1647 (eq (char-before) ?,)) | |
1648 ;; this will catch member inits with multiple | |
1649 ;; line arglists | |
1650 (forward-char -1) | |
1651 (c-backward-syntactic-ws (c-point 'bol)) | |
1652 (if (eq (char-before) ?\)) | |
24282 | 1653 (c-backward-sexp 2) |
1654 (c-backward-sexp 1)) | |
18720 | 1655 ;; now continue checking |
1656 (c-backward-syntactic-ws lim)) | |
1657 (cond | |
1658 ;; CASE 5D.1: hanging member init colon, but watch out | |
1659 ;; for bogus matches on access specifiers inside classes. | |
24282 | 1660 ((and (save-excursion |
1661 ;; There might be member inits on the first line too. | |
1662 (end-of-line) | |
1663 (while (and (> (point) lim) | |
1664 (eq (char-before) ?,) | |
1665 (= (c-backward-token-1 2 t lim) 0) | |
1666 (eq (char-after) ?\() | |
1667 (= (c-backward-token-1 1 t lim) 0)) | |
1668 (c-backward-syntactic-ws lim)) | |
1669 (setq placeholder (point)) | |
1670 (c-backward-syntactic-ws lim) | |
1671 (eq (char-before) ?:)) | |
18720 | 1672 (save-excursion |
24282 | 1673 (goto-char placeholder) |
1674 (back-to-indentation) | |
1675 (and | |
1676 c-access-key | |
1677 (not (looking-at c-access-key)) | |
1678 (not (looking-at c-class-key))) | |
1679 )) | |
1680 (goto-char placeholder) | |
1681 (c-forward-syntactic-ws) | |
1682 (c-add-syntax 'member-init-cont (point)) | |
18720 | 1683 ;; we do not need to add class offset since relative |
1684 ;; point is the member init above us | |
1685 ) | |
1686 ;; CASE 5D.2: non-hanging member init colon | |
1687 ((progn | |
1688 (c-forward-syntactic-ws indent-point) | |
1689 (eq (char-after) ?:)) | |
1690 (skip-chars-forward " \t:") | |
1691 (c-add-syntax 'member-init-cont (point))) | |
1692 ;; CASE 5D.3: perhaps a multiple inheritance line? | |
24282 | 1693 ((save-excursion |
1694 (c-beginning-of-statement-1 lim) | |
1695 (setq placeholder (point)) | |
1696 (looking-at c-inher-key)) | |
1697 (goto-char placeholder) | |
18720 | 1698 (c-add-syntax 'inher-cont (c-point 'boi))) |
1699 ;; CASE 5D.4: perhaps a template list continuation? | |
1700 ((save-excursion | |
19301
c4d7dd15f7d5
(c-guess-basic-syntax): CASE 5D.4: template argument continuation
Richard M. Stallman <rms@gnu.org>
parents:
19251
diff
changeset
|
1701 (goto-char indent-point) |
18720 | 1702 (skip-chars-backward "^<" lim) |
1703 ;; not sure if this is the right test, but it should | |
1704 ;; be fast and mostly accurate. | |
24282 | 1705 (setq placeholder (point)) |
18720 | 1706 (and (eq (char-before) ?<) |
1707 (not (c-in-literal lim)))) | |
19301
c4d7dd15f7d5
(c-guess-basic-syntax): CASE 5D.4: template argument continuation
Richard M. Stallman <rms@gnu.org>
parents:
19251
diff
changeset
|
1708 ;; we can probably indent it just like an arglist-cont |
24282 | 1709 (goto-char placeholder) |
1710 (c-beginning-of-statement-1 lim) | |
19301
c4d7dd15f7d5
(c-guess-basic-syntax): CASE 5D.4: template argument continuation
Richard M. Stallman <rms@gnu.org>
parents:
19251
diff
changeset
|
1711 (c-add-syntax 'template-args-cont (point))) |
18720 | 1712 ;; CASE 5D.5: perhaps a top-level statement-cont |
1713 (t | |
1714 (c-beginning-of-statement-1 lim) | |
1715 ;; skip over any access-specifiers | |
1716 (and inclass-p c-access-key | |
1717 (while (looking-at c-access-key) | |
1718 (forward-line 1))) | |
1719 ;; skip over comments, whitespace | |
1720 (c-forward-syntactic-ws indent-point) | |
1721 (c-add-syntax 'statement-cont (c-point 'boi))) | |
1722 )) | |
1723 ;; CASE 5E: we are looking at a access specifier | |
1724 ((and inclass-p | |
1725 c-access-key | |
1726 (looking-at c-access-key)) | |
1727 (c-add-syntax 'access-label (c-point 'bonl)) | |
24282 | 1728 (c-add-class-syntax 'inclass inclass-p)) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1729 ;; CASE 5F: extern-lang-close or namespace-close? |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1730 ((and inenclosing-p |
18720 | 1731 (eq char-after-ip ?})) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1732 (setq tmpsymbol (if (eq inenclosing-p 'extern) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1733 'extern-lang-close |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1734 'namespace-close)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1735 (c-add-syntax tmpsymbol (aref inclass-p 0))) |
18720 | 1736 ;; CASE 5G: we are looking at the brace which closes the |
1737 ;; enclosing nested class decl | |
1738 ((and inclass-p | |
1739 (eq char-after-ip ?}) | |
1740 (save-excursion | |
1741 (save-restriction | |
1742 (widen) | |
1743 (forward-char 1) | |
24282 | 1744 (and (c-safe (progn (c-backward-sexp 1) t)) |
1745 (= (point) (aref inclass-p 1)) | |
1746 )))) | |
1747 (c-add-class-syntax 'class-close inclass-p)) | |
18720 | 1748 ;; CASE 5H: we could be looking at subsequent knr-argdecls |
1749 ((and c-recognize-knr-p | |
1750 ;; here we essentially use the hack that is used in | |
1751 ;; Emacs' c-mode.el to limit how far back we should | |
1752 ;; look. The assumption is made that argdecls are | |
1753 ;; indented at least one space and that function | |
1754 ;; headers are not indented. | |
1755 (let ((limit (save-excursion | |
1756 (re-search-backward "^[^ \^L\t\n#]" nil 'move) | |
1757 (point)))) | |
1758 (save-excursion | |
1759 (c-backward-syntactic-ws limit) | |
1760 (setq placeholder (point)) | |
1761 (while (and (memq (char-before) '(?\; ?,)) | |
1762 (> (point) limit)) | |
1763 (beginning-of-line) | |
1764 (setq placeholder (point)) | |
1765 (c-backward-syntactic-ws limit)) | |
1766 (and (eq (char-before) ?\)) | |
1767 (or (not c-method-key) | |
1768 (progn | |
24282 | 1769 (c-forward-sexp -1) |
18720 | 1770 (forward-char -1) |
1771 (c-backward-syntactic-ws) | |
1772 (not (or (memq (char-before) '(?- ?+)) | |
1773 ;; or a class category | |
1774 (progn | |
24282 | 1775 (c-forward-sexp -2) |
18720 | 1776 (looking-at c-class-key)) |
1777 ))))) | |
1778 )) | |
1779 (save-excursion | |
1780 (c-beginning-of-statement-1) | |
1781 (not (looking-at "typedef[ \t\n]+")))) | |
1782 (goto-char placeholder) | |
1783 (c-add-syntax 'knr-argdecl (c-point 'boi))) | |
1784 ;; CASE 5I: we are at the topmost level, make sure we skip | |
1785 ;; back past any access specifiers | |
1786 ((progn | |
1787 (c-backward-syntactic-ws lim) | |
1788 (while (and inclass-p | |
1789 c-access-key | |
1790 (not (bobp)) | |
1791 (save-excursion | |
24282 | 1792 (c-safe (progn (c-backward-sexp 1) t)) |
18720 | 1793 (looking-at c-access-key))) |
24282 | 1794 (c-backward-sexp 1) |
18720 | 1795 (c-backward-syntactic-ws lim)) |
1796 (or (bobp) | |
1797 (memq (char-before) '(?\; ?\})))) | |
1798 ;; real beginning-of-line could be narrowed out due to | |
1799 ;; enclosure in a class block | |
1800 (save-restriction | |
1801 (widen) | |
1802 (c-add-syntax 'topmost-intro (c-point 'bol)) | |
1803 (if inclass-p | |
1804 (progn | |
1805 (goto-char (aref inclass-p 1)) | |
19251
6a7d40ec4b29
(c-beginning-of-statement-1): When checking for bare semi, don't match
Richard M. Stallman <rms@gnu.org>
parents:
18844
diff
changeset
|
1806 (or (= (point) (c-point 'boi)) |
6a7d40ec4b29
(c-beginning-of-statement-1): When checking for bare semi, don't match
Richard M. Stallman <rms@gnu.org>
parents:
18844
diff
changeset
|
1807 (goto-char (aref inclass-p 0))) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1808 (cond |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1809 ((eq inenclosing-p 'extern) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1810 (c-add-syntax 'inextern-lang (c-point 'boi))) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1811 ((eq inenclosing-p 'namespace) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1812 (c-add-syntax 'innamespace (c-point 'boi))) |
24282 | 1813 (t (c-add-class-syntax 'inclass inclass-p))) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1814 )) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1815 )) |
18720 | 1816 ;; CASE 5J: we are at an ObjC or Java method definition |
1817 ;; continuation line. | |
1818 ((and c-method-key | |
1819 (progn | |
1820 (c-beginning-of-statement-1 lim) | |
1821 (beginning-of-line) | |
1822 (looking-at c-method-key))) | |
1823 (c-add-syntax 'objc-method-args-cont (point))) | |
1824 ;; CASE 5K: we are at a topmost continuation line | |
1825 (t | |
1826 (c-beginning-of-statement-1 lim) | |
1827 (c-forward-syntactic-ws) | |
1828 (c-add-syntax 'topmost-intro-cont (c-point 'boi))) | |
1829 )) ; end CASE 5 | |
24282 | 1830 ;; CASE 6: In-expression statement. |
1831 ((and (or c-inexpr-class-key c-inexpr-block-key c-lambda-key) | |
1832 (setq placeholder (c-looking-at-inexpr-block))) | |
1833 (setq tmpsymbol (assq (car placeholder) | |
1834 '((inexpr-class . class-open) | |
1835 (inexpr-statement . block-open)))) | |
1836 (if tmpsymbol | |
1837 ;; It's a statement block or an anonymous class. | |
1838 (setq tmpsymbol (cdr tmpsymbol)) | |
1839 ;; It's a Pike lambda. Check whether we are between the | |
1840 ;; lambda keyword and the argument list or at the defun | |
1841 ;; opener. | |
1842 (setq tmpsymbol | |
1843 (if (save-excursion | |
1844 (and (c-safe (c-forward-sexp -1) t) | |
1845 (looking-at c-lambda-key))) | |
1846 'lambda-intro-cont | |
1847 'inline-open))) | |
1848 (goto-char (cdr placeholder)) | |
1849 (c-add-syntax tmpsymbol (c-point 'boi)) | |
1850 (c-add-syntax (car placeholder))) | |
1851 ;; CASE 7: line is an expression, not a statement. Most | |
18720 | 1852 ;; likely we are either in a function prototype or a function |
1853 ;; call argument list | |
24282 | 1854 ((not (or (and c-special-brace-lists |
1855 (save-excursion | |
1856 (goto-char containing-sexp) | |
1857 (c-looking-at-special-brace-list))) | |
1858 (eq (char-after containing-sexp) ?{))) | |
18720 | 1859 (c-backward-syntactic-ws containing-sexp) |
1860 (cond | |
24282 | 1861 ;; CASE 7A: we are looking at the arglist closing paren |
18720 | 1862 ((and (not (eq char-before-ip ?,)) |
1863 (memq char-after-ip '(?\) ?\]))) | |
1864 (goto-char containing-sexp) | |
1865 (c-add-syntax 'arglist-close (c-point 'boi))) | |
24282 | 1866 ;; CASE 7B: Looking at the opening brace of an |
1867 ;; in-expression block or brace list. | |
1868 ((eq char-after-ip ?{) | |
1869 (goto-char indent-point) | |
1870 (setq placeholder (c-point 'boi)) | |
1871 (goto-char containing-sexp) | |
1872 (if (c-inside-bracelist-p placeholder | |
1873 (cons containing-sexp state)) | |
1874 (progn | |
1875 (c-add-syntax 'brace-list-open (c-point 'boi)) | |
1876 (c-add-syntax 'inexpr-class)) | |
1877 (c-add-syntax 'block-open (c-point 'boi)) | |
1878 (c-add-syntax 'inexpr-statement))) | |
1879 ;; CASE 7C: we are looking at the first argument in an empty | |
18720 | 1880 ;; argument list. Use arglist-close if we're actually |
1881 ;; looking at a close paren or bracket. | |
1882 ((memq char-before-ip '(?\( ?\[)) | |
1883 (goto-char containing-sexp) | |
1884 (c-add-syntax 'arglist-intro (c-point 'boi))) | |
24282 | 1885 ;; CASE 7D: we are inside a conditional test clause. treat |
18720 | 1886 ;; these things as statements |
1887 ((save-excursion | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1888 (goto-char containing-sexp) |
24282 | 1889 (and (c-safe (progn (c-forward-sexp -1) t)) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1890 (looking-at "\\<for\\>[^_]"))) |
18720 | 1891 (goto-char (1+ containing-sexp)) |
1892 (c-forward-syntactic-ws indent-point) | |
1893 (c-beginning-of-statement-1 containing-sexp) | |
1894 (if (eq char-before-ip ?\;) | |
1895 (c-add-syntax 'statement (point)) | |
1896 (c-add-syntax 'statement-cont (point)) | |
1897 )) | |
24282 | 1898 ;; CASE 7E: maybe a continued method call. This is the case |
18720 | 1899 ;; when we are inside a [] bracketed exp, and what precede |
1900 ;; the opening bracket is not an identifier. | |
1901 ((and c-method-key | |
1902 (eq (char-after containing-sexp) ?\[) | |
1903 (save-excursion | |
1904 (goto-char (1- containing-sexp)) | |
1905 (c-backward-syntactic-ws (c-point 'bod)) | |
1906 (if (not (looking-at c-symbol-key)) | |
1907 (c-add-syntax 'objc-method-call-cont containing-sexp)) | |
1908 ))) | |
24282 | 1909 ;; CASE 7F: we are looking at an arglist continuation line, |
18720 | 1910 ;; but the preceding argument is on the same line as the |
1911 ;; opening paren. This case includes multi-line | |
1912 ;; mathematical paren groupings, but we could be on a | |
1913 ;; for-list continuation line | |
1914 ((and (save-excursion | |
1915 (goto-char (1+ containing-sexp)) | |
1916 (skip-chars-forward " \t") | |
1917 (not (eolp))) | |
1918 (save-excursion | |
1919 (c-beginning-of-statement-1 lim) | |
1920 (skip-chars-backward " \t([") | |
1921 (<= (point) containing-sexp))) | |
1922 (goto-char containing-sexp) | |
1923 (c-add-syntax 'arglist-cont-nonempty (c-point 'boi))) | |
24282 | 1924 ;; CASE 7G: we are looking at just a normal arglist |
18720 | 1925 ;; continuation line |
1926 (t (c-beginning-of-statement-1 containing-sexp) | |
1927 (forward-char 1) | |
1928 (c-forward-syntactic-ws indent-point) | |
1929 (c-add-syntax 'arglist-cont (c-point 'boi))) | |
1930 )) | |
24282 | 1931 ;; CASE 8: func-local multi-inheritance line |
18720 | 1932 ((and c-baseclass-key |
1933 (save-excursion | |
1934 (goto-char indent-point) | |
1935 (skip-chars-forward " \t") | |
1936 (looking-at c-baseclass-key))) | |
1937 (goto-char indent-point) | |
1938 (skip-chars-forward " \t") | |
1939 (cond | |
24282 | 1940 ;; CASE 8A: non-hanging colon on an inher intro |
18720 | 1941 ((eq char-after-ip ?:) |
1942 (c-backward-syntactic-ws lim) | |
1943 (c-add-syntax 'inher-intro (c-point 'boi))) | |
24282 | 1944 ;; CASE 8B: hanging colon on an inher intro |
18720 | 1945 ((eq char-before-ip ?:) |
1946 (c-add-syntax 'inher-intro (c-point 'boi))) | |
24282 | 1947 ;; CASE 8C: a continued inheritance line |
18720 | 1948 (t |
1949 (c-beginning-of-inheritance-list lim) | |
1950 (c-add-syntax 'inher-cont (point)) | |
1951 ))) | |
24282 | 1952 ;; CASE 9: we are inside a brace-list |
1953 ((setq special-brace-list | |
1954 (or (and c-special-brace-lists | |
1955 (save-excursion | |
1956 (goto-char containing-sexp) | |
1957 (c-looking-at-special-brace-list))) | |
1958 (c-inside-bracelist-p containing-sexp state))) | |
18720 | 1959 (cond |
24282 | 1960 ;; CASE 9A: In the middle of a special brace list opener. |
1961 ((and (consp special-brace-list) | |
1962 (eq char-after-ip (car (cdr special-brace-list)))) | |
1963 (goto-char (car (car special-brace-list))) | |
1964 (c-beginning-of-statement-1 lim) | |
1965 (c-forward-token-1 0) | |
1966 (if (looking-at "typedef\\>") (c-forward-token-1 1)) | |
1967 (c-add-syntax 'brace-list-open (c-point 'boi))) | |
1968 ;; CASE 9B: brace-list-close brace | |
1969 ((if (consp special-brace-list) | |
1970 ;; Check special brace list closer. | |
1971 (progn | |
1972 (goto-char (car (car special-brace-list))) | |
1973 (save-excursion | |
1974 (goto-char indent-point) | |
1975 (back-to-indentation) | |
1976 (or | |
1977 ;; We were between the special close char and the `)'. | |
1978 (and (eq (char-after) ?\)) | |
1979 (eq (1+ (point)) (cdr (car special-brace-list)))) | |
1980 ;; We were before the special close char. | |
1981 (and (eq (char-after) (cdr (cdr special-brace-list))) | |
1982 (= (c-forward-token-1) 0) | |
1983 (eq (1+ (point)) (cdr (car special-brace-list))))))) | |
1984 ;; Normal brace list check. | |
1985 (and (eq char-after-ip ?}) | |
1986 (c-safe (progn (forward-char 1) | |
1987 (c-backward-sexp 1) | |
1988 t)) | |
1989 (= (point) containing-sexp))) | |
18720 | 1990 (c-add-syntax 'brace-list-close (c-point 'boi))) |
24282 | 1991 (t |
1992 ;; Prepare for the rest of the cases below by going to the | |
1993 ;; token following the opening brace | |
1994 (if (consp special-brace-list) | |
1995 (progn | |
1996 (goto-char (car (car special-brace-list))) | |
1997 (c-forward-token-1 1 nil indent-point)) | |
1998 (goto-char containing-sexp)) | |
1999 (forward-char) | |
2000 (let ((start (point))) | |
18720 | 2001 (c-forward-syntactic-ws indent-point) |
24282 | 2002 (goto-char (max start (c-point 'bol)))) |
2003 (skip-chars-forward " \t\n\r" indent-point) | |
2004 (cond | |
2005 ;; CASE 9C: we're looking at the first line in a brace-list | |
2006 ((= (point) indent-point) | |
2007 (goto-char containing-sexp) | |
2008 (c-add-syntax 'brace-list-intro (c-point 'boi)) | |
2009 ) ; end CASE 9C | |
2010 ;; CASE 9D: this is just a later brace-list-entry or | |
2011 ;; brace-entry-open | |
2012 (t (if (or (eq char-after-ip ?{) | |
2013 (and c-special-brace-lists | |
2014 (save-excursion | |
2015 (goto-char indent-point) | |
2016 (c-forward-syntactic-ws (c-point 'eol)) | |
2017 (c-looking-at-special-brace-list (point))))) | |
2018 (c-add-syntax 'brace-entry-open (point)) | |
2019 (c-add-syntax 'brace-list-entry (point)) | |
2020 )) ; end CASE 9D | |
2021 )))) ; end CASE 9 | |
2022 ;; CASE 10: A continued statement | |
2023 ((and (not (memq char-before-ip '(?\; ?:))) | |
2024 (or (not (eq char-before-ip ?})) | |
2025 (c-looking-at-inexpr-block-backward containing-sexp)) | |
18720 | 2026 (> (point) |
2027 (save-excursion | |
2028 (c-beginning-of-statement-1 containing-sexp) | |
24282 | 2029 (c-forward-syntactic-ws) |
18720 | 2030 (setq placeholder (point)))) |
2031 (/= placeholder containing-sexp)) | |
2032 (goto-char indent-point) | |
2033 (skip-chars-forward " \t") | |
2034 (let ((after-cond-placeholder | |
2035 (save-excursion | |
2036 (goto-char placeholder) | |
2037 (if (looking-at c-conditional-key) | |
2038 (progn | |
2039 (c-safe (c-skip-conditional)) | |
2040 (c-forward-syntactic-ws) | |
2041 (if (eq (char-after) ?\;) | |
2042 (progn | |
2043 (forward-char 1) | |
2044 (c-forward-syntactic-ws))) | |
2045 (point)) | |
2046 nil)))) | |
2047 (cond | |
24282 | 2048 ;; CASE 10A: substatement |
18720 | 2049 ((and after-cond-placeholder |
2050 (>= after-cond-placeholder indent-point)) | |
2051 (goto-char placeholder) | |
2052 (if (eq char-after-ip ?{) | |
2053 (c-add-syntax 'substatement-open (c-point 'boi)) | |
2054 (c-add-syntax 'substatement (c-point 'boi)))) | |
24282 | 2055 ;; CASE 10B: open braces for class or brace-lists |
2056 ((setq special-brace-list | |
2057 (or (and c-special-brace-lists | |
2058 (c-looking-at-special-brace-list)) | |
2059 (eq char-after-ip ?{))) | |
18720 | 2060 (cond |
24282 | 2061 ;; CASE 10B.1: class-open |
18720 | 2062 ((save-excursion |
2063 (goto-char indent-point) | |
2064 (skip-chars-forward " \t{") | |
2065 (let ((decl (c-search-uplist-for-classkey (c-parse-state)))) | |
2066 (and decl | |
2067 (setq placeholder (aref decl 0))) | |
2068 )) | |
2069 (c-add-syntax 'class-open placeholder)) | |
24282 | 2070 ;; CASE 10B.2: brace-list-open |
2071 ((or (consp special-brace-list) | |
2072 (save-excursion | |
18720 | 2073 (goto-char placeholder) |
2074 (looking-at "\\<enum\\>")) | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2075 (save-excursion |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2076 (goto-char indent-point) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2077 (while (and (> (point) placeholder) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2078 (= (c-backward-token-1 1 t) 0) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2079 (/= (char-after) ?=))) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2080 (eq (char-after) ?=))) |
18720 | 2081 (c-add-syntax 'brace-list-open placeholder)) |
24282 | 2082 ;; CASE 10B.3: catch-all for unknown construct. |
18720 | 2083 (t |
2084 ;; Can and should I add an extensibility hook here? | |
2085 ;; Something like c-recognize-hook so support for | |
2086 ;; unknown constructs could be added. It's probably a | |
2087 ;; losing proposition, so I dunno. | |
2088 (goto-char placeholder) | |
2089 (c-add-syntax 'statement-cont (c-point 'boi)) | |
2090 (c-add-syntax 'block-open)) | |
2091 )) | |
24282 | 2092 ;; CASE 10C: iostream insertion or extraction operator |
18720 | 2093 ((looking-at "<<\\|>>") |
2094 (goto-char placeholder) | |
2095 (and after-cond-placeholder | |
2096 (goto-char after-cond-placeholder)) | |
2097 (while (and (re-search-forward "<<\\|>>" indent-point 'move) | |
2098 (c-in-literal placeholder))) | |
2099 ;; if we ended up at indent-point, then the first | |
2100 ;; streamop is on a separate line. Indent the line like | |
2101 ;; a statement-cont instead | |
2102 (if (/= (point) indent-point) | |
2103 (c-add-syntax 'stream-op (c-point 'boi)) | |
2104 (c-backward-syntactic-ws lim) | |
2105 (c-add-syntax 'statement-cont (c-point 'boi)))) | |
24282 | 2106 ;; CASE 10D: continued statement. find the accurate |
18720 | 2107 ;; beginning of statement or substatement |
2108 (t | |
2109 (c-beginning-of-statement-1 after-cond-placeholder) | |
2110 ;; KLUDGE ALERT! c-beginning-of-statement-1 can leave | |
2111 ;; us before the lim we're passing in. It should be | |
2112 ;; fixed, but I'm worried about side-effects at this | |
2113 ;; late date. Fix for v5. | |
2114 (goto-char (or (and after-cond-placeholder | |
2115 (max after-cond-placeholder (point))) | |
2116 (point))) | |
2117 (c-add-syntax 'statement-cont (point))) | |
2118 ))) | |
24282 | 2119 ;; CASE 11: an else clause? |
18720 | 2120 ((looking-at "\\<else\\>[^_]") |
2121 (c-backward-to-start-of-if containing-sexp) | |
2122 (c-add-syntax 'else-clause (c-point 'boi))) | |
24282 | 2123 ;; CASE 12: Statement. But what kind? Lets see if its a |
18720 | 2124 ;; while closure of a do/while construct |
2125 ((progn | |
2126 (goto-char indent-point) | |
2127 (skip-chars-forward " \t") | |
2128 (and (looking-at "while\\b[^_]") | |
2129 (save-excursion | |
2130 (c-backward-to-start-of-do containing-sexp) | |
2131 (setq placeholder (point)) | |
2132 (looking-at "do\\b[^_]")) | |
2133 )) | |
2134 (c-add-syntax 'do-while-closure placeholder)) | |
24282 | 2135 ;; CASE 13: A catch or finally clause? This case is simpler |
2136 ;; than if-else and do-while, because a block is required | |
2137 ;; after every try, catch and finally. | |
2138 ((save-excursion | |
2139 (and (cond ((c-major-mode-is 'c++-mode) | |
2140 (looking-at "\\<catch\\>[^_]")) | |
2141 ((c-major-mode-is 'java-mode) | |
2142 (looking-at "\\<\\(catch\\|finally\\)\\>[^_]"))) | |
2143 (c-safe (c-backward-sexp) t) | |
2144 (eq (char-after) ?{) | |
2145 (c-safe (c-backward-sexp) t) | |
2146 (if (eq (char-after) ?\() | |
2147 (c-safe (c-backward-sexp) t) | |
2148 t) | |
2149 (looking-at "\\<\\(try\\|catch\\)\\>[^_]") | |
2150 (setq placeholder (c-point 'boi)))) | |
2151 (c-add-syntax 'catch-clause placeholder)) | |
2152 ;; CASE 14: A case or default label | |
18720 | 2153 ((looking-at c-switch-label-key) |
2154 (goto-char containing-sexp) | |
2155 ;; check for hanging braces | |
2156 (if (/= (point) (c-point 'boi)) | |
24282 | 2157 (c-forward-sexp -1)) |
18720 | 2158 (c-add-syntax 'case-label (c-point 'boi))) |
24282 | 2159 ;; CASE 15: any other label |
18720 | 2160 ((looking-at c-label-key) |
2161 (goto-char containing-sexp) | |
24282 | 2162 ;; check for hanging braces |
2163 (if (/= (point) (c-point 'boi)) | |
2164 (c-forward-sexp -1)) | |
18720 | 2165 (c-add-syntax 'label (c-point 'boi))) |
24282 | 2166 ;; CASE 16: block close brace, possibly closing the defun or |
18720 | 2167 ;; the class |
2168 ((eq char-after-ip ?}) | |
2169 (let* ((lim (c-safe-position containing-sexp fullstate)) | |
2170 (relpos (save-excursion | |
2171 (goto-char containing-sexp) | |
2172 (if (/= (point) (c-point 'boi)) | |
2173 (c-beginning-of-statement-1 lim)) | |
2174 (c-point 'boi)))) | |
2175 (cond | |
24282 | 2176 ;; CASE 16A: closing a lambda defun or an in-expression |
2177 ;; block? | |
2178 ((save-excursion | |
2179 (goto-char containing-sexp) | |
2180 (setq placeholder (c-looking-at-inexpr-block))) | |
2181 (setq tmpsymbol (if (eq (car placeholder) 'inlambda) | |
2182 'inline-close | |
2183 'block-close)) | |
2184 (goto-char containing-sexp) | |
2185 (back-to-indentation) | |
2186 (if (= containing-sexp (point)) | |
2187 (c-add-syntax tmpsymbol (point)) | |
2188 (goto-char (cdr placeholder)) | |
2189 (c-add-syntax tmpsymbol (c-point 'boi)) | |
2190 (c-add-syntax (car placeholder)))) | |
2191 ;; CASE 16B: does this close an inline or a function in | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2192 ;; an extern block or namespace? |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2193 ((progn |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2194 (goto-char containing-sexp) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2195 (setq placeholder (c-search-uplist-for-classkey state))) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2196 (goto-char (aref placeholder 0)) |
24282 | 2197 (if (looking-at (concat c-extra-toplevel-key "[^_]")) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2198 (c-add-syntax 'defun-close relpos) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2199 (c-add-syntax 'inline-close relpos))) |
24282 | 2200 ;; CASE 16C: if there an enclosing brace that hasn't |
18720 | 2201 ;; been narrowed out by a class, then this is a |
2202 ;; block-close | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
2203 ((and (not inenclosing-p) |
18720 | 2204 (c-most-enclosing-brace state)) |
2205 (c-add-syntax 'block-close relpos)) | |
24282 | 2206 ;; CASE 16D: find out whether we're closing a top-level |
18720 | 2207 ;; class or a defun |
2208 (t | |
2209 (save-restriction | |
2210 (narrow-to-region (point-min) indent-point) | |
2211 (let ((decl (c-search-uplist-for-classkey (c-parse-state)))) | |
2212 (if decl | |
24282 | 2213 (c-add-class-syntax 'class-close decl) |
18720 | 2214 (c-add-syntax 'defun-close relpos))))) |
2215 ))) | |
24282 | 2216 ;; CASE 17: statement catchall |
18720 | 2217 (t |
2218 ;; we know its a statement, but we need to find out if it is | |
2219 ;; the first statement in a block | |
2220 (goto-char containing-sexp) | |
2221 (forward-char 1) | |
2222 (c-forward-syntactic-ws indent-point) | |
2223 ;; now skip forward past any case/default clauses we might find. | |
2224 (while (or (c-skip-case-statement-forward fullstate indent-point) | |
2225 (and (looking-at c-switch-label-key) | |
2226 (not inswitch-p))) | |
2227 (setq inswitch-p t)) | |
2228 ;; we want to ignore non-case labels when skipping forward | |
2229 (while (and (looking-at c-label-key) | |
2230 (goto-char (match-end 0))) | |
2231 (c-forward-syntactic-ws indent-point)) | |
2232 (cond | |
24282 | 2233 ;; CASE 17A: we are inside a case/default clause inside a |
18720 | 2234 ;; switch statement. find out if we are at the statement |
2235 ;; just after the case/default label. | |
2236 ((and inswitch-p | |
2237 (progn | |
2238 (goto-char indent-point) | |
2239 (c-backward-syntactic-ws containing-sexp) | |
2240 (back-to-indentation) | |
2241 (setq placeholder (point)) | |
2242 (looking-at c-switch-label-key))) | |
2243 (goto-char indent-point) | |
2244 (skip-chars-forward " \t") | |
2245 (if (eq (char-after) ?{) | |
2246 (c-add-syntax 'statement-case-open placeholder) | |
2247 (c-add-syntax 'statement-case-intro placeholder))) | |
24282 | 2248 ;; CASE 17B: continued statement |
18720 | 2249 ((eq char-before-ip ?,) |
2250 (c-add-syntax 'statement-cont (c-point 'boi))) | |
24282 | 2251 ;; CASE 17C: a question/colon construct? But make sure |
18720 | 2252 ;; what came before was not a label, and what comes after |
2253 ;; is not a globally scoped function call! | |
2254 ((or (and (memq char-before-ip '(?: ??)) | |
2255 (save-excursion | |
2256 (goto-char indent-point) | |
2257 (c-backward-syntactic-ws lim) | |
2258 (back-to-indentation) | |
2259 (not (looking-at c-label-key)))) | |
2260 (and (memq char-after-ip '(?: ??)) | |
2261 (save-excursion | |
2262 (goto-char indent-point) | |
2263 (skip-chars-forward " \t") | |
2264 ;; watch out for scope operator | |
2265 (not (looking-at "::"))))) | |
2266 (c-add-syntax 'statement-cont (c-point 'boi))) | |
24282 | 2267 ;; CASE 17D: any old statement |
18720 | 2268 ((< (point) indent-point) |
2269 (let ((safepos (c-most-enclosing-brace fullstate)) | |
2270 relpos done) | |
2271 (goto-char indent-point) | |
2272 (c-beginning-of-statement-1 safepos) | |
2273 ;; It is possible we're on the brace that opens a nested | |
2274 ;; function. | |
2275 (if (and (eq (char-after) ?{) | |
2276 (save-excursion | |
2277 (c-backward-syntactic-ws safepos) | |
2278 (not (eq (char-before) ?\;)))) | |
2279 (c-beginning-of-statement-1 safepos)) | |
2280 (if (and inswitch-p | |
2281 (looking-at c-switch-label-key)) | |
2282 (progn | |
2283 (goto-char placeholder) | |
2284 (end-of-line) | |
24282 | 2285 (c-forward-sexp -1))) |
18720 | 2286 (setq relpos (c-point 'boi)) |
2287 (while (and (not done) | |
2288 (<= safepos (point)) | |
2289 (/= relpos (point))) | |
2290 (c-beginning-of-statement-1 safepos) | |
2291 (if (= relpos (c-point 'boi)) | |
2292 (setq done t)) | |
2293 (setq relpos (c-point 'boi))) | |
2294 (c-add-syntax 'statement relpos) | |
2295 (if (eq char-after-ip ?{) | |
2296 (c-add-syntax 'block-open)))) | |
24282 | 2297 ;; CASE 17E: first statement in an in-expression block |
2298 ((setq placeholder | |
2299 (save-excursion | |
2300 (goto-char containing-sexp) | |
2301 (c-looking-at-inexpr-block))) | |
2302 (goto-char containing-sexp) | |
2303 (back-to-indentation) | |
2304 (if (= containing-sexp (point)) | |
2305 (c-add-syntax 'statement-block-intro (point)) | |
2306 (goto-char (cdr placeholder)) | |
2307 (c-add-syntax 'statement-block-intro (c-point 'boi)) | |
2308 (c-add-syntax (car placeholder))) | |
2309 (if (eq char-after-ip ?{) | |
2310 (c-add-syntax 'block-open))) | |
2311 ;; CASE 17F: first statement in an inline, or first | |
18720 | 2312 ;; statement in a top-level defun. we can tell this is it |
2313 ;; if there are no enclosing braces that haven't been | |
2314 ;; narrowed out by a class (i.e. don't use bod here!) | |
2315 ((save-excursion | |
2316 (save-restriction | |
2317 (widen) | |
2318 (goto-char containing-sexp) | |
2319 (c-narrow-out-enclosing-class state containing-sexp) | |
2320 (not (c-most-enclosing-brace state)))) | |
2321 (goto-char containing-sexp) | |
2322 ;; if not at boi, then defun-opening braces are hung on | |
2323 ;; right side, so we need a different relpos | |
2324 (if (/= (point) (c-point 'boi)) | |
2325 (progn | |
2326 (c-backward-syntactic-ws) | |
24282 | 2327 (c-safe (c-forward-sexp (if (eq (char-before) ?\)) |
2328 -1 -2))) | |
18720 | 2329 ;; looking at a Java throws clause following a |
2330 ;; method's parameter list | |
2331 (c-beginning-of-statement-1) | |
2332 )) | |
2333 (c-add-syntax 'defun-block-intro (c-point 'boi))) | |
24282 | 2334 ;; CASE 17G: first statement in a block |
18720 | 2335 (t (goto-char containing-sexp) |
2336 (if (/= (point) (c-point 'boi)) | |
2337 (c-beginning-of-statement-1 | |
2338 (if (= (point) lim) | |
2339 (c-safe-position (point) state) lim))) | |
2340 (c-add-syntax 'statement-block-intro (c-point 'boi)) | |
2341 (if (eq char-after-ip ?{) | |
2342 (c-add-syntax 'block-open))) | |
2343 )) | |
2344 ) | |
2345 | |
2346 ;; now we need to look at any modifiers | |
2347 (goto-char indent-point) | |
2348 (skip-chars-forward " \t") | |
2349 ;; are we looking at a comment only line? | |
2350 (if (looking-at c-comment-start-regexp) | |
2351 (c-add-syntax 'comment-intro)) | |
2352 ;; we might want to give additional offset to friends (in C++). | |
24282 | 2353 (if (and (c-major-mode-is 'c++-mode) |
18720 | 2354 (looking-at c-C++-friend-key)) |
2355 (c-add-syntax 'friend)) | |
2356 ;; return the syntax | |
2357 syntax)))) | |
2358 | |
2359 | |
2360 (defun c-echo-parsing-error () | |
2361 (if (not c-parsing-error) | |
2362 nil | |
2363 (message "unbalanced close brace at bufpos %d -- INDENTATION IS SUSPECT!" | |
2364 c-parsing-error) | |
2365 (ding)) | |
2366 c-parsing-error) | |
2367 | |
2368 ;; indent via syntactic language elements | |
2369 (defun c-indent-line (&optional syntax) | |
2370 ;; indent the current line as C/C++/ObjC code. Optional SYNTAX is the | |
2371 ;; syntactic information for the current line. Returns the amount of | |
24282 | 2372 ;; indentation change (in columns). |
18720 | 2373 (let* ((c-syntactic-context (or syntax (c-guess-basic-syntax))) |
2374 (pos (- (point-max) (point))) | |
2375 (indent (apply '+ (mapcar 'c-get-offset c-syntactic-context))) | |
2376 (shift-amt (- (current-indentation) indent))) | |
2377 (and c-echo-syntactic-information-p | |
2378 (not (c-echo-parsing-error)) | |
2379 (message "syntax: %s, indent= %d" c-syntactic-context indent)) | |
2380 (if (zerop shift-amt) | |
2381 nil | |
2382 (delete-region (c-point 'bol) (c-point 'boi)) | |
2383 (beginning-of-line) | |
2384 (indent-to indent)) | |
2385 (if (< (point) (c-point 'boi)) | |
2386 (back-to-indentation) | |
2387 ;; If initial point was within line's indentation, position after | |
2388 ;; the indentation. Else stay at same point in text. | |
2389 (if (> (- (point-max) pos) (point)) | |
2390 (goto-char (- (point-max) pos))) | |
2391 ) | |
2392 (run-hooks 'c-special-indent-hook) | |
2393 shift-amt)) | |
2394 | |
2395 (defun c-show-syntactic-information (arg) | |
2396 "Show syntactic information for current line. | |
2397 With universal argument, inserts the analysis as a comment on that line." | |
2398 (interactive "P") | |
2399 (let ((syntax (c-guess-basic-syntax))) | |
2400 (if (not (consp arg)) | |
2401 (if (not (c-echo-parsing-error)) | |
2402 (message "syntactic analysis: %s" syntax)) | |
2403 (indent-for-comment) | |
2404 (insert (format "%s" syntax)) | |
2405 )) | |
2406 (c-keep-region-active)) | |
2407 | |
2408 | |
2409 (provide 'cc-engine) | |
2410 ;;; cc-engine.el ends here |