Mercurial > emacs
annotate lisp/progmodes/cc-engine.el @ 19414:d1aed74cff5e
Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 18 Aug 1997 11:03:26 +0000 |
parents | 989d0412ada3 |
children | dc7a5df6e4b9 |
rev | line source |
---|---|
18720 | 1 ;;; cc-engine.el --- core syntax guessing engine for CC mode |
2 | |
3 ;; Copyright (C) 1985,87,92,93,94,95,96,97 Free Software Foundation, Inc. | |
4 | |
5 ;; Authors: 1992-1997 Barry A. Warsaw | |
6 ;; 1987 Dave Detlefs and Stewart Clamen | |
7 ;; 1985 Richard M. Stallman | |
8 ;; Maintainer: cc-mode-help@python.org | |
9 ;; Created: 22-Apr-1997 (split from cc-mode.el) | |
19377
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
10 ;; Version: 5.16 |
18720 | 11 ;; Keywords: c languages oop |
12 | |
13 ;; This file is part of GNU Emacs. | |
14 | |
15 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
16 ;; it under the terms of the GNU General Public License as published by | |
17 ;; the Free Software Foundation; either version 2, or (at your option) | |
18 ;; any later version. | |
19 | |
20 ;; GNU Emacs is distributed in the hope that it will be useful, | |
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
23 ;; GNU General Public License for more details. | |
24 | |
25 ;; You should have received a copy of the GNU General Public License | |
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
28 ;; Boston, MA 02111-1307, USA. | |
29 | |
30 | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
31 ;; 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
|
32 ;; 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
|
33 ;; 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
|
34 ;; the byte compiler. |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
35 (defvar c-maybe-labelp nil) |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
36 |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
37 ;; WARNING WARNING WARNING |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
38 ;; |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
39 ;; Be *exceptionally* careful about modifications to this function! |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
40 ;; 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
|
41 ;; 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
|
42 ;; 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
|
43 ;; |
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
44 ;; WARNING WARNING WARNING |
18720 | 45 |
46 (defun c-beginning-of-statement-1 (&optional lim) | |
47 ;; move to the start of the current statement, or the previous | |
48 ;; statement if already at the beginning of one. | |
49 (let ((firstp t) | |
50 (substmt-p t) | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
51 donep c-in-literal-cache saved |
18720 | 52 (last-begin (point))) |
53 ;; first check for bare semicolon | |
54 (if (and (progn (c-backward-syntactic-ws lim) | |
55 (eq (char-before) ?\;)) | |
56 (c-safe (progn (forward-char -1) | |
57 (setq saved (point)) | |
58 t)) | |
59 (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
|
60 (memq (char-before) '(?\; ?{ ?:))) |
18720 | 61 ) |
62 (setq last-begin saved) | |
63 (goto-char last-begin) | |
64 (while (not donep) | |
65 ;; stop at beginning of buffer | |
66 (if (bobp) (setq donep t) | |
67 ;; go backwards one balanced expression, but be careful of | |
68 ;; unbalanced paren being reached | |
69 (if (not (c-safe (progn (backward-sexp 1) t))) | |
70 (progn | |
71 (if firstp | |
72 (backward-up-list 1) | |
73 (goto-char last-begin)) | |
74 ;; skip over any unary operators, or other special | |
75 ;; characters appearing at front of identifier | |
76 (save-excursion | |
77 (c-backward-syntactic-ws lim) | |
78 (skip-chars-backward "-+!*&:.~ \t\n") | |
79 (if (eq (char-before) ?\() | |
80 (setq last-begin (point)))) | |
81 (goto-char last-begin) | |
82 (setq last-begin (point) | |
83 donep t))) | |
84 | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
85 (setq c-maybe-labelp nil) |
18720 | 86 ;; see if we're in a literal. if not, then this bufpos may be |
87 ;; a candidate for stopping | |
88 (cond | |
89 ;; CASE 0: did we hit the error condition above? | |
90 (donep) | |
91 ;; CASE 1: are we in a literal? | |
92 ((eq (c-in-literal lim) 'pound) | |
93 (beginning-of-line)) | |
94 ;; CASE 2: some other kind of literal? | |
95 ((c-in-literal lim)) | |
96 ;; CASE 3: are we looking at a conditional keyword? | |
97 ((or (looking-at c-conditional-key) | |
98 (and (eq (char-after) ?\() | |
99 (save-excursion | |
100 (forward-sexp 1) | |
101 (c-forward-syntactic-ws) | |
102 (not (eq (char-after) ?\;))) | |
103 (let ((here (point)) | |
104 (foundp (progn | |
105 (c-backward-syntactic-ws lim) | |
106 (forward-word -1) | |
107 (and lim | |
108 (<= lim (point)) | |
109 (not (c-in-literal lim)) | |
110 (looking-at c-conditional-key) | |
111 )))) | |
112 ;; did we find a conditional? | |
113 (if (not foundp) | |
114 (goto-char here)) | |
115 foundp))) | |
116 ;; are we in the middle of an else-if clause? | |
117 (if (save-excursion | |
118 (and (not substmt-p) | |
119 (c-safe (progn (forward-sexp -1) t)) | |
120 (looking-at "\\<else\\>[ \t\n]+\\<if\\>") | |
121 (not (c-in-literal lim)))) | |
122 (progn | |
123 (forward-sexp -1) | |
124 (c-backward-to-start-of-if lim))) | |
125 ;; are we sitting at an else clause, that we are not a | |
126 ;; substatement of? | |
127 (if (and (not substmt-p) | |
128 (looking-at "\\<else\\>[^_]")) | |
129 (c-backward-to-start-of-if lim)) | |
130 ;; are we sitting at the while of a do-while? | |
131 (if (and (looking-at "\\<while\\>[^_]") | |
132 (c-backward-to-start-of-do lim)) | |
133 (setq substmt-p nil)) | |
134 (setq last-begin (point) | |
135 donep substmt-p)) | |
136 ;; CASE 4: are we looking at a label? | |
137 ((looking-at c-label-key)) | |
138 ;; CASE 5: is this the first time we're checking? | |
139 (firstp (setq firstp nil | |
140 substmt-p (not (c-crosses-statement-barrier-p | |
141 (point) last-begin)) | |
142 last-begin (point))) | |
143 ;; CASE 6: have we crossed a statement barrier? | |
144 ((c-crosses-statement-barrier-p (point) last-begin) | |
145 (setq donep t)) | |
146 ;; CASE 7: ignore labels | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
147 ((and c-maybe-labelp |
18720 | 148 (or (and c-access-key (looking-at c-access-key)) |
149 ;; with switch labels, we have to go back further | |
150 ;; to try to pick up the case or default | |
151 ;; keyword. Potential bogosity alert: we assume | |
152 ;; `case' or `default' is first thing on line | |
153 (let ((here (point))) | |
154 (beginning-of-line) | |
155 (c-forward-syntactic-ws) | |
156 (if (looking-at c-switch-label-key) | |
157 t | |
158 (goto-char here) | |
159 nil)) | |
160 (looking-at c-label-key)))) | |
161 ;; CASE 8: ObjC or Java method def | |
162 ((and c-method-key | |
163 (setq last-begin (c-in-method-def-p))) | |
164 (setq donep t)) | |
165 ;; CASE 9: nothing special | |
166 (t (setq last-begin (point))) | |
167 )))) | |
168 (goto-char last-begin) | |
169 ;; we always do want to skip over non-whitespace modifier | |
170 ;; characters that didn't get skipped above | |
171 (skip-chars-backward "-+!*&:.~" (c-point 'boi)))) | |
172 | |
173 (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
|
174 (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
|
175 (let (beg end found) |
18720 | 176 (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
|
177 (progn |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
178 (setq beg (point)) |
18720 | 179 (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
|
180 (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
|
181 (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
|
182 (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
|
183 (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
|
184 (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
|
185 (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
|
186 (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
|
187 (not found))) |
989d0412ada3
(c-end-of-statement-1): Eliminate false hits on important characters
Richard M. Stallman <rms@gnu.org>
parents:
19301
diff
changeset
|
188 (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
|
189 (re-search-backward "[;{}]") |
18720 | 190 (forward-char 1)) |
191 (error | |
192 (let ((beg (point))) | |
193 (backward-up-list -1) | |
194 (let ((end (point))) | |
195 (goto-char beg) | |
196 (search-forward ";" end 'move)))))) | |
197 | |
198 | |
199 | |
200 (defun c-crosses-statement-barrier-p (from to) | |
201 ;; Does buffer positions FROM to TO cross a C statement boundary? | |
202 (let ((here (point)) | |
203 (lim from) | |
204 crossedp) | |
205 (condition-case () | |
206 (progn | |
207 (goto-char from) | |
208 (while (and (not crossedp) | |
209 (< (point) to)) | |
210 (skip-chars-forward "^;{}:" to) | |
211 (if (not (c-in-literal lim)) | |
212 (progn | |
213 (if (memq (char-after) '(?\; ?{ ?})) | |
214 (setq crossedp t) | |
215 (if (eq (char-after) ?:) | |
18844
6b269c4ad2eb
(c-maybe-labelp): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18720
diff
changeset
|
216 (setq c-maybe-labelp t)) |
18720 | 217 (forward-char 1)) |
218 (setq lim (point))) | |
219 (forward-char 1)))) | |
220 (error (setq crossedp nil))) | |
221 (goto-char here) | |
222 crossedp)) | |
223 | |
224 | |
225 ;; Skipping of "syntactic whitespace", defined as lexical whitespace, | |
226 ;; C and C++ style comments, and preprocessor directives. Search no | |
227 ;; farther back or forward than optional LIM. If LIM is omitted, | |
228 ;; `beginning-of-defun' is used for backward skipping, point-max is | |
229 ;; used for forward skipping. | |
230 | |
231 (defun c-forward-syntactic-ws (&optional lim) | |
232 ;; Forward skip of syntactic whitespace for Emacs 19. | |
233 (save-restriction | |
234 (let* ((lim (or lim (point-max))) | |
235 (here lim) | |
236 (hugenum (point-max))) | |
237 (narrow-to-region lim (point)) | |
238 (while (/= here (point)) | |
239 (setq here (point)) | |
240 (forward-comment hugenum) | |
241 ;; skip preprocessor directives | |
242 (if (and (eq (char-after) ?#) | |
243 (= (c-point 'boi) (point))) | |
244 (end-of-line) | |
245 ))))) | |
246 | |
247 (defun c-backward-syntactic-ws (&optional lim) | |
248 ;; Backward skip over syntactic whitespace for Emacs 19. | |
249 (save-restriction | |
250 (let* ((lim (or lim (c-point 'bod))) | |
251 (here lim) | |
252 (hugenum (- (point-max)))) | |
253 (if (< lim (point)) | |
254 (progn | |
255 (narrow-to-region lim (point)) | |
256 (while (/= here (point)) | |
257 (setq here (point)) | |
258 (forward-comment hugenum) | |
259 (if (eq (c-in-literal lim) 'pound) | |
260 (beginning-of-line)) | |
261 ))) | |
262 ))) | |
263 | |
264 | |
265 ;; Return `c' if in a C-style comment, `c++' if in a C++ style | |
266 ;; comment, `string' if in a string literal, `pound' if on a | |
267 ;; preprocessor line, or nil if not in a comment at all. Optional LIM | |
268 ;; is used as the backward limit of the search. If omitted, or nil, | |
269 ;; `beginning-of-defun' is used." | |
270 | |
271 (defun c-in-literal (&optional lim) | |
272 ;; Determine if point is in a C++ literal. we cache the last point | |
273 ;; calculated if the cache is enabled | |
274 (if (and (boundp 'c-in-literal-cache) | |
275 c-in-literal-cache | |
276 (= (point) (aref c-in-literal-cache 0))) | |
277 (aref c-in-literal-cache 1) | |
278 (let ((rtn (save-excursion | |
279 (let* ((lim (or lim (c-point 'bod))) | |
280 (here (point)) | |
281 (state (parse-partial-sexp lim (point)))) | |
282 (cond | |
283 ((nth 3 state) 'string) | |
284 ((nth 4 state) (if (nth 7 state) 'c++ 'c)) | |
285 ((progn | |
286 (goto-char here) | |
287 (beginning-of-line) | |
288 (looking-at "[ \t]*#")) | |
289 'pound) | |
290 (t nil)))))) | |
291 ;; cache this result if the cache is enabled | |
292 (and (boundp 'c-in-literal-cache) | |
293 (setq c-in-literal-cache (vector (point) rtn))) | |
294 rtn))) | |
295 | |
296 | |
297 ;; utilities for moving and querying around syntactic elements | |
298 (defvar c-parsing-error nil) | |
299 | |
300 (defun c-parse-state () | |
301 ;; Finds and records all open parens between some important point | |
302 ;; earlier in the file and point. | |
303 ;; | |
304 ;; if there's a state cache, return it | |
305 (setq c-parsing-error nil) | |
306 (if (boundp 'c-state-cache) c-state-cache | |
307 (let* (at-bob | |
308 (pos (save-excursion | |
309 ;; go back 2 bods, but ignore any bogus positions | |
310 ;; returned by beginning-of-defun (i.e. open paren | |
311 ;; in column zero) | |
312 (let ((cnt 2)) | |
313 (while (not (or at-bob (zerop cnt))) | |
314 (beginning-of-defun) | |
315 (if (eq (char-after) ?\{) | |
316 (setq cnt (1- cnt))) | |
317 (if (bobp) | |
318 (setq at-bob t)))) | |
319 (point))) | |
320 (here (save-excursion | |
321 ;;(skip-chars-forward " \t}") | |
322 (point))) | |
323 (last-bod pos) (last-pos pos) | |
324 placeholder state sexp-end) | |
325 ;; cache last bod position | |
326 (while (catch 'backup-bod | |
327 (setq state nil) | |
328 (while (and pos (< pos here)) | |
329 (setq last-pos pos) | |
330 (if (and (setq pos (c-safe (scan-lists pos 1 -1))) | |
331 (<= pos here)) | |
332 (progn | |
333 (setq sexp-end (c-safe (scan-sexps (1- pos) 1))) | |
334 (if (and sexp-end | |
335 (<= sexp-end here)) | |
336 ;; we want to record both the start and end | |
337 ;; of this sexp, but we only want to record | |
338 ;; the last-most of any of them before here | |
339 (progn | |
340 (if (eq (char-after (1- pos)) ?\{) | |
341 (setq state (cons (cons (1- pos) sexp-end) | |
342 (if (consp (car state)) | |
343 (cdr state) | |
344 state)))) | |
345 (setq pos sexp-end)) | |
346 ;; we're contained in this sexp so put pos on | |
347 ;; front of list | |
348 (setq state (cons (1- pos) state)))) | |
349 ;; something bad happened. check to see if we | |
350 ;; crossed an unbalanced close brace. if so, we | |
351 ;; didn't really find the right `important bufpos' | |
352 ;; so lets back up and try again | |
353 (if (and (not pos) (not at-bob) | |
354 (setq placeholder | |
355 (c-safe (scan-lists last-pos 1 1))) | |
356 ;;(char-after (1- placeholder)) | |
357 (<= placeholder here) | |
358 (eq (char-after (1- placeholder)) ?\})) | |
359 (while t | |
360 (setq last-bod (c-safe (scan-lists last-bod -1 1))) | |
361 (if (not last-bod) | |
362 (progn | |
363 ;; bogus, but what can we do here? | |
364 (setq c-parsing-error (1- placeholder)) | |
365 (throw 'backup-bod nil)) | |
366 (setq at-bob (= last-bod (point-min)) | |
367 pos last-bod) | |
368 (if (= (char-after last-bod) ?\{) | |
369 (throw 'backup-bod t))) | |
370 )) ;end-if | |
371 )) ;end-while | |
372 nil)) | |
373 state))) | |
374 | |
375 (defun c-whack-state (bufpos state) | |
376 ;; whack off any state information that appears on STATE which lies | |
377 ;; after the bounds of BUFPOS. | |
378 (let (newstate car) | |
379 (while state | |
380 (setq car (car state) | |
381 state (cdr state)) | |
382 (if (consp car) | |
383 ;; just check the car, because in a balanced brace | |
384 ;; expression, it must be impossible for the corresponding | |
385 ;; close brace to be before point, but the open brace to be | |
386 ;; after. | |
387 (if (<= bufpos (car car)) | |
388 nil ; whack it off | |
389 ;; its possible that the open brace is before bufpos, but | |
390 ;; the close brace is after. In that case, convert this | |
391 ;; to a non-cons element. | |
392 (if (<= bufpos (cdr car)) | |
393 (setq newstate (append newstate (list (car car)))) | |
394 ;; we know that both the open and close braces are | |
395 ;; before bufpos, so we also know that everything else | |
396 ;; on state is before bufpos, so we can glom up the | |
397 ;; whole thing and exit. | |
398 (setq newstate (append newstate (list car) state) | |
399 state nil))) | |
400 (if (<= bufpos car) | |
401 nil ; whack it off | |
402 ;; it's before bufpos, so everything else should too | |
403 (setq newstate (append newstate (list car) state) | |
404 state nil)))) | |
405 newstate)) | |
406 | |
407 (defun c-hack-state (bufpos which state) | |
408 ;; Using BUFPOS buffer position, and WHICH (must be 'open or | |
409 ;; 'close), hack the c-parse-state STATE and return the results. | |
410 (if (eq which 'open) | |
411 (let ((car (car state))) | |
412 (if (or (null car) | |
413 (consp car) | |
414 (/= bufpos car)) | |
415 (cons bufpos state) | |
416 state)) | |
417 (if (not (eq which 'close)) | |
418 (error "c-hack-state, bad argument: %s" which)) | |
419 ;; 'close brace | |
420 (let ((car (car state)) | |
421 (cdr (cdr state))) | |
422 (if (consp car) | |
423 (setq car (car cdr) | |
424 cdr (cdr cdr))) | |
425 ;; TBD: is this test relevant??? | |
426 (if (consp car) | |
427 state ;on error, don't change | |
428 ;; watch out for balanced expr already on cdr of list | |
429 (cons (cons car bufpos) | |
430 (if (consp (car cdr)) | |
431 (cdr cdr) cdr)) | |
432 )))) | |
433 | |
434 (defun c-adjust-state (from to shift state) | |
435 ;; Adjust all points in state that lie in the region FROM..TO by | |
436 ;; SHIFT amount (as would be returned by c-indent-line). | |
437 (mapcar | |
438 (function | |
439 (lambda (e) | |
440 (if (consp e) | |
441 (let ((car (car e)) | |
442 (cdr (cdr e))) | |
443 (if (and (<= from car) (< car to)) | |
444 (setcar e (+ shift car))) | |
445 (if (and (<= from cdr) (< cdr to)) | |
446 (setcdr e (+ shift cdr)))) | |
447 (if (and (<= from e) (< e to)) | |
448 (setq e (+ shift e)))) | |
449 e)) | |
450 state)) | |
451 | |
452 | |
453 (defun c-beginning-of-inheritance-list (&optional lim) | |
454 ;; Go to the first non-whitespace after the colon that starts a | |
455 ;; multiple inheritance introduction. Optional LIM is the farthest | |
456 ;; back we should search. | |
457 (let ((lim (or lim (c-point 'bod))) | |
458 (placeholder (progn | |
459 (back-to-indentation) | |
460 (point)))) | |
461 (c-backward-syntactic-ws lim) | |
462 (while (and (> (point) lim) | |
463 (memq (char-before) '(?, ?:)) | |
464 (progn | |
465 (beginning-of-line) | |
466 (setq placeholder (point)) | |
467 (skip-chars-forward " \t") | |
468 (not (looking-at c-class-key)) | |
469 )) | |
470 (c-backward-syntactic-ws lim)) | |
471 (goto-char placeholder) | |
472 (skip-chars-forward "^:" (c-point 'eol)))) | |
473 | |
474 (defun c-beginning-of-macro (&optional lim) | |
475 ;; Go to the beginning of the macro. Right now we don't support | |
476 ;; multi-line macros too well | |
477 (back-to-indentation)) | |
478 | |
479 (defun c-in-method-def-p () | |
480 ;; Return nil if we aren't in a method definition, otherwise the | |
481 ;; position of the initial [+-]. | |
482 (save-excursion | |
483 (beginning-of-line) | |
484 (and c-method-key | |
485 (looking-at c-method-key) | |
486 (point)) | |
487 )) | |
488 | |
489 (defun c-just-after-func-arglist-p (&optional containing) | |
490 ;; Return t if we are between a function's argument list closing | |
491 ;; paren and its opening brace. Note that the list close brace | |
492 ;; could be followed by a "const" specifier or a member init hanging | |
493 ;; colon. Optional CONTAINING is position of containing s-exp open | |
494 ;; brace. If not supplied, point is used as search start. | |
495 (save-excursion | |
496 (c-backward-syntactic-ws) | |
497 (let ((checkpoint (or containing (point)))) | |
498 (goto-char checkpoint) | |
499 ;; could be looking at const specifier | |
500 (if (and (eq (char-before) ?t) | |
501 (forward-word -1) | |
502 (looking-at "\\<const\\>")) | |
503 (c-backward-syntactic-ws) | |
504 ;; otherwise, we could be looking at a hanging member init | |
505 ;; colon | |
506 (goto-char checkpoint) | |
507 (if (and (eq (char-before) ?:) | |
508 (progn | |
509 (forward-char -1) | |
510 (c-backward-syntactic-ws) | |
511 (looking-at "[ \t\n]*:\\([^:]+\\|$\\)"))) | |
512 nil | |
513 (goto-char checkpoint)) | |
514 ) | |
515 (and (eq (char-before) ?\)) | |
516 ;; check if we are looking at a method def | |
517 (or (not c-method-key) | |
518 (progn | |
519 (forward-sexp -1) | |
520 (forward-char -1) | |
521 (c-backward-syntactic-ws) | |
522 (not (or (memq (char-before) '(?- ?+)) | |
523 ;; or a class category | |
524 (progn | |
525 (forward-sexp -2) | |
526 (looking-at c-class-key)) | |
527 ))))) | |
528 ))) | |
529 | |
530 ;; defuns to look backwards for things | |
531 (defun c-backward-to-start-of-do (&optional lim) | |
532 ;; Move to the start of the last "unbalanced" do expression. | |
533 ;; Optional LIM is the farthest back to search. If none is found, | |
534 ;; nil is returned and point is left unchanged, otherwise t is returned. | |
535 (let ((do-level 1) | |
536 (case-fold-search nil) | |
537 (lim (or lim (c-point 'bod))) | |
538 (here (point)) | |
539 foundp) | |
540 (while (not (zerop do-level)) | |
541 ;; we protect this call because trying to execute this when the | |
542 ;; while is not associated with a do will throw an error | |
543 (condition-case nil | |
544 (progn | |
545 (backward-sexp 1) | |
546 (cond | |
547 ((memq (c-in-literal lim) '(c c++))) | |
548 ((looking-at "while\\b[^_]") | |
549 (setq do-level (1+ do-level))) | |
550 ((looking-at "do\\b[^_]") | |
551 (if (zerop (setq do-level (1- do-level))) | |
552 (setq foundp t))) | |
553 ((<= (point) lim) | |
554 (setq do-level 0) | |
555 (goto-char lim)))) | |
556 (error | |
557 (goto-char lim) | |
558 (setq do-level 0)))) | |
559 (if (not foundp) | |
560 (goto-char here)) | |
561 foundp)) | |
562 | |
563 (defun c-backward-to-start-of-if (&optional lim) | |
564 ;; Move to the start of the last "unbalanced" if and return t. If | |
565 ;; none is found, and we are looking at an if clause, nil is | |
566 ;; returned. If none is found and we are looking at an else clause, | |
567 ;; an error is thrown. | |
568 (let ((if-level 1) | |
569 (here (c-point 'bol)) | |
570 (case-fold-search nil) | |
571 (lim (or lim (c-point 'bod))) | |
572 (at-if (looking-at "if\\b[^_]"))) | |
573 (catch 'orphan-if | |
574 (while (and (not (bobp)) | |
575 (not (zerop if-level))) | |
576 (c-backward-syntactic-ws) | |
577 (condition-case nil | |
578 (backward-sexp 1) | |
579 (error | |
580 (if at-if | |
581 (throw 'orphan-if nil) | |
582 (error "No matching `if' found for `else' on line %d." | |
583 (1+ (count-lines 1 here)))))) | |
584 (cond | |
585 ((looking-at "else\\b[^_]") | |
586 (setq if-level (1+ if-level))) | |
587 ((looking-at "if\\b[^_]") | |
588 ;; check for else if... skip over | |
589 (let ((here (point))) | |
590 (c-safe (forward-sexp -1)) | |
591 (if (looking-at "\\<else\\>[ \t]+\\<if\\>") | |
592 nil | |
593 (setq if-level (1- if-level)) | |
594 (goto-char here)))) | |
595 ((< (point) lim) | |
596 (setq if-level 0) | |
597 (goto-char lim)) | |
598 )) | |
599 t))) | |
600 | |
601 (defun c-skip-conditional () | |
602 ;; skip forward over conditional at point, including any predicate | |
603 ;; statements in parentheses. No error checking is performed. | |
604 (forward-sexp (cond | |
605 ;; else if() | |
606 ((looking-at "\\<else\\>[ \t]+\\<if\\>") 3) | |
607 ;; do, else, try, finally | |
608 ((looking-at "\\<\\(do\\|else\\|try\\|finally\\)\\>") 1) | |
609 ;; for, if, while, switch, catch, synchronized | |
610 (t 2)))) | |
611 | |
612 (defun c-skip-case-statement-forward (state &optional lim) | |
613 ;; skip forward over case/default bodies, with optional maximal | |
614 ;; limit. if no next case body is found, nil is returned and point | |
615 ;; is not moved | |
616 (let ((lim (or lim (point-max))) | |
617 (here (point)) | |
618 donep foundp bufpos | |
619 (safepos (point)) | |
620 (balanced (car state))) | |
621 ;; search until we've passed the limit, or we've found our match | |
622 (while (and (< (point) lim) | |
623 (not donep)) | |
624 (setq safepos (point)) | |
625 ;; see if we can find a case statement, not in a literal | |
626 (if (and (re-search-forward c-switch-label-key lim 'move) | |
627 (setq bufpos (match-beginning 0)) | |
628 (not (c-in-literal safepos)) | |
629 (/= bufpos here)) | |
630 ;; if we crossed into a balanced sexp, we know the case is | |
631 ;; not part of our switch statement, so just bound over the | |
632 ;; sexp and keep looking. | |
633 (if (and (consp balanced) | |
634 (> bufpos (car balanced)) | |
635 (< bufpos (cdr balanced))) | |
636 (goto-char (cdr balanced)) | |
637 (goto-char bufpos) | |
638 (setq donep t | |
639 foundp t)))) | |
640 (if (not foundp) | |
641 (goto-char here)) | |
642 foundp)) | |
643 | |
644 (defun c-search-uplist-for-classkey (brace-state) | |
645 ;; search for the containing class, returning a 2 element vector if | |
646 ;; found. aref 0 contains the bufpos of the class key, and aref 1 | |
647 ;; contains the bufpos of the open brace. | |
648 (if (null brace-state) | |
649 ;; no brace-state means we cannot be inside a class | |
650 nil | |
651 (let ((carcache (car brace-state)) | |
652 search-start search-end) | |
653 (if (consp carcache) | |
654 ;; a cons cell in the first element means that there is some | |
655 ;; balanced sexp before the current bufpos. this we can | |
656 ;; ignore. the nth 1 and nth 2 elements define for us the | |
657 ;; search boundaries | |
658 (setq search-start (nth 2 brace-state) | |
659 search-end (nth 1 brace-state)) | |
660 ;; if the car was not a cons cell then nth 0 and nth 1 define | |
661 ;; for us the search boundaries | |
662 (setq search-start (nth 1 brace-state) | |
663 search-end (nth 0 brace-state))) | |
664 ;; search-end cannot be a cons cell | |
665 (and (consp search-end) | |
666 (error "consp search-end: %s" search-end)) | |
667 ;; if search-end is nil, or if the search-end character isn't an | |
668 ;; open brace, we are definitely not in a class | |
669 (if (or (not search-end) | |
670 (< search-end (point-min)) | |
671 (not (eq (char-after search-end) ?{))) | |
672 nil | |
673 ;; now, we need to look more closely at search-start. if | |
674 ;; search-start is nil, then our start boundary is really | |
675 ;; point-min. | |
676 (if (not search-start) | |
677 (setq search-start (point-min)) | |
678 ;; if search-start is a cons cell, then we can start | |
679 ;; searching from the end of the balanced sexp just ahead of | |
680 ;; us | |
681 (if (consp search-start) | |
682 (setq search-start (cdr search-start)))) | |
683 ;; now we can do a quick regexp search from search-start to | |
684 ;; search-end and see if we can find a class key. watch for | |
685 ;; class like strings in literals | |
686 (save-excursion | |
687 (save-restriction | |
688 (goto-char search-start) | |
689 (let ((search-key (concat c-class-key "\\|extern[^_]")) | |
690 foundp class match-end) | |
691 (while (and (not foundp) | |
692 (progn | |
693 (c-forward-syntactic-ws) | |
694 (> search-end (point))) | |
695 (re-search-forward search-key search-end t)) | |
696 (setq class (match-beginning 0) | |
697 match-end (match-end 0)) | |
698 (if (c-in-literal search-start) | |
699 nil ; its in a comment or string, ignore | |
700 (goto-char class) | |
701 (skip-chars-forward " \t\n") | |
702 (setq foundp (vector (c-point 'boi) search-end)) | |
703 (cond | |
704 ;; check for embedded keywords | |
705 ((let ((char (char-after (1- class)))) | |
706 (and char | |
707 (memq (char-syntax char) '(?w ?_)))) | |
708 (goto-char match-end) | |
709 (setq foundp nil)) | |
710 ;; make sure we're really looking at the start of a | |
711 ;; class definition, and not a forward decl, return | |
712 ;; arg, template arg list, or an ObjC or Java method. | |
713 ((and c-method-key | |
714 (re-search-forward c-method-key search-end t)) | |
715 (setq foundp nil)) | |
716 ;; Its impossible to define a regexp for this, and | |
717 ;; nearly so to do it programmatically. | |
718 ;; | |
719 ;; ; picks up forward decls | |
720 ;; = picks up init lists | |
721 ;; ) picks up return types | |
722 ;; > picks up templates, but remember that we can | |
723 ;; inherit from templates! | |
724 ((let ((skipchars "^;=)")) | |
725 ;; try to see if we found the `class' keyword | |
726 ;; inside a template arg list | |
727 (save-excursion | |
728 (skip-chars-backward "^<>" search-start) | |
729 (if (eq (char-before) ?<) | |
730 (setq skipchars (concat skipchars ">")))) | |
731 (skip-chars-forward skipchars search-end) | |
732 (/= (point) search-end)) | |
733 (setq foundp nil)) | |
734 ))) | |
735 foundp)) | |
736 ))))) | |
737 | |
738 (defun c-inside-bracelist-p (containing-sexp brace-state) | |
739 ;; return the buffer position of the beginning of the brace list | |
740 ;; statement if we're inside a brace list, otherwise return nil. | |
741 ;; CONTAINING-SEXP is the buffer pos of the innermost containing | |
742 ;; paren. BRACE-STATE is the remainder of the state of enclosing braces | |
743 ;; | |
744 ;; N.B.: This algorithm can potentially get confused by cpp macros | |
745 ;; places in inconvenient locations. Its a trade-off we make for | |
746 ;; speed. | |
747 (or | |
748 ;; this will pick up enum lists | |
749 (condition-case () | |
750 (save-excursion | |
751 (goto-char containing-sexp) | |
752 (forward-sexp -1) | |
753 (if (or (looking-at "enum[\t\n ]+") | |
754 (progn (forward-sexp -1) | |
755 (looking-at "enum[\t\n ]+"))) | |
756 (point))) | |
757 (error nil)) | |
758 ;; this will pick up array/aggregate init lists, even if they are nested. | |
759 (save-excursion | |
760 (let (bufpos failedp) | |
761 (while (and (not bufpos) | |
762 containing-sexp) | |
763 (if (consp containing-sexp) | |
764 (setq containing-sexp (car brace-state) | |
765 brace-state (cdr brace-state)) | |
766 ;; see if significant character just before brace is an equal | |
767 (goto-char containing-sexp) | |
768 (setq failedp nil) | |
769 (condition-case () | |
770 (progn | |
771 (forward-sexp -1) | |
772 (forward-sexp 1) | |
773 (c-forward-syntactic-ws containing-sexp)) | |
774 (error (setq failedp t))) | |
775 (if (or failedp (not (eq (char-after) ?=))) | |
776 ;; lets see if we're nested. find the most nested | |
777 ;; containing brace | |
778 (setq containing-sexp (car brace-state) | |
779 brace-state (cdr brace-state)) | |
780 ;; we've hit the beginning of the aggregate list | |
781 (c-beginning-of-statement-1 (c-most-enclosing-brace brace-state)) | |
782 (setq bufpos (point))) | |
783 )) | |
784 bufpos)) | |
785 )) | |
786 | |
787 | |
788 (defun c-most-enclosing-brace (state) | |
789 ;; return the bufpos of the most enclosing brace that hasn't been | |
790 ;; narrowed out by any enclosing class, or nil if none was found | |
791 (let (enclosingp) | |
792 (while (and state (not enclosingp)) | |
793 (setq enclosingp (car state) | |
794 state (cdr state)) | |
795 (if (consp enclosingp) | |
796 (setq enclosingp nil) | |
797 (if (> (point-min) enclosingp) | |
798 (setq enclosingp nil)) | |
799 (setq state nil))) | |
800 enclosingp)) | |
801 | |
802 (defun c-least-enclosing-brace (state) | |
803 ;; return the bufpos of the least (highest) enclosing brace that | |
804 ;; hasn't been narrowed out by any enclosing class, or nil if none | |
805 ;; was found. | |
806 (c-most-enclosing-brace (nreverse state))) | |
807 | |
808 (defun c-safe-position (bufpos state) | |
809 ;; return the closest known safe position higher up than point | |
810 (let ((safepos nil)) | |
811 (while state | |
812 (setq safepos | |
813 (if (consp (car state)) | |
814 (cdr (car state)) | |
815 (car state))) | |
816 (if (< safepos bufpos) | |
817 (setq state nil) | |
818 (setq state (cdr state)))) | |
819 safepos)) | |
820 | |
821 (defun c-narrow-out-enclosing-class (state lim) | |
822 ;; narrow the buffer so that the enclosing class is hidden | |
823 (let (inclass-p) | |
824 (and state | |
825 (setq inclass-p (c-search-uplist-for-classkey state)) | |
826 (narrow-to-region | |
827 (progn | |
828 (goto-char (1+ (aref inclass-p 1))) | |
829 (skip-chars-forward " \t\n" lim) | |
830 ;; if point is now left of the class opening brace, we're | |
831 ;; hosed, so try a different tact | |
832 (if (<= (point) (aref inclass-p 1)) | |
833 (progn | |
834 (goto-char (1+ (aref inclass-p 1))) | |
835 (c-forward-syntactic-ws lim))) | |
836 (point)) | |
837 ;; end point is the end of the current line | |
838 (progn | |
839 (goto-char lim) | |
840 (c-point 'eol)))) | |
841 ;; return the class vector | |
842 inclass-p)) | |
843 | |
844 | |
845 ;; This function implements the main decision tree for determining the | |
846 ;; syntactic analysis of the current line of code. Yes, it's huge and | |
847 ;; bloated! | |
848 | |
849 (defun c-guess-basic-syntax () | |
850 (save-excursion | |
851 (save-restriction | |
852 (beginning-of-line) | |
853 (let* ((indent-point (point)) | |
854 (case-fold-search nil) | |
855 (fullstate (c-parse-state)) | |
856 (state fullstate) | |
857 (in-method-intro-p (and (eq major-mode 'objc-mode) | |
858 c-method-key | |
859 (looking-at c-method-key))) | |
860 literal containing-sexp char-before-ip char-after-ip lim | |
861 syntax placeholder c-in-literal-cache inswitch-p | |
862 injava-inher | |
863 ;; narrow out any enclosing class or extern "C" block | |
864 (inclass-p (c-narrow-out-enclosing-class state indent-point)) | |
865 (inextern-p (and inclass-p | |
866 (save-excursion | |
867 (save-restriction | |
868 (widen) | |
869 (goto-char (aref inclass-p 0)) | |
870 (looking-at "extern[^_]"))))) | |
871 ) | |
872 | |
873 ;; get the buffer position of the most nested opening brace, | |
874 ;; if there is one, and it hasn't been narrowed out | |
875 (save-excursion | |
876 (goto-char indent-point) | |
877 (skip-chars-forward " \t}") | |
878 (skip-chars-backward " \t") | |
879 (while (and state | |
880 (not in-method-intro-p) | |
881 (not containing-sexp)) | |
882 (setq containing-sexp (car state) | |
883 state (cdr state)) | |
884 (if (consp containing-sexp) | |
885 ;; if cdr == point, then containing sexp is the brace | |
886 ;; that opens the sexp we close | |
887 (if (= (cdr containing-sexp) (point)) | |
888 (setq containing-sexp (car containing-sexp)) | |
889 ;; otherwise, ignore this element | |
890 (setq containing-sexp nil)) | |
891 ;; ignore the bufpos if its been narrowed out by the | |
892 ;; containing class | |
893 (if (<= containing-sexp (point-min)) | |
894 (setq containing-sexp nil))))) | |
895 | |
896 ;; set the limit on the farthest back we need to search | |
897 (setq lim (or containing-sexp | |
898 (if (consp (car fullstate)) | |
899 (cdr (car fullstate)) | |
900 nil) | |
901 (point-min))) | |
902 | |
903 ;; cache char before and after indent point, and move point to | |
904 ;; the most likely position to perform the majority of tests | |
905 (goto-char indent-point) | |
906 (skip-chars-forward " \t") | |
907 (setq char-after-ip (char-after)) | |
908 (c-backward-syntactic-ws lim) | |
909 (setq char-before-ip (char-before)) | |
910 (goto-char indent-point) | |
911 (skip-chars-forward " \t") | |
912 | |
913 ;; are we in a literal? | |
914 (setq literal (c-in-literal lim)) | |
915 | |
916 ;; now figure out syntactic qualities of the current line | |
917 (cond | |
918 ;; CASE 1: in a string. | |
919 ((memq literal '(string)) | |
920 (c-add-syntax 'string (c-point 'bopl))) | |
921 ;; CASE 2: in a C or C++ style comment. | |
922 ((memq literal '(c c++)) | |
923 ;; we need to catch multi-paragraph C comments | |
924 (while (and (zerop (forward-line -1)) | |
925 (looking-at "^[ \t]*$"))) | |
926 (c-add-syntax literal (c-point 'boi))) | |
927 ;; CASE 3: in a cpp preprocessor | |
928 ((eq literal 'pound) | |
929 (c-beginning-of-macro lim) | |
930 (c-add-syntax 'cpp-macro (c-point 'boi))) | |
931 ;; CASE 4: in an objective-c method intro | |
932 (in-method-intro-p | |
933 (c-add-syntax 'objc-method-intro (c-point 'boi))) | |
934 ;; CASE 5: Line is at top level. | |
935 ((null containing-sexp) | |
936 (cond | |
937 ;; CASE 5A: we are looking at a defun, class, or | |
938 ;; inline-inclass method opening brace | |
939 ((eq char-after-ip ?{) | |
940 (cond | |
941 ;; CASE 5A.1: extern declaration | |
942 ((save-excursion | |
943 (goto-char indent-point) | |
944 (skip-chars-forward " \t") | |
945 (and (c-safe (progn (backward-sexp 2) t)) | |
946 (looking-at "extern[^_]") | |
947 (progn | |
948 (setq placeholder (point)) | |
949 (forward-sexp 1) | |
950 (c-forward-syntactic-ws) | |
951 (eq (char-after) ?\")))) | |
952 (goto-char placeholder) | |
953 (c-add-syntax 'extern-lang-open (c-point 'boi))) | |
954 ;; CASE 5A.2: we are looking at a class opening brace | |
955 ((save-excursion | |
956 (goto-char indent-point) | |
957 (skip-chars-forward " \t{") | |
958 ;; TBD: watch out! there could be a bogus | |
959 ;; c-state-cache in place when we get here. we have | |
960 ;; to go through much chicanery to ignore the cache. | |
961 ;; But of course, there may not be! BLECH! BOGUS! | |
962 (let ((decl | |
963 (if (boundp 'c-state-cache) | |
964 (let ((old-cache c-state-cache)) | |
965 (prog2 | |
966 (makunbound 'c-state-cache) | |
967 (c-search-uplist-for-classkey (c-parse-state)) | |
968 (setq c-state-cache old-cache))) | |
969 (c-search-uplist-for-classkey (c-parse-state)) | |
970 ))) | |
971 (and decl | |
972 (setq placeholder (aref decl 0))) | |
973 )) | |
974 (c-add-syntax 'class-open placeholder)) | |
975 ;; CASE 5A.3: brace list open | |
976 ((save-excursion | |
977 (c-beginning-of-statement-1 lim) | |
978 ;; c-b-o-s could have left us at point-min | |
979 (and (bobp) | |
980 (c-forward-syntactic-ws indent-point)) | |
981 (if (looking-at "typedef[^_]") | |
982 (progn (forward-sexp 1) | |
983 (c-forward-syntactic-ws indent-point))) | |
984 (setq placeholder (c-point 'boi)) | |
985 (and (or (looking-at "enum[ \t\n]+") | |
986 (eq char-before-ip ?=)) | |
987 (save-excursion | |
988 (skip-chars-forward "^;(" indent-point) | |
989 (not (memq (char-after) '(?\; ?\())) | |
990 ))) | |
991 (c-add-syntax 'brace-list-open placeholder)) | |
992 ;; CASE 5A.4: inline defun open | |
993 ((and inclass-p (not inextern-p)) | |
994 (c-add-syntax 'inline-open) | |
995 (c-add-syntax 'inclass (aref inclass-p 0))) | |
996 ;; CASE 5A.5: ordinary defun open | |
997 (t | |
998 (goto-char placeholder) | |
999 (c-add-syntax 'defun-open (c-point 'bol)) | |
1000 ))) | |
1001 ;; CASE 5B: first K&R arg decl or member init | |
1002 ((c-just-after-func-arglist-p) | |
1003 (cond | |
1004 ;; CASE 5B.1: a member init | |
1005 ((or (eq char-before-ip ?:) | |
1006 (eq char-after-ip ?:)) | |
1007 ;; this line should be indented relative to the beginning | |
1008 ;; of indentation for the topmost-intro line that contains | |
1009 ;; the prototype's open paren | |
1010 ;; TBD: is the following redundant? | |
1011 (if (eq char-before-ip ?:) | |
1012 (forward-char -1)) | |
1013 (c-backward-syntactic-ws lim) | |
1014 ;; TBD: is the preceding redundant? | |
1015 (if (eq (char-before) ?:) | |
1016 (progn (forward-char -1) | |
1017 (c-backward-syntactic-ws lim))) | |
1018 (if (eq (char-before) ?\)) | |
1019 (backward-sexp 1)) | |
1020 (setq placeholder (point)) | |
1021 (save-excursion | |
1022 (and (c-safe (backward-sexp 1) t) | |
1023 (looking-at "throw[^_]") | |
1024 (c-safe (backward-sexp 1) t) | |
1025 (setq placeholder (point)))) | |
1026 (goto-char placeholder) | |
1027 (c-add-syntax 'member-init-intro (c-point 'boi)) | |
1028 ;; we don't need to add any class offset since this | |
1029 ;; should be relative to the ctor's indentation | |
1030 ) | |
1031 ;; CASE 5B.2: K&R arg decl intro | |
1032 (c-recognize-knr-p | |
1033 (c-add-syntax 'knr-argdecl-intro (c-point 'boi)) | |
1034 (and inclass-p (c-add-syntax 'inclass (aref inclass-p 0)))) | |
1035 ;; CASE 5B.3: Nether region after a C++ or Java func | |
1036 ;; decl, which could include a `throws' declaration. | |
1037 (t | |
1038 (c-beginning-of-statement-1 lim) | |
1039 (c-add-syntax 'func-decl-cont (c-point 'boi)) | |
1040 ))) | |
1041 ;; CASE 5C: inheritance line. could be first inheritance | |
1042 ;; line, or continuation of a multiple inheritance | |
1043 ((or (and c-baseclass-key (looking-at c-baseclass-key)) | |
1044 (and (or (eq char-before-ip ?:) | |
1045 ;; watch out for scope operator | |
1046 (save-excursion | |
1047 (and (eq char-after-ip ?:) | |
1048 (c-safe (progn (forward-char 1) t)) | |
1049 (not (eq (char-after) ?:)) | |
1050 ))) | |
1051 (save-excursion | |
1052 (c-backward-syntactic-ws lim) | |
1053 (if (eq char-before-ip ?:) | |
1054 (progn | |
1055 (forward-char -1) | |
1056 (c-backward-syntactic-ws lim))) | |
1057 (back-to-indentation) | |
1058 (looking-at c-class-key))) | |
1059 ;; for Java | |
1060 (and (eq major-mode 'java-mode) | |
1061 (let ((fence (save-excursion | |
1062 (c-beginning-of-statement-1 lim) | |
1063 (point))) | |
1064 cont done) | |
1065 (save-excursion | |
1066 (while (not done) | |
1067 (cond ((looking-at c-Java-special-key) | |
1068 (setq injava-inher (cons cont (point)) | |
1069 done t)) | |
1070 ((or (not (c-safe (forward-sexp -1) t)) | |
1071 (<= (point) fence)) | |
1072 (setq done t)) | |
1073 ) | |
1074 (setq cont t))) | |
1075 injava-inher) | |
1076 (not (c-crosses-statement-barrier-p (cdr injava-inher) | |
1077 (point))) | |
1078 )) | |
1079 (cond | |
1080 ;; CASE 5C.1: non-hanging colon on an inher intro | |
1081 ((eq char-after-ip ?:) | |
1082 (c-backward-syntactic-ws lim) | |
1083 (c-add-syntax 'inher-intro (c-point 'boi)) | |
1084 ;; don't add inclass symbol since relative point already | |
1085 ;; contains any class offset | |
1086 ) | |
1087 ;; CASE 5C.2: hanging colon on an inher intro | |
1088 ((eq char-before-ip ?:) | |
1089 (c-add-syntax 'inher-intro (c-point 'boi)) | |
1090 (and inclass-p (c-add-syntax 'inclass (aref inclass-p 0)))) | |
1091 ;; CASE 5C.3: in a Java implements/extends | |
1092 (injava-inher | |
1093 (let ((where (cdr injava-inher)) | |
1094 (cont (car injava-inher))) | |
1095 (goto-char where) | |
1096 (cond ((looking-at "throws[ \t\n]") | |
1097 (c-add-syntax 'func-decl-cont | |
1098 (progn (c-beginning-of-statement-1 lim) | |
1099 (c-point 'boi)))) | |
1100 (cont (c-add-syntax 'inher-cont where)) | |
1101 (t (c-add-syntax 'inher-intro | |
1102 (progn (goto-char (cdr injava-inher)) | |
1103 (c-beginning-of-statement-1 lim) | |
1104 (point)))) | |
1105 ))) | |
1106 ;; CASE 5C.4: a continued inheritance line | |
1107 (t | |
1108 (c-beginning-of-inheritance-list lim) | |
1109 (c-add-syntax 'inher-cont (point)) | |
1110 ;; don't add inclass symbol since relative point already | |
1111 ;; contains any class offset | |
1112 ))) | |
1113 ;; CASE 5D: this could be a top-level compound statement or a | |
1114 ;; member init list continuation | |
1115 ((eq char-before-ip ?,) | |
1116 (goto-char indent-point) | |
1117 (c-backward-syntactic-ws lim) | |
1118 (while (and (< lim (point)) | |
1119 (eq (char-before) ?,)) | |
1120 ;; this will catch member inits with multiple | |
1121 ;; line arglists | |
1122 (forward-char -1) | |
1123 (c-backward-syntactic-ws (c-point 'bol)) | |
1124 (if (eq (char-before) ?\)) | |
1125 (backward-sexp 1)) | |
1126 ;; now continue checking | |
1127 (beginning-of-line) | |
1128 (c-backward-syntactic-ws lim)) | |
1129 (cond | |
1130 ;; CASE 5D.1: hanging member init colon, but watch out | |
1131 ;; for bogus matches on access specifiers inside classes. | |
1132 ((and (eq (char-before) ?:) | |
1133 (save-excursion | |
1134 (forward-word -1) | |
1135 (not (looking-at c-access-key)))) | |
1136 (goto-char indent-point) | |
1137 (c-backward-syntactic-ws lim) | |
1138 (c-safe (backward-sexp 1)) | |
1139 (c-add-syntax 'member-init-cont (c-point 'boi)) | |
1140 ;; we do not need to add class offset since relative | |
1141 ;; point is the member init above us | |
1142 ) | |
1143 ;; CASE 5D.2: non-hanging member init colon | |
1144 ((progn | |
1145 (c-forward-syntactic-ws indent-point) | |
1146 (eq (char-after) ?:)) | |
1147 (skip-chars-forward " \t:") | |
1148 (c-add-syntax 'member-init-cont (point))) | |
1149 ;; CASE 5D.3: perhaps a multiple inheritance line? | |
1150 ((looking-at c-inher-key) | |
1151 (c-add-syntax 'inher-cont (c-point 'boi))) | |
1152 ;; CASE 5D.4: perhaps a template list continuation? | |
1153 ((save-excursion | |
19301
c4d7dd15f7d5
(c-guess-basic-syntax): CASE 5D.4: template argument continuation
Richard M. Stallman <rms@gnu.org>
parents:
19251
diff
changeset
|
1154 (goto-char indent-point) |
18720 | 1155 (skip-chars-backward "^<" lim) |
1156 ;; not sure if this is the right test, but it should | |
1157 ;; be fast and mostly accurate. | |
1158 (and (eq (char-before) ?<) | |
1159 (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
|
1160 ;; we can probably indent it just like an arglist-cont |
c4d7dd15f7d5
(c-guess-basic-syntax): CASE 5D.4: template argument continuation
Richard M. Stallman <rms@gnu.org>
parents:
19251
diff
changeset
|
1161 (c-add-syntax 'template-args-cont (point))) |
18720 | 1162 ;; CASE 5D.5: perhaps a top-level statement-cont |
1163 (t | |
1164 (c-beginning-of-statement-1 lim) | |
1165 ;; skip over any access-specifiers | |
1166 (and inclass-p c-access-key | |
1167 (while (looking-at c-access-key) | |
1168 (forward-line 1))) | |
1169 ;; skip over comments, whitespace | |
1170 (c-forward-syntactic-ws indent-point) | |
1171 (c-add-syntax 'statement-cont (c-point 'boi))) | |
1172 )) | |
1173 ;; CASE 5E: we are looking at a access specifier | |
1174 ((and inclass-p | |
1175 c-access-key | |
1176 (looking-at c-access-key)) | |
1177 (c-add-syntax 'access-label (c-point 'bonl)) | |
1178 (c-add-syntax 'inclass (aref inclass-p 0))) | |
1179 ;; CASE 5F: extern-lang-close? | |
1180 ((and inextern-p | |
1181 (eq char-after-ip ?})) | |
1182 (c-add-syntax 'extern-lang-close (aref inclass-p 1))) | |
1183 ;; CASE 5G: we are looking at the brace which closes the | |
1184 ;; enclosing nested class decl | |
1185 ((and inclass-p | |
1186 (eq char-after-ip ?}) | |
1187 (save-excursion | |
1188 (save-restriction | |
1189 (widen) | |
1190 (forward-char 1) | |
1191 (and | |
1192 (condition-case nil | |
1193 (progn (backward-sexp 1) t) | |
1194 (error nil)) | |
1195 (= (point) (aref inclass-p 1)) | |
1196 )))) | |
1197 (save-restriction | |
1198 (widen) | |
1199 (goto-char (aref inclass-p 0)) | |
1200 (c-add-syntax 'class-close (c-point 'boi)))) | |
1201 ;; CASE 5H: we could be looking at subsequent knr-argdecls | |
1202 ((and c-recognize-knr-p | |
1203 ;; here we essentially use the hack that is used in | |
1204 ;; Emacs' c-mode.el to limit how far back we should | |
1205 ;; look. The assumption is made that argdecls are | |
1206 ;; indented at least one space and that function | |
1207 ;; headers are not indented. | |
1208 (let ((limit (save-excursion | |
1209 (re-search-backward "^[^ \^L\t\n#]" nil 'move) | |
1210 (point)))) | |
1211 (save-excursion | |
1212 (c-backward-syntactic-ws limit) | |
1213 (setq placeholder (point)) | |
1214 (while (and (memq (char-before) '(?\; ?,)) | |
1215 (> (point) limit)) | |
1216 (beginning-of-line) | |
1217 (setq placeholder (point)) | |
1218 (c-backward-syntactic-ws limit)) | |
1219 (and (eq (char-before) ?\)) | |
1220 (or (not c-method-key) | |
1221 (progn | |
1222 (forward-sexp -1) | |
1223 (forward-char -1) | |
1224 (c-backward-syntactic-ws) | |
1225 (not (or (memq (char-before) '(?- ?+)) | |
1226 ;; or a class category | |
1227 (progn | |
1228 (forward-sexp -2) | |
1229 (looking-at c-class-key)) | |
1230 ))))) | |
1231 )) | |
1232 (save-excursion | |
1233 (c-beginning-of-statement-1) | |
1234 (not (looking-at "typedef[ \t\n]+")))) | |
1235 (goto-char placeholder) | |
1236 (c-add-syntax 'knr-argdecl (c-point 'boi))) | |
1237 ;; CASE 5I: we are at the topmost level, make sure we skip | |
1238 ;; back past any access specifiers | |
1239 ((progn | |
1240 (c-backward-syntactic-ws lim) | |
1241 (while (and inclass-p | |
1242 c-access-key | |
1243 (not (bobp)) | |
1244 (save-excursion | |
1245 (c-safe (progn (backward-sexp 1) t)) | |
1246 (looking-at c-access-key))) | |
1247 (backward-sexp 1) | |
1248 (c-backward-syntactic-ws lim)) | |
1249 (or (bobp) | |
1250 (memq (char-before) '(?\; ?\})))) | |
1251 ;; real beginning-of-line could be narrowed out due to | |
1252 ;; enclosure in a class block | |
1253 (save-restriction | |
1254 (widen) | |
1255 (c-add-syntax 'topmost-intro (c-point 'bol)) | |
1256 (if inclass-p | |
1257 (progn | |
1258 (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
|
1259 (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
|
1260 (goto-char (aref inclass-p 0))) |
18720 | 1261 (if inextern-p |
1262 (c-add-syntax 'inextern-lang) | |
1263 (c-add-syntax 'inclass (c-point 'boi))))) | |
1264 )) | |
1265 ;; CASE 5J: we are at an ObjC or Java method definition | |
1266 ;; continuation line. | |
1267 ((and c-method-key | |
1268 (progn | |
1269 (c-beginning-of-statement-1 lim) | |
1270 (beginning-of-line) | |
1271 (looking-at c-method-key))) | |
1272 (c-add-syntax 'objc-method-args-cont (point))) | |
1273 ;; CASE 5K: we are at a topmost continuation line | |
1274 (t | |
1275 (c-beginning-of-statement-1 lim) | |
1276 (c-forward-syntactic-ws) | |
1277 (c-add-syntax 'topmost-intro-cont (c-point 'boi))) | |
1278 )) ; end CASE 5 | |
1279 ;; CASE 6: line is an expression, not a statement. Most | |
1280 ;; likely we are either in a function prototype or a function | |
1281 ;; call argument list | |
1282 ((not (eq (char-after containing-sexp) ?{)) | |
1283 (c-backward-syntactic-ws containing-sexp) | |
1284 (cond | |
1285 ;; CASE 6A: we are looking at the arglist closing paren | |
1286 ((and (not (eq char-before-ip ?,)) | |
1287 (memq char-after-ip '(?\) ?\]))) | |
1288 (goto-char containing-sexp) | |
1289 (c-add-syntax 'arglist-close (c-point 'boi))) | |
1290 ;; CASE 6B: we are looking at the first argument in an empty | |
1291 ;; argument list. Use arglist-close if we're actually | |
1292 ;; looking at a close paren or bracket. | |
1293 ((memq char-before-ip '(?\( ?\[)) | |
1294 (goto-char containing-sexp) | |
1295 (c-add-syntax 'arglist-intro (c-point 'boi))) | |
1296 ;; CASE 6C: we are inside a conditional test clause. treat | |
1297 ;; these things as statements | |
1298 ((save-excursion | |
1299 (goto-char containing-sexp) | |
1300 (and (c-safe (progn (forward-sexp -1) t)) | |
1301 (looking-at "\\<for\\>[^_]"))) | |
1302 (goto-char (1+ containing-sexp)) | |
1303 (c-forward-syntactic-ws indent-point) | |
1304 (c-beginning-of-statement-1 containing-sexp) | |
1305 (if (eq char-before-ip ?\;) | |
1306 (c-add-syntax 'statement (point)) | |
1307 (c-add-syntax 'statement-cont (point)) | |
1308 )) | |
1309 ;; CASE 6D: maybe a continued method call. This is the case | |
1310 ;; when we are inside a [] bracketed exp, and what precede | |
1311 ;; the opening bracket is not an identifier. | |
1312 ((and c-method-key | |
1313 (eq (char-after containing-sexp) ?\[) | |
1314 (save-excursion | |
1315 (goto-char (1- containing-sexp)) | |
1316 (c-backward-syntactic-ws (c-point 'bod)) | |
1317 (if (not (looking-at c-symbol-key)) | |
1318 (c-add-syntax 'objc-method-call-cont containing-sexp)) | |
1319 ))) | |
1320 ;; CASE 6E: we are looking at an arglist continuation line, | |
1321 ;; but the preceding argument is on the same line as the | |
1322 ;; opening paren. This case includes multi-line | |
1323 ;; mathematical paren groupings, but we could be on a | |
1324 ;; for-list continuation line | |
1325 ((and (save-excursion | |
1326 (goto-char (1+ containing-sexp)) | |
1327 (skip-chars-forward " \t") | |
1328 (not (eolp))) | |
1329 (save-excursion | |
1330 (c-beginning-of-statement-1 lim) | |
1331 (skip-chars-backward " \t([") | |
1332 (<= (point) containing-sexp))) | |
1333 (goto-char containing-sexp) | |
1334 (c-add-syntax 'arglist-cont-nonempty (c-point 'boi))) | |
1335 ;; CASE 6F: we are looking at just a normal arglist | |
1336 ;; continuation line | |
1337 (t (c-beginning-of-statement-1 containing-sexp) | |
1338 (forward-char 1) | |
1339 (c-forward-syntactic-ws indent-point) | |
1340 (c-add-syntax 'arglist-cont (c-point 'boi))) | |
1341 )) | |
1342 ;; CASE 7: func-local multi-inheritance line | |
1343 ((and c-baseclass-key | |
1344 (save-excursion | |
1345 (goto-char indent-point) | |
1346 (skip-chars-forward " \t") | |
1347 (looking-at c-baseclass-key))) | |
1348 (goto-char indent-point) | |
1349 (skip-chars-forward " \t") | |
1350 (cond | |
1351 ;; CASE 7A: non-hanging colon on an inher intro | |
1352 ((eq char-after-ip ?:) | |
1353 (c-backward-syntactic-ws lim) | |
1354 (c-add-syntax 'inher-intro (c-point 'boi))) | |
1355 ;; CASE 7B: hanging colon on an inher intro | |
1356 ((eq char-before-ip ?:) | |
1357 (c-add-syntax 'inher-intro (c-point 'boi))) | |
1358 ;; CASE 7C: a continued inheritance line | |
1359 (t | |
1360 (c-beginning-of-inheritance-list lim) | |
1361 (c-add-syntax 'inher-cont (point)) | |
1362 ))) | |
1363 ;; CASE 8: we are inside a brace-list | |
1364 ((setq placeholder (c-inside-bracelist-p containing-sexp state)) | |
1365 (cond | |
1366 ;; CASE 8A: brace-list-close brace | |
1367 ((and (eq char-after-ip ?}) | |
1368 (c-safe (progn (forward-char 1) | |
1369 (backward-sexp 1) | |
1370 t)) | |
1371 (= (point) containing-sexp)) | |
1372 (c-add-syntax 'brace-list-close (c-point 'boi))) | |
1373 ;; CASE 8B: we're looking at the first line in a brace-list | |
1374 ((save-excursion | |
1375 (goto-char indent-point) | |
1376 (c-backward-syntactic-ws containing-sexp) | |
1377 (= (point) (1+ containing-sexp))) | |
1378 (goto-char containing-sexp) | |
1379 (c-add-syntax 'brace-list-intro (c-point 'boi)) | |
1380 ) | |
1381 ;;)) ; end CASE 8B | |
1382 ;; CASE 8C: this is just a later brace-list-entry | |
1383 (t (goto-char (1+ containing-sexp)) | |
1384 (c-forward-syntactic-ws indent-point) | |
1385 (if (eq char-after-ip ?{) | |
1386 (c-add-syntax 'brace-list-open (point)) | |
1387 (c-add-syntax 'brace-list-entry (point)) | |
1388 )) ; end CASE 8C | |
1389 )) ; end CASE 8 | |
1390 ;; CASE 9: A continued statement | |
1391 ((and (not (memq char-before-ip '(?\; ?} ?:))) | |
1392 (> (point) | |
1393 (save-excursion | |
1394 (c-beginning-of-statement-1 containing-sexp) | |
1395 (setq placeholder (point)))) | |
1396 (/= placeholder containing-sexp)) | |
1397 (goto-char indent-point) | |
1398 (skip-chars-forward " \t") | |
1399 (let ((after-cond-placeholder | |
1400 (save-excursion | |
1401 (goto-char placeholder) | |
1402 (if (looking-at c-conditional-key) | |
1403 (progn | |
1404 (c-safe (c-skip-conditional)) | |
1405 (c-forward-syntactic-ws) | |
1406 (if (eq (char-after) ?\;) | |
1407 (progn | |
1408 (forward-char 1) | |
1409 (c-forward-syntactic-ws))) | |
1410 (point)) | |
1411 nil)))) | |
1412 (cond | |
1413 ;; CASE 9A: substatement | |
1414 ((and after-cond-placeholder | |
1415 (>= after-cond-placeholder indent-point)) | |
1416 (goto-char placeholder) | |
1417 (if (eq char-after-ip ?{) | |
1418 (c-add-syntax 'substatement-open (c-point 'boi)) | |
1419 (c-add-syntax 'substatement (c-point 'boi)))) | |
1420 ;; CASE 9B: open braces for class or brace-lists | |
1421 ((eq char-after-ip ?{) | |
1422 (cond | |
1423 ;; CASE 9B.1: class-open | |
1424 ((save-excursion | |
1425 (goto-char indent-point) | |
1426 (skip-chars-forward " \t{") | |
1427 (let ((decl (c-search-uplist-for-classkey (c-parse-state)))) | |
1428 (and decl | |
1429 (setq placeholder (aref decl 0))) | |
1430 )) | |
1431 (c-add-syntax 'class-open placeholder)) | |
1432 ;; CASE 9B.2: brace-list-open | |
1433 ((or (save-excursion | |
1434 (goto-char placeholder) | |
1435 (looking-at "\\<enum\\>")) | |
1436 (eq char-before-ip ?=)) | |
1437 (c-add-syntax 'brace-list-open placeholder)) | |
1438 ;; CASE 9B.3: catch-all for unknown construct. | |
1439 (t | |
1440 ;; Can and should I add an extensibility hook here? | |
1441 ;; Something like c-recognize-hook so support for | |
1442 ;; unknown constructs could be added. It's probably a | |
1443 ;; losing proposition, so I dunno. | |
1444 (goto-char placeholder) | |
1445 (c-add-syntax 'statement-cont (c-point 'boi)) | |
1446 (c-add-syntax 'block-open)) | |
1447 )) | |
1448 ;; CASE 9C: iostream insertion or extraction operator | |
1449 ((looking-at "<<\\|>>") | |
1450 (goto-char placeholder) | |
1451 (and after-cond-placeholder | |
1452 (goto-char after-cond-placeholder)) | |
1453 (while (and (re-search-forward "<<\\|>>" indent-point 'move) | |
1454 (c-in-literal placeholder))) | |
1455 ;; if we ended up at indent-point, then the first | |
1456 ;; streamop is on a separate line. Indent the line like | |
1457 ;; a statement-cont instead | |
1458 (if (/= (point) indent-point) | |
1459 (c-add-syntax 'stream-op (c-point 'boi)) | |
1460 (c-backward-syntactic-ws lim) | |
1461 (c-add-syntax 'statement-cont (c-point 'boi)))) | |
1462 ;; CASE 9D: continued statement. find the accurate | |
1463 ;; beginning of statement or substatement | |
1464 (t | |
1465 (c-beginning-of-statement-1 after-cond-placeholder) | |
1466 ;; KLUDGE ALERT! c-beginning-of-statement-1 can leave | |
1467 ;; us before the lim we're passing in. It should be | |
1468 ;; fixed, but I'm worried about side-effects at this | |
1469 ;; late date. Fix for v5. | |
1470 (goto-char (or (and after-cond-placeholder | |
1471 (max after-cond-placeholder (point))) | |
1472 (point))) | |
1473 (c-add-syntax 'statement-cont (point))) | |
1474 ))) | |
1475 ;; CASE 10: an else clause? | |
1476 ((looking-at "\\<else\\>[^_]") | |
1477 (c-backward-to-start-of-if containing-sexp) | |
1478 (c-add-syntax 'else-clause (c-point 'boi))) | |
1479 ;; CASE 11: Statement. But what kind? Lets see if its a | |
1480 ;; while closure of a do/while construct | |
1481 ((progn | |
1482 (goto-char indent-point) | |
1483 (skip-chars-forward " \t") | |
1484 (and (looking-at "while\\b[^_]") | |
1485 (save-excursion | |
1486 (c-backward-to-start-of-do containing-sexp) | |
1487 (setq placeholder (point)) | |
1488 (looking-at "do\\b[^_]")) | |
1489 )) | |
1490 (c-add-syntax 'do-while-closure placeholder)) | |
1491 ;; CASE 12: A case or default label | |
1492 ((looking-at c-switch-label-key) | |
1493 (goto-char containing-sexp) | |
1494 ;; check for hanging braces | |
1495 (if (/= (point) (c-point 'boi)) | |
1496 (forward-sexp -1)) | |
1497 (c-add-syntax 'case-label (c-point 'boi))) | |
1498 ;; CASE 13: any other label | |
1499 ((looking-at c-label-key) | |
1500 (goto-char containing-sexp) | |
1501 (c-add-syntax 'label (c-point 'boi))) | |
1502 ;; CASE 14: block close brace, possibly closing the defun or | |
1503 ;; the class | |
1504 ((eq char-after-ip ?}) | |
1505 (let* ((lim (c-safe-position containing-sexp fullstate)) | |
1506 (relpos (save-excursion | |
1507 (goto-char containing-sexp) | |
1508 (if (/= (point) (c-point 'boi)) | |
1509 (c-beginning-of-statement-1 lim)) | |
1510 (c-point 'boi)))) | |
1511 (cond | |
1512 ;; CASE 14A: does this close an inline? | |
1513 ((let ((inclass-p (progn | |
1514 (goto-char containing-sexp) | |
1515 (c-search-uplist-for-classkey state)))) | |
1516 ;; inextern-p in higher level let* | |
1517 (setq inextern-p (and inclass-p | |
1518 (progn | |
1519 (goto-char (aref inclass-p 0)) | |
1520 (looking-at "extern[^_]")))) | |
1521 (and inclass-p (not inextern-p))) | |
1522 (c-add-syntax 'inline-close relpos)) | |
1523 ;; CASE 14B: if there an enclosing brace that hasn't | |
1524 ;; been narrowed out by a class, then this is a | |
1525 ;; block-close | |
1526 ((and (not inextern-p) | |
1527 (c-most-enclosing-brace state)) | |
1528 (c-add-syntax 'block-close relpos)) | |
1529 ;; CASE 14C: find out whether we're closing a top-level | |
1530 ;; class or a defun | |
1531 (t | |
1532 (save-restriction | |
1533 (narrow-to-region (point-min) indent-point) | |
1534 (let ((decl (c-search-uplist-for-classkey (c-parse-state)))) | |
1535 (if decl | |
1536 (c-add-syntax 'class-close (aref decl 0)) | |
1537 (c-add-syntax 'defun-close relpos))))) | |
1538 ))) | |
1539 ;; CASE 15: statement catchall | |
1540 (t | |
1541 ;; we know its a statement, but we need to find out if it is | |
1542 ;; the first statement in a block | |
1543 (goto-char containing-sexp) | |
1544 (forward-char 1) | |
1545 (c-forward-syntactic-ws indent-point) | |
1546 ;; now skip forward past any case/default clauses we might find. | |
1547 (while (or (c-skip-case-statement-forward fullstate indent-point) | |
1548 (and (looking-at c-switch-label-key) | |
1549 (not inswitch-p))) | |
1550 (setq inswitch-p t)) | |
1551 ;; we want to ignore non-case labels when skipping forward | |
1552 (while (and (looking-at c-label-key) | |
1553 (goto-char (match-end 0))) | |
1554 (c-forward-syntactic-ws indent-point)) | |
1555 (cond | |
1556 ;; CASE 15A: we are inside a case/default clause inside a | |
1557 ;; switch statement. find out if we are at the statement | |
1558 ;; just after the case/default label. | |
1559 ((and inswitch-p | |
1560 (progn | |
1561 (goto-char indent-point) | |
1562 (c-backward-syntactic-ws containing-sexp) | |
1563 (back-to-indentation) | |
1564 (setq placeholder (point)) | |
1565 (looking-at c-switch-label-key))) | |
1566 (goto-char indent-point) | |
1567 (skip-chars-forward " \t") | |
1568 (if (eq (char-after) ?{) | |
1569 (c-add-syntax 'statement-case-open placeholder) | |
1570 (c-add-syntax 'statement-case-intro placeholder))) | |
1571 ;; CASE 15B: continued statement | |
1572 ((eq char-before-ip ?,) | |
1573 (c-add-syntax 'statement-cont (c-point 'boi))) | |
1574 ;; CASE 15C: a question/colon construct? But make sure | |
1575 ;; what came before was not a label, and what comes after | |
1576 ;; is not a globally scoped function call! | |
1577 ((or (and (memq char-before-ip '(?: ??)) | |
1578 (save-excursion | |
1579 (goto-char indent-point) | |
1580 (c-backward-syntactic-ws lim) | |
1581 (back-to-indentation) | |
1582 (not (looking-at c-label-key)))) | |
1583 (and (memq char-after-ip '(?: ??)) | |
1584 (save-excursion | |
1585 (goto-char indent-point) | |
1586 (skip-chars-forward " \t") | |
1587 ;; watch out for scope operator | |
1588 (not (looking-at "::"))))) | |
1589 (c-add-syntax 'statement-cont (c-point 'boi))) | |
1590 ;; CASE 15D: any old statement | |
1591 ((< (point) indent-point) | |
1592 (let ((safepos (c-most-enclosing-brace fullstate)) | |
1593 relpos done) | |
1594 (goto-char indent-point) | |
1595 (c-beginning-of-statement-1 safepos) | |
1596 ;; It is possible we're on the brace that opens a nested | |
1597 ;; function. | |
1598 (if (and (eq (char-after) ?{) | |
1599 (save-excursion | |
1600 (c-backward-syntactic-ws safepos) | |
1601 (not (eq (char-before) ?\;)))) | |
1602 (c-beginning-of-statement-1 safepos)) | |
1603 (if (and inswitch-p | |
1604 (looking-at c-switch-label-key)) | |
1605 (progn | |
1606 (goto-char placeholder) | |
1607 (end-of-line) | |
1608 (forward-sexp -1))) | |
1609 (setq relpos (c-point 'boi)) | |
1610 (while (and (not done) | |
1611 (<= safepos (point)) | |
1612 (/= relpos (point))) | |
1613 (c-beginning-of-statement-1 safepos) | |
1614 (if (= relpos (c-point 'boi)) | |
1615 (setq done t)) | |
1616 (setq relpos (c-point 'boi))) | |
1617 (c-add-syntax 'statement relpos) | |
1618 (if (eq char-after-ip ?{) | |
1619 (c-add-syntax 'block-open)))) | |
1620 ;; CASE 15E: first statement in an inline, or first | |
1621 ;; statement in a top-level defun. we can tell this is it | |
1622 ;; if there are no enclosing braces that haven't been | |
1623 ;; narrowed out by a class (i.e. don't use bod here!) | |
1624 ((save-excursion | |
1625 (save-restriction | |
1626 (widen) | |
1627 (goto-char containing-sexp) | |
1628 (c-narrow-out-enclosing-class state containing-sexp) | |
1629 (not (c-most-enclosing-brace state)))) | |
1630 (goto-char containing-sexp) | |
1631 ;; if not at boi, then defun-opening braces are hung on | |
1632 ;; right side, so we need a different relpos | |
1633 (if (/= (point) (c-point 'boi)) | |
1634 (progn | |
1635 (c-backward-syntactic-ws) | |
1636 (c-safe (forward-sexp (if (eq (char-before) ?\)) | |
1637 -1 -2))) | |
1638 ;; looking at a Java throws clause following a | |
1639 ;; method's parameter list | |
1640 (c-beginning-of-statement-1) | |
1641 )) | |
1642 (c-add-syntax 'defun-block-intro (c-point 'boi))) | |
1643 ;; CASE 15F: first statement in a block | |
1644 (t (goto-char containing-sexp) | |
1645 (if (/= (point) (c-point 'boi)) | |
1646 (c-beginning-of-statement-1 | |
1647 (if (= (point) lim) | |
1648 (c-safe-position (point) state) lim))) | |
1649 (c-add-syntax 'statement-block-intro (c-point 'boi)) | |
1650 (if (eq char-after-ip ?{) | |
1651 (c-add-syntax 'block-open))) | |
1652 )) | |
1653 ) | |
1654 | |
1655 ;; now we need to look at any modifiers | |
1656 (goto-char indent-point) | |
1657 (skip-chars-forward " \t") | |
1658 ;; are we looking at a comment only line? | |
1659 (if (looking-at c-comment-start-regexp) | |
1660 (c-add-syntax 'comment-intro)) | |
1661 ;; we might want to give additional offset to friends (in C++). | |
1662 (if (and (eq major-mode 'c++-mode) | |
1663 (looking-at c-C++-friend-key)) | |
1664 (c-add-syntax 'friend)) | |
1665 ;; return the syntax | |
1666 syntax)))) | |
1667 | |
1668 | |
1669 (defun c-echo-parsing-error () | |
1670 (if (not c-parsing-error) | |
1671 nil | |
1672 (message "unbalanced close brace at bufpos %d -- INDENTATION IS SUSPECT!" | |
1673 c-parsing-error) | |
1674 (ding)) | |
1675 c-parsing-error) | |
1676 | |
1677 ;; indent via syntactic language elements | |
1678 (defun c-indent-line (&optional syntax) | |
1679 ;; indent the current line as C/C++/ObjC code. Optional SYNTAX is the | |
1680 ;; syntactic information for the current line. Returns the amount of | |
1681 ;; indentation change | |
1682 (let* ((c-syntactic-context (or syntax (c-guess-basic-syntax))) | |
1683 (pos (- (point-max) (point))) | |
1684 (indent (apply '+ (mapcar 'c-get-offset c-syntactic-context))) | |
1685 (shift-amt (- (current-indentation) indent))) | |
1686 (and c-echo-syntactic-information-p | |
1687 (not (c-echo-parsing-error)) | |
1688 (message "syntax: %s, indent= %d" c-syntactic-context indent)) | |
1689 (if (zerop shift-amt) | |
1690 nil | |
1691 (delete-region (c-point 'bol) (c-point 'boi)) | |
1692 (beginning-of-line) | |
1693 (indent-to indent)) | |
1694 (if (< (point) (c-point 'boi)) | |
1695 (back-to-indentation) | |
1696 ;; If initial point was within line's indentation, position after | |
1697 ;; the indentation. Else stay at same point in text. | |
1698 (if (> (- (point-max) pos) (point)) | |
1699 (goto-char (- (point-max) pos))) | |
1700 ) | |
1701 (run-hooks 'c-special-indent-hook) | |
1702 shift-amt)) | |
1703 | |
1704 (defun c-show-syntactic-information (arg) | |
1705 "Show syntactic information for current line. | |
1706 With universal argument, inserts the analysis as a comment on that line." | |
1707 (interactive "P") | |
1708 (let ((syntax (c-guess-basic-syntax))) | |
1709 (if (not (consp arg)) | |
1710 (if (not (c-echo-parsing-error)) | |
1711 (message "syntactic analysis: %s" syntax)) | |
1712 (indent-for-comment) | |
1713 (insert (format "%s" syntax)) | |
1714 )) | |
1715 (c-keep-region-active)) | |
1716 | |
1717 | |
1718 (provide 'cc-engine) | |
1719 ;;; cc-engine.el ends here |