Mercurial > emacs
annotate lisp/progmodes/cc-engine.el @ 24845:87e4cdfac07b
(IT-display-table-setup): Do not remap \222 to
the ASCII apostrophe, as most DOS codepages have some other glyph
there.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Mon, 14 Jun 1999 15:10:14 +0000 |
parents | 0c4688f9a396 |
children | 1dc57e616e8d |
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) | |
1103 (while (and (eq braceassignp 'dontknow) | |
1104 (zerop (c-backward-token-1 1 t lim))) | |
1105 (cond ((eq (char-after) ?\;) | |
1106 (setq braceassignp nil)) | |
1107 ((and class-key | |
1108 (looking-at class-key)) | |
1109 (setq braceassignp nil)) | |
1110 ((eq (char-after) ?=) | |
1111 ;; We've seen a =, but must check earlier tokens so | |
1112 ;; that it isn't something that should be ignored. | |
1113 (setq braceassignp 'maybe) | |
1114 (while (and (eq braceassignp 'maybe) | |
1115 (zerop (c-backward-token-1 1 t lim))) | |
1116 (setq braceassignp | |
1117 (cond | |
1118 ;; Check for operator = | |
1119 ((looking-at "operator\\>") nil) | |
1120 ;; Check for `<opchar>= (Pike) | |
1121 ((eq (char-after) ?`) nil) | |
1122 ((looking-at "\\s.") 'maybe) | |
1123 ;; make sure we're not in a C++ template | |
1124 ;; argument assignment | |
1125 ((save-excursion | |
1126 (let ((here (point)) | |
1127 (pos< (progn | |
1128 (skip-chars-backward "^<") | |
1129 (point)))) | |
1130 (and (c-major-mode-is 'c++-mode) | |
1131 (eq (char-before) ?<) | |
1132 (not (c-crosses-statement-barrier-p | |
1133 here pos<)) | |
1134 (not (c-in-literal)) | |
1135 ))) | |
1136 nil) | |
1137 (t t))))) | |
1138 ((eq (char-after) ?\[) | |
1139 ;; In Java, an initialization brace list may | |
1140 ;; follow "new Foo[]", so check for []. Got to | |
1141 ;; watch out for the C++ "operator[]" defun, | |
1142 ;; though. | |
1143 (setq braceassignp | |
1144 (save-excursion | |
1145 (c-backward-token-1) | |
1146 (not (looking-at "operator\\>"))))) | |
1147 )) | |
1148 (if (memq braceassignp '(nil dontknow)) | |
1149 (if (eq (char-after) ?\;) | |
1150 ;; Brace lists can't contain a semicolon, so we're done. | |
1151 (setq containing-sexp nil) | |
1152 ;; lets see if we're nested. find the most nested | |
1153 ;; containing brace | |
1154 (setq containing-sexp (car brace-state) | |
1155 brace-state (cdr brace-state))) | |
1156 ;; we've hit the beginning of the aggregate list | |
1157 (c-beginning-of-statement-1 | |
1158 (c-most-enclosing-brace brace-state)) | |
1159 (setq bufpos (point)))) | |
18720 | 1160 )) |
1161 bufpos)) | |
1162 )) | |
1163 | |
24282 | 1164 (defun c-looking-at-special-brace-list (&optional lim) |
1165 ;; If we're looking at the start of a pike-style list, ie `({ })', | |
1166 ;; `([ ])', `(< >)' etc, a cons of a cons its starting and ending | |
1167 ;; positions and its entry in c-special-brace-lists is returned, nil | |
1168 ;; otherwise. The ending position is nil if the list is still open. | |
1169 ;; LIM is the limit for forward search. The point may either be at | |
1170 ;; the `(' or at the following paren character. Tries to check the | |
1171 ;; matching closer, but assumes it's correct if no balanced paren is | |
1172 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being | |
1173 ;; a special brace list). | |
1174 (if c-special-brace-lists | |
1175 (condition-case () | |
1176 (save-excursion | |
1177 (let ((beg (point)) | |
1178 end type) | |
1179 (c-forward-syntactic-ws) | |
1180 (if (eq (char-after) ?\() | |
1181 (progn | |
1182 (forward-char 1) | |
1183 (c-forward-syntactic-ws) | |
1184 (setq type (assq (char-after) c-special-brace-lists))) | |
1185 (if (setq type (assq (char-after) c-special-brace-lists)) | |
1186 (progn | |
1187 (c-backward-syntactic-ws) | |
1188 (forward-char -1) | |
1189 (setq beg (if (eq (char-after) ?\() | |
1190 (point) | |
1191 nil))))) | |
1192 (if (and beg type) | |
1193 (if (and (c-safe (goto-char beg) | |
1194 (c-forward-sexp 1) | |
1195 (setq end (point)) | |
1196 (= (char-before) ?\))) | |
1197 (c-safe (goto-char beg) | |
1198 (forward-char 1) | |
1199 (c-forward-sexp 1) | |
1200 ;; Kludges needed to handle inner | |
1201 ;; chars both with and without | |
1202 ;; paren syntax. | |
1203 (or (/= (char-syntax (char-before)) ?\)) | |
1204 (= (char-before) (cdr type))))) | |
1205 (if (or (/= (char-syntax (char-before)) ?\)) | |
1206 (= (progn | |
1207 (c-forward-syntactic-ws) | |
1208 (point)) | |
1209 (1- end))) | |
1210 (cons (cons beg end) type)) | |
1211 (cons (list beg) type))))) | |
1212 (error nil)))) | |
1213 | |
1214 (defun c-looking-at-inexpr-block (&optional lim) | |
1215 ;; Returns non-nil if we're looking at the beginning of a block | |
1216 ;; inside an expression. The value returned is actually a cons of | |
1217 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the | |
1218 ;; position of the beginning of the construct. LIM limits the | |
1219 ;; backward search. | |
1220 (save-excursion | |
1221 (or lim (setq lim (point-min))) | |
1222 (if (and (eq (char-after) ?{) | |
1223 (progn (c-backward-syntactic-ws) (> (point) lim)) | |
1224 (eq (char-before) ?\() | |
1225 (not (and c-special-brace-lists | |
1226 (c-looking-at-special-brace-list)))) | |
1227 (cons 'inexpr-statement (point)) | |
1228 (let (res) | |
1229 (while (and (not res) | |
1230 (= (c-backward-token-1 1 t lim) 0) | |
1231 (>= (point) lim) | |
1232 (looking-at "(\\|\\w\\|\\s_\\|\\.")) | |
1233 (setq res | |
1234 (cond ((and c-inexpr-class-key | |
1235 (looking-at c-inexpr-class-key)) | |
1236 (cons 'inexpr-class (point))) | |
1237 ((and c-inexpr-block-key | |
1238 (looking-at c-inexpr-block-key)) | |
1239 (cons 'inexpr-statement (point))) | |
1240 ((and c-lambda-key | |
1241 (looking-at c-lambda-key)) | |
1242 (cons 'inlambda (point)))))) | |
1243 res)))) | |
1244 | |
1245 (defun c-looking-at-inexpr-block-backward (&optional lim) | |
1246 ;; Returns non-nil if we're looking at the end of an in-expression | |
1247 ;; block, otherwise the same as `c-looking-at-inexpr-block'. | |
1248 (save-excursion | |
1249 (let ((lim (or lim (c-point 'bod)))) | |
1250 (c-safe | |
1251 (c-backward-syntactic-ws lim) | |
1252 (if (eq (char-before) ?}) ; Recognize only a block currently. | |
1253 (progn | |
1254 (c-forward-sexp -1) | |
1255 (if (>= (point) lim) | |
1256 (c-looking-at-inexpr-block lim)))))))) | |
1257 | |
18720 | 1258 |
1259 (defun c-most-enclosing-brace (state) | |
1260 ;; return the bufpos of the most enclosing brace that hasn't been | |
1261 ;; narrowed out by any enclosing class, or nil if none was found | |
1262 (let (enclosingp) | |
1263 (while (and state (not enclosingp)) | |
1264 (setq enclosingp (car state) | |
1265 state (cdr state)) | |
1266 (if (consp enclosingp) | |
1267 (setq enclosingp nil) | |
1268 (if (> (point-min) enclosingp) | |
1269 (setq enclosingp nil)) | |
1270 (setq state nil))) | |
1271 enclosingp)) | |
1272 | |
1273 (defun c-least-enclosing-brace (state) | |
1274 ;; return the bufpos of the least (highest) enclosing brace that | |
1275 ;; hasn't been narrowed out by any enclosing class, or nil if none | |
1276 ;; was found. | |
1277 (c-most-enclosing-brace (nreverse state))) | |
1278 | |
1279 (defun c-safe-position (bufpos state) | |
1280 ;; return the closest known safe position higher up than point | |
1281 (let ((safepos nil)) | |
1282 (while state | |
1283 (setq safepos | |
1284 (if (consp (car state)) | |
1285 (cdr (car state)) | |
1286 (car state))) | |
1287 (if (< safepos bufpos) | |
1288 (setq state nil) | |
1289 (setq state (cdr state)))) | |
1290 safepos)) | |
1291 | |
1292 (defun c-narrow-out-enclosing-class (state lim) | |
1293 ;; narrow the buffer so that the enclosing class is hidden | |
1294 (let (inclass-p) | |
1295 (and state | |
1296 (setq inclass-p (c-search-uplist-for-classkey state)) | |
1297 (narrow-to-region | |
1298 (progn | |
1299 (goto-char (1+ (aref inclass-p 1))) | |
1300 (skip-chars-forward " \t\n" lim) | |
1301 ;; if point is now left of the class opening brace, we're | |
1302 ;; hosed, so try a different tact | |
1303 (if (<= (point) (aref inclass-p 1)) | |
1304 (progn | |
1305 (goto-char (1+ (aref inclass-p 1))) | |
1306 (c-forward-syntactic-ws lim))) | |
1307 (point)) | |
1308 ;; end point is the end of the current line | |
1309 (progn | |
1310 (goto-char lim) | |
1311 (c-point 'eol)))) | |
1312 ;; return the class vector | |
1313 inclass-p)) | |
1314 | |
24282 | 1315 (defsubst c-add-class-syntax (symbol classkey) |
1316 ;; The inclass and class-close syntactic symbols are added in | |
1317 ;; several places and some work is needed to fix everything. | |
1318 ;; Therefore it's collected here. | |
1319 (save-restriction | |
1320 (widen) | |
1321 (goto-char (aref classkey 1)) | |
1322 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi))) | |
1323 (c-add-syntax symbol (point)) | |
1324 (c-add-syntax symbol (aref classkey 0)) | |
1325 (if (and c-inexpr-class-key (c-looking-at-inexpr-block)) | |
1326 (c-add-syntax 'inexpr-class))))) | |
1327 | |
18720 | 1328 |
1329 ;; This function implements the main decision tree for determining the | |
1330 ;; syntactic analysis of the current line of code. Yes, it's huge and | |
1331 ;; bloated! | |
1332 | |
1333 (defun c-guess-basic-syntax () | |
1334 (save-excursion | |
1335 (save-restriction | |
1336 (beginning-of-line) | |
1337 (let* ((indent-point (point)) | |
1338 (case-fold-search nil) | |
1339 (fullstate (c-parse-state)) | |
1340 (state fullstate) | |
24282 | 1341 (in-method-intro-p (and (c-major-mode-is 'objc-mode) |
18720 | 1342 c-method-key |
1343 (looking-at c-method-key))) | |
1344 literal containing-sexp char-before-ip char-after-ip lim | |
1345 syntax placeholder c-in-literal-cache inswitch-p | |
24282 | 1346 tmpsymbol keyword injava-inher special-brace-list |
18720 | 1347 ;; narrow out any enclosing class or extern "C" block |
1348 (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
|
1349 inenclosing-p) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1350 ;; 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
|
1351 ;; 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
|
1352 ;; definitions. |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1353 (save-excursion |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1354 (save-restriction |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1355 (widen) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1356 (if (and inclass-p |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1357 (progn |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1358 (goto-char (aref inclass-p 0)) |
24282 | 1359 (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
|
1360 (let ((enclosing (match-string 1))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1361 (cond |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1362 ((string-equal enclosing "extern") |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1363 (setq inenclosing-p 'extern)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1364 ((string-equal enclosing "namespace") |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1365 (setq inenclosing-p 'namespace)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1366 ))))) |
18720 | 1367 ;; get the buffer position of the most nested opening brace, |
1368 ;; if there is one, and it hasn't been narrowed out | |
1369 (save-excursion | |
1370 (goto-char indent-point) | |
1371 (skip-chars-forward " \t}") | |
1372 (skip-chars-backward " \t") | |
1373 (while (and state | |
1374 (not in-method-intro-p) | |
1375 (not containing-sexp)) | |
1376 (setq containing-sexp (car state) | |
1377 state (cdr state)) | |
1378 (if (consp containing-sexp) | |
1379 ;; if cdr == point, then containing sexp is the brace | |
1380 ;; that opens the sexp we close | |
1381 (if (= (cdr containing-sexp) (point)) | |
1382 (setq containing-sexp (car containing-sexp)) | |
1383 ;; otherwise, ignore this element | |
1384 (setq containing-sexp nil)) | |
1385 ;; ignore the bufpos if its been narrowed out by the | |
1386 ;; containing class | |
1387 (if (<= containing-sexp (point-min)) | |
1388 (setq containing-sexp nil))))) | |
1389 | |
1390 ;; set the limit on the farthest back we need to search | |
1391 (setq lim (or containing-sexp | |
1392 (if (consp (car fullstate)) | |
1393 (cdr (car fullstate)) | |
1394 nil) | |
1395 (point-min))) | |
1396 | |
1397 ;; cache char before and after indent point, and move point to | |
1398 ;; the most likely position to perform the majority of tests | |
1399 (goto-char indent-point) | |
1400 (skip-chars-forward " \t") | |
1401 (setq char-after-ip (char-after)) | |
1402 (c-backward-syntactic-ws lim) | |
1403 (setq char-before-ip (char-before)) | |
1404 (goto-char indent-point) | |
1405 (skip-chars-forward " \t") | |
1406 | |
1407 ;; are we in a literal? | |
1408 (setq literal (c-in-literal lim)) | |
1409 | |
1410 ;; now figure out syntactic qualities of the current line | |
1411 (cond | |
1412 ;; CASE 1: in a string. | |
1413 ((memq literal '(string)) | |
1414 (c-add-syntax 'string (c-point 'bopl))) | |
1415 ;; CASE 2: in a C or C++ style comment. | |
1416 ((memq literal '(c c++)) | |
1417 ;; we need to catch multi-paragraph C comments | |
1418 (while (and (zerop (forward-line -1)) | |
1419 (looking-at "^[ \t]*$"))) | |
1420 (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
|
1421 ;; CASE 3: in a cpp preprocessor macro |
18720 | 1422 ((eq literal 'pound) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1423 (let ((boi (c-point 'boi)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1424 (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
|
1425 (setq tmpsymbol (if (= boi macrostart) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1426 'cpp-macro |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1427 'cpp-macro-cont)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1428 (c-add-syntax tmpsymbol macrostart))) |
18720 | 1429 ;; CASE 4: in an objective-c method intro |
1430 (in-method-intro-p | |
1431 (c-add-syntax 'objc-method-intro (c-point 'boi))) | |
1432 ;; CASE 5: Line is at top level. | |
1433 ((null containing-sexp) | |
1434 (cond | |
24282 | 1435 ;; CASE 5A: we are looking at a defun, brace list, class, |
1436 ;; or inline-inclass method opening brace | |
1437 ((setq special-brace-list | |
1438 (or (and c-special-brace-lists | |
1439 (c-looking-at-special-brace-list)) | |
1440 (eq char-after-ip ?{))) | |
18720 | 1441 (cond |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1442 ;; CASE 5A.1: extern language or namespace construct |
18720 | 1443 ((save-excursion |
1444 (goto-char indent-point) | |
1445 (skip-chars-forward " \t") | |
24282 | 1446 (and (c-safe (progn (c-backward-sexp 2) t)) |
1447 (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
|
1448 (setq keyword (match-string 1) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1449 placeholder (point)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1450 (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
|
1451 (setq tmpsymbol 'namespace-open)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1452 (and (string-equal keyword "extern") |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1453 (progn |
24282 | 1454 (c-forward-sexp 1) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1455 (c-forward-syntactic-ws) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1456 (eq (char-after) ?\")) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1457 (setq tmpsymbol 'extern-lang-open))) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1458 )) |
18720 | 1459 (goto-char placeholder) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1460 (c-add-syntax tmpsymbol (c-point 'boi))) |
18720 | 1461 ;; CASE 5A.2: we are looking at a class opening brace |
1462 ((save-excursion | |
1463 (goto-char indent-point) | |
1464 (skip-chars-forward " \t{") | |
1465 ;; TBD: watch out! there could be a bogus | |
1466 ;; c-state-cache in place when we get here. we have | |
1467 ;; to go through much chicanery to ignore the cache. | |
1468 ;; But of course, there may not be! BLECH! BOGUS! | |
1469 (let ((decl | |
1470 (if (boundp 'c-state-cache) | |
1471 (let ((old-cache c-state-cache)) | |
1472 (prog2 | |
1473 (makunbound 'c-state-cache) | |
1474 (c-search-uplist-for-classkey (c-parse-state)) | |
1475 (setq c-state-cache old-cache))) | |
1476 (c-search-uplist-for-classkey (c-parse-state)) | |
1477 ))) | |
1478 (and decl | |
1479 (setq placeholder (aref decl 0))) | |
1480 )) | |
1481 (c-add-syntax 'class-open placeholder)) | |
1482 ;; CASE 5A.3: brace list open | |
1483 ((save-excursion | |
1484 (c-beginning-of-statement-1 lim) | |
1485 ;; c-b-o-s could have left us at point-min | |
1486 (and (bobp) | |
1487 (c-forward-syntactic-ws indent-point)) | |
1488 (if (looking-at "typedef[^_]") | |
24282 | 1489 (progn (c-forward-sexp 1) |
18720 | 1490 (c-forward-syntactic-ws indent-point))) |
1491 (setq placeholder (c-point 'boi)) | |
24282 | 1492 (or (consp special-brace-list) |
1493 (and (or (looking-at "enum[ \t\n]+") | |
1494 (save-excursion | |
1495 (goto-char indent-point) | |
1496 (while (and (> (point) placeholder) | |
1497 (= (c-backward-token-1 1 t) 0) | |
1498 (/= (char-after) ?=))) | |
1499 (eq (char-after) ?=))) | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1500 (save-excursion |
24282 | 1501 (while (and (< (point) indent-point) |
1502 (= (c-forward-token-1 1 t) 0) | |
1503 (not (memq (char-after) '(?\; ?\())))) | |
1504 (not (memq (char-after) '(?\; ?\())) | |
1505 )))) | |
18720 | 1506 (c-add-syntax 'brace-list-open placeholder)) |
1507 ;; 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
|
1508 ((and inclass-p (not inenclosing-p)) |
18720 | 1509 (c-add-syntax 'inline-open) |
24282 | 1510 (c-add-class-syntax 'inclass inclass-p)) |
18720 | 1511 ;; CASE 5A.5: ordinary defun open |
1512 (t | |
1513 (goto-char placeholder) | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1514 (if inclass-p |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1515 (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
|
1516 (c-add-syntax 'defun-open (c-point 'bol))) |
18720 | 1517 ))) |
1518 ;; CASE 5B: first K&R arg decl or member init | |
1519 ((c-just-after-func-arglist-p) | |
1520 (cond | |
1521 ;; CASE 5B.1: a member init | |
1522 ((or (eq char-before-ip ?:) | |
1523 (eq char-after-ip ?:)) | |
1524 ;; this line should be indented relative to the beginning | |
1525 ;; of indentation for the topmost-intro line that contains | |
1526 ;; the prototype's open paren | |
1527 ;; TBD: is the following redundant? | |
1528 (if (eq char-before-ip ?:) | |
1529 (forward-char -1)) | |
1530 (c-backward-syntactic-ws lim) | |
1531 ;; TBD: is the preceding redundant? | |
1532 (if (eq (char-before) ?:) | |
1533 (progn (forward-char -1) | |
1534 (c-backward-syntactic-ws lim))) | |
1535 (if (eq (char-before) ?\)) | |
24282 | 1536 (c-backward-sexp 1)) |
18720 | 1537 (setq placeholder (point)) |
1538 (save-excursion | |
24282 | 1539 (and (c-safe (c-backward-sexp 1) t) |
18720 | 1540 (looking-at "throw[^_]") |
24282 | 1541 (c-safe (c-backward-sexp 1) t) |
18720 | 1542 (setq placeholder (point)))) |
1543 (goto-char placeholder) | |
1544 (c-add-syntax 'member-init-intro (c-point 'boi)) | |
1545 ;; we don't need to add any class offset since this | |
1546 ;; should be relative to the ctor's indentation | |
1547 ) | |
1548 ;; CASE 5B.2: K&R arg decl intro | |
1549 (c-recognize-knr-p | |
1550 (c-add-syntax 'knr-argdecl-intro (c-point 'boi)) | |
24282 | 1551 (if inclass-p (c-add-class-syntax 'inclass inclass-p))) |
18720 | 1552 ;; CASE 5B.3: Nether region after a C++ or Java func |
1553 ;; decl, which could include a `throws' declaration. | |
1554 (t | |
1555 (c-beginning-of-statement-1 lim) | |
1556 (c-add-syntax 'func-decl-cont (c-point 'boi)) | |
1557 ))) | |
1558 ;; CASE 5C: inheritance line. could be first inheritance | |
1559 ;; line, or continuation of a multiple inheritance | |
1560 ((or (and c-baseclass-key (looking-at c-baseclass-key)) | |
1561 (and (or (eq char-before-ip ?:) | |
1562 ;; watch out for scope operator | |
1563 (save-excursion | |
1564 (and (eq char-after-ip ?:) | |
1565 (c-safe (progn (forward-char 1) t)) | |
1566 (not (eq (char-after) ?:)) | |
1567 ))) | |
1568 (save-excursion | |
1569 (c-backward-syntactic-ws lim) | |
1570 (if (eq char-before-ip ?:) | |
1571 (progn | |
1572 (forward-char -1) | |
1573 (c-backward-syntactic-ws lim))) | |
1574 (back-to-indentation) | |
1575 (looking-at c-class-key))) | |
1576 ;; for Java | |
24282 | 1577 (and (c-major-mode-is 'java-mode) |
18720 | 1578 (let ((fence (save-excursion |
1579 (c-beginning-of-statement-1 lim) | |
1580 (point))) | |
1581 cont done) | |
1582 (save-excursion | |
1583 (while (not done) | |
1584 (cond ((looking-at c-Java-special-key) | |
1585 (setq injava-inher (cons cont (point)) | |
1586 done t)) | |
24282 | 1587 ((or (not (c-safe (c-forward-sexp -1) t)) |
18720 | 1588 (<= (point) fence)) |
1589 (setq done t)) | |
1590 ) | |
1591 (setq cont t))) | |
1592 injava-inher) | |
1593 (not (c-crosses-statement-barrier-p (cdr injava-inher) | |
1594 (point))) | |
1595 )) | |
1596 (cond | |
1597 ;; CASE 5C.1: non-hanging colon on an inher intro | |
1598 ((eq char-after-ip ?:) | |
1599 (c-backward-syntactic-ws lim) | |
1600 (c-add-syntax 'inher-intro (c-point 'boi)) | |
1601 ;; don't add inclass symbol since relative point already | |
1602 ;; contains any class offset | |
1603 ) | |
1604 ;; CASE 5C.2: hanging colon on an inher intro | |
1605 ((eq char-before-ip ?:) | |
1606 (c-add-syntax 'inher-intro (c-point 'boi)) | |
24282 | 1607 (if inclass-p (c-add-class-syntax 'inclass inclass-p))) |
18720 | 1608 ;; CASE 5C.3: in a Java implements/extends |
1609 (injava-inher | |
1610 (let ((where (cdr injava-inher)) | |
1611 (cont (car injava-inher))) | |
1612 (goto-char where) | |
1613 (cond ((looking-at "throws[ \t\n]") | |
1614 (c-add-syntax 'func-decl-cont | |
1615 (progn (c-beginning-of-statement-1 lim) | |
1616 (c-point 'boi)))) | |
1617 (cont (c-add-syntax 'inher-cont where)) | |
1618 (t (c-add-syntax 'inher-intro | |
1619 (progn (goto-char (cdr injava-inher)) | |
1620 (c-beginning-of-statement-1 lim) | |
1621 (point)))) | |
1622 ))) | |
1623 ;; CASE 5C.4: a continued inheritance line | |
1624 (t | |
1625 (c-beginning-of-inheritance-list lim) | |
1626 (c-add-syntax 'inher-cont (point)) | |
1627 ;; don't add inclass symbol since relative point already | |
1628 ;; contains any class offset | |
1629 ))) | |
1630 ;; CASE 5D: this could be a top-level compound statement or a | |
1631 ;; member init list continuation | |
1632 ((eq char-before-ip ?,) | |
1633 (goto-char indent-point) | |
1634 (c-backward-syntactic-ws lim) | |
1635 (while (and (< lim (point)) | |
1636 (eq (char-before) ?,)) | |
1637 ;; this will catch member inits with multiple | |
1638 ;; line arglists | |
1639 (forward-char -1) | |
1640 (c-backward-syntactic-ws (c-point 'bol)) | |
1641 (if (eq (char-before) ?\)) | |
24282 | 1642 (c-backward-sexp 2) |
1643 (c-backward-sexp 1)) | |
18720 | 1644 ;; now continue checking |
1645 (c-backward-syntactic-ws lim)) | |
1646 (cond | |
1647 ;; CASE 5D.1: hanging member init colon, but watch out | |
1648 ;; for bogus matches on access specifiers inside classes. | |
24282 | 1649 ((and (save-excursion |
1650 ;; There might be member inits on the first line too. | |
1651 (end-of-line) | |
1652 (while (and (> (point) lim) | |
1653 (eq (char-before) ?,) | |
1654 (= (c-backward-token-1 2 t lim) 0) | |
1655 (eq (char-after) ?\() | |
1656 (= (c-backward-token-1 1 t lim) 0)) | |
1657 (c-backward-syntactic-ws lim)) | |
1658 (setq placeholder (point)) | |
1659 (c-backward-syntactic-ws lim) | |
1660 (eq (char-before) ?:)) | |
18720 | 1661 (save-excursion |
24282 | 1662 (goto-char placeholder) |
1663 (back-to-indentation) | |
1664 (and | |
1665 c-access-key | |
1666 (not (looking-at c-access-key)) | |
1667 (not (looking-at c-class-key))) | |
1668 )) | |
1669 (goto-char placeholder) | |
1670 (c-forward-syntactic-ws) | |
1671 (c-add-syntax 'member-init-cont (point)) | |
18720 | 1672 ;; we do not need to add class offset since relative |
1673 ;; point is the member init above us | |
1674 ) | |
1675 ;; CASE 5D.2: non-hanging member init colon | |
1676 ((progn | |
1677 (c-forward-syntactic-ws indent-point) | |
1678 (eq (char-after) ?:)) | |
1679 (skip-chars-forward " \t:") | |
1680 (c-add-syntax 'member-init-cont (point))) | |
1681 ;; CASE 5D.3: perhaps a multiple inheritance line? | |
24282 | 1682 ((save-excursion |
1683 (c-beginning-of-statement-1 lim) | |
1684 (setq placeholder (point)) | |
1685 (looking-at c-inher-key)) | |
1686 (goto-char placeholder) | |
18720 | 1687 (c-add-syntax 'inher-cont (c-point 'boi))) |
1688 ;; CASE 5D.4: perhaps a template list continuation? | |
1689 ((save-excursion | |
19301
c4d7dd15f7d5
(c-guess-basic-syntax): CASE 5D.4: template argument continuation
Richard M. Stallman <rms@gnu.org>
parents:
19251
diff
changeset
|
1690 (goto-char indent-point) |
18720 | 1691 (skip-chars-backward "^<" lim) |
1692 ;; not sure if this is the right test, but it should | |
1693 ;; be fast and mostly accurate. | |
24282 | 1694 (setq placeholder (point)) |
18720 | 1695 (and (eq (char-before) ?<) |
1696 (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
|
1697 ;; we can probably indent it just like an arglist-cont |
24282 | 1698 (goto-char placeholder) |
1699 (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
|
1700 (c-add-syntax 'template-args-cont (point))) |
18720 | 1701 ;; CASE 5D.5: perhaps a top-level statement-cont |
1702 (t | |
1703 (c-beginning-of-statement-1 lim) | |
1704 ;; skip over any access-specifiers | |
1705 (and inclass-p c-access-key | |
1706 (while (looking-at c-access-key) | |
1707 (forward-line 1))) | |
1708 ;; skip over comments, whitespace | |
1709 (c-forward-syntactic-ws indent-point) | |
1710 (c-add-syntax 'statement-cont (c-point 'boi))) | |
1711 )) | |
1712 ;; CASE 5E: we are looking at a access specifier | |
1713 ((and inclass-p | |
1714 c-access-key | |
1715 (looking-at c-access-key)) | |
1716 (c-add-syntax 'access-label (c-point 'bonl)) | |
24282 | 1717 (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
|
1718 ;; 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
|
1719 ((and inenclosing-p |
18720 | 1720 (eq char-after-ip ?})) |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1721 (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
|
1722 'extern-lang-close |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1723 'namespace-close)) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1724 (c-add-syntax tmpsymbol (aref inclass-p 0))) |
18720 | 1725 ;; CASE 5G: we are looking at the brace which closes the |
1726 ;; enclosing nested class decl | |
1727 ((and inclass-p | |
1728 (eq char-after-ip ?}) | |
1729 (save-excursion | |
1730 (save-restriction | |
1731 (widen) | |
1732 (forward-char 1) | |
24282 | 1733 (and (c-safe (progn (c-backward-sexp 1) t)) |
1734 (= (point) (aref inclass-p 1)) | |
1735 )))) | |
1736 (c-add-class-syntax 'class-close inclass-p)) | |
18720 | 1737 ;; CASE 5H: we could be looking at subsequent knr-argdecls |
1738 ((and c-recognize-knr-p | |
1739 ;; here we essentially use the hack that is used in | |
1740 ;; Emacs' c-mode.el to limit how far back we should | |
1741 ;; look. The assumption is made that argdecls are | |
1742 ;; indented at least one space and that function | |
1743 ;; headers are not indented. | |
1744 (let ((limit (save-excursion | |
1745 (re-search-backward "^[^ \^L\t\n#]" nil 'move) | |
1746 (point)))) | |
1747 (save-excursion | |
1748 (c-backward-syntactic-ws limit) | |
1749 (setq placeholder (point)) | |
1750 (while (and (memq (char-before) '(?\; ?,)) | |
1751 (> (point) limit)) | |
1752 (beginning-of-line) | |
1753 (setq placeholder (point)) | |
1754 (c-backward-syntactic-ws limit)) | |
1755 (and (eq (char-before) ?\)) | |
1756 (or (not c-method-key) | |
1757 (progn | |
24282 | 1758 (c-forward-sexp -1) |
18720 | 1759 (forward-char -1) |
1760 (c-backward-syntactic-ws) | |
1761 (not (or (memq (char-before) '(?- ?+)) | |
1762 ;; or a class category | |
1763 (progn | |
24282 | 1764 (c-forward-sexp -2) |
18720 | 1765 (looking-at c-class-key)) |
1766 ))))) | |
1767 )) | |
1768 (save-excursion | |
1769 (c-beginning-of-statement-1) | |
1770 (not (looking-at "typedef[ \t\n]+")))) | |
1771 (goto-char placeholder) | |
1772 (c-add-syntax 'knr-argdecl (c-point 'boi))) | |
1773 ;; CASE 5I: we are at the topmost level, make sure we skip | |
1774 ;; back past any access specifiers | |
1775 ((progn | |
1776 (c-backward-syntactic-ws lim) | |
1777 (while (and inclass-p | |
1778 c-access-key | |
1779 (not (bobp)) | |
1780 (save-excursion | |
24282 | 1781 (c-safe (progn (c-backward-sexp 1) t)) |
18720 | 1782 (looking-at c-access-key))) |
24282 | 1783 (c-backward-sexp 1) |
18720 | 1784 (c-backward-syntactic-ws lim)) |
1785 (or (bobp) | |
1786 (memq (char-before) '(?\; ?\})))) | |
1787 ;; real beginning-of-line could be narrowed out due to | |
1788 ;; enclosure in a class block | |
1789 (save-restriction | |
1790 (widen) | |
1791 (c-add-syntax 'topmost-intro (c-point 'bol)) | |
1792 (if inclass-p | |
1793 (progn | |
1794 (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
|
1795 (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
|
1796 (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
|
1797 (cond |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1798 ((eq inenclosing-p 'extern) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1799 (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
|
1800 ((eq inenclosing-p 'namespace) |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
1801 (c-add-syntax 'innamespace (c-point 'boi))) |
24282 | 1802 (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
|
1803 )) |
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1804 )) |
18720 | 1805 ;; CASE 5J: we are at an ObjC or Java method definition |
1806 ;; continuation line. | |
1807 ((and c-method-key | |
1808 (progn | |
1809 (c-beginning-of-statement-1 lim) | |
1810 (beginning-of-line) | |
1811 (looking-at c-method-key))) | |
1812 (c-add-syntax 'objc-method-args-cont (point))) | |
1813 ;; CASE 5K: we are at a topmost continuation line | |
1814 (t | |
1815 (c-beginning-of-statement-1 lim) | |
1816 (c-forward-syntactic-ws) | |
1817 (c-add-syntax 'topmost-intro-cont (c-point 'boi))) | |
1818 )) ; end CASE 5 | |
24282 | 1819 ;; CASE 6: In-expression statement. |
1820 ((and (or c-inexpr-class-key c-inexpr-block-key c-lambda-key) | |
1821 (setq placeholder (c-looking-at-inexpr-block))) | |
1822 (setq tmpsymbol (assq (car placeholder) | |
1823 '((inexpr-class . class-open) | |
1824 (inexpr-statement . block-open)))) | |
1825 (if tmpsymbol | |
1826 ;; It's a statement block or an anonymous class. | |
1827 (setq tmpsymbol (cdr tmpsymbol)) | |
1828 ;; It's a Pike lambda. Check whether we are between the | |
1829 ;; lambda keyword and the argument list or at the defun | |
1830 ;; opener. | |
1831 (setq tmpsymbol | |
1832 (if (save-excursion | |
1833 (and (c-safe (c-forward-sexp -1) t) | |
1834 (looking-at c-lambda-key))) | |
1835 'lambda-intro-cont | |
1836 'inline-open))) | |
1837 (goto-char (cdr placeholder)) | |
1838 (c-add-syntax tmpsymbol (c-point 'boi)) | |
1839 (c-add-syntax (car placeholder))) | |
1840 ;; CASE 7: line is an expression, not a statement. Most | |
18720 | 1841 ;; likely we are either in a function prototype or a function |
1842 ;; call argument list | |
24282 | 1843 ((not (or (and c-special-brace-lists |
1844 (save-excursion | |
1845 (goto-char containing-sexp) | |
1846 (c-looking-at-special-brace-list))) | |
1847 (eq (char-after containing-sexp) ?{))) | |
18720 | 1848 (c-backward-syntactic-ws containing-sexp) |
1849 (cond | |
24282 | 1850 ;; CASE 7A: we are looking at the arglist closing paren |
18720 | 1851 ((and (not (eq char-before-ip ?,)) |
1852 (memq char-after-ip '(?\) ?\]))) | |
1853 (goto-char containing-sexp) | |
1854 (c-add-syntax 'arglist-close (c-point 'boi))) | |
24282 | 1855 ;; CASE 7B: Looking at the opening brace of an |
1856 ;; in-expression block or brace list. | |
1857 ((eq char-after-ip ?{) | |
1858 (goto-char indent-point) | |
1859 (setq placeholder (c-point 'boi)) | |
1860 (goto-char containing-sexp) | |
1861 (if (c-inside-bracelist-p placeholder | |
1862 (cons containing-sexp state)) | |
1863 (progn | |
1864 (c-add-syntax 'brace-list-open (c-point 'boi)) | |
1865 (c-add-syntax 'inexpr-class)) | |
1866 (c-add-syntax 'block-open (c-point 'boi)) | |
1867 (c-add-syntax 'inexpr-statement))) | |
1868 ;; CASE 7C: we are looking at the first argument in an empty | |
18720 | 1869 ;; argument list. Use arglist-close if we're actually |
1870 ;; looking at a close paren or bracket. | |
1871 ((memq char-before-ip '(?\( ?\[)) | |
1872 (goto-char containing-sexp) | |
1873 (c-add-syntax 'arglist-intro (c-point 'boi))) | |
24282 | 1874 ;; CASE 7D: we are inside a conditional test clause. treat |
18720 | 1875 ;; these things as statements |
1876 ((save-excursion | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
1877 (goto-char containing-sexp) |
24282 | 1878 (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
|
1879 (looking-at "\\<for\\>[^_]"))) |
18720 | 1880 (goto-char (1+ containing-sexp)) |
1881 (c-forward-syntactic-ws indent-point) | |
1882 (c-beginning-of-statement-1 containing-sexp) | |
1883 (if (eq char-before-ip ?\;) | |
1884 (c-add-syntax 'statement (point)) | |
1885 (c-add-syntax 'statement-cont (point)) | |
1886 )) | |
24282 | 1887 ;; CASE 7E: maybe a continued method call. This is the case |
18720 | 1888 ;; when we are inside a [] bracketed exp, and what precede |
1889 ;; the opening bracket is not an identifier. | |
1890 ((and c-method-key | |
1891 (eq (char-after containing-sexp) ?\[) | |
1892 (save-excursion | |
1893 (goto-char (1- containing-sexp)) | |
1894 (c-backward-syntactic-ws (c-point 'bod)) | |
1895 (if (not (looking-at c-symbol-key)) | |
1896 (c-add-syntax 'objc-method-call-cont containing-sexp)) | |
1897 ))) | |
24282 | 1898 ;; CASE 7F: we are looking at an arglist continuation line, |
18720 | 1899 ;; but the preceding argument is on the same line as the |
1900 ;; opening paren. This case includes multi-line | |
1901 ;; mathematical paren groupings, but we could be on a | |
1902 ;; for-list continuation line | |
1903 ((and (save-excursion | |
1904 (goto-char (1+ containing-sexp)) | |
1905 (skip-chars-forward " \t") | |
1906 (not (eolp))) | |
1907 (save-excursion | |
1908 (c-beginning-of-statement-1 lim) | |
1909 (skip-chars-backward " \t([") | |
1910 (<= (point) containing-sexp))) | |
1911 (goto-char containing-sexp) | |
1912 (c-add-syntax 'arglist-cont-nonempty (c-point 'boi))) | |
24282 | 1913 ;; CASE 7G: we are looking at just a normal arglist |
18720 | 1914 ;; continuation line |
1915 (t (c-beginning-of-statement-1 containing-sexp) | |
1916 (forward-char 1) | |
1917 (c-forward-syntactic-ws indent-point) | |
1918 (c-add-syntax 'arglist-cont (c-point 'boi))) | |
1919 )) | |
24282 | 1920 ;; CASE 8: func-local multi-inheritance line |
18720 | 1921 ((and c-baseclass-key |
1922 (save-excursion | |
1923 (goto-char indent-point) | |
1924 (skip-chars-forward " \t") | |
1925 (looking-at c-baseclass-key))) | |
1926 (goto-char indent-point) | |
1927 (skip-chars-forward " \t") | |
1928 (cond | |
24282 | 1929 ;; CASE 8A: non-hanging colon on an inher intro |
18720 | 1930 ((eq char-after-ip ?:) |
1931 (c-backward-syntactic-ws lim) | |
1932 (c-add-syntax 'inher-intro (c-point 'boi))) | |
24282 | 1933 ;; CASE 8B: hanging colon on an inher intro |
18720 | 1934 ((eq char-before-ip ?:) |
1935 (c-add-syntax 'inher-intro (c-point 'boi))) | |
24282 | 1936 ;; CASE 8C: a continued inheritance line |
18720 | 1937 (t |
1938 (c-beginning-of-inheritance-list lim) | |
1939 (c-add-syntax 'inher-cont (point)) | |
1940 ))) | |
24282 | 1941 ;; CASE 9: we are inside a brace-list |
1942 ((setq special-brace-list | |
1943 (or (and c-special-brace-lists | |
1944 (save-excursion | |
1945 (goto-char containing-sexp) | |
1946 (c-looking-at-special-brace-list))) | |
1947 (c-inside-bracelist-p containing-sexp state))) | |
18720 | 1948 (cond |
24282 | 1949 ;; CASE 9A: In the middle of a special brace list opener. |
1950 ((and (consp special-brace-list) | |
1951 (eq char-after-ip (car (cdr special-brace-list)))) | |
1952 (goto-char (car (car special-brace-list))) | |
1953 (c-beginning-of-statement-1 lim) | |
1954 (c-forward-token-1 0) | |
1955 (if (looking-at "typedef\\>") (c-forward-token-1 1)) | |
1956 (c-add-syntax 'brace-list-open (c-point 'boi))) | |
1957 ;; CASE 9B: brace-list-close brace | |
1958 ((if (consp special-brace-list) | |
1959 ;; Check special brace list closer. | |
1960 (progn | |
1961 (goto-char (car (car special-brace-list))) | |
1962 (save-excursion | |
1963 (goto-char indent-point) | |
1964 (back-to-indentation) | |
1965 (or | |
1966 ;; We were between the special close char and the `)'. | |
1967 (and (eq (char-after) ?\)) | |
1968 (eq (1+ (point)) (cdr (car special-brace-list)))) | |
1969 ;; We were before the special close char. | |
1970 (and (eq (char-after) (cdr (cdr special-brace-list))) | |
1971 (= (c-forward-token-1) 0) | |
1972 (eq (1+ (point)) (cdr (car special-brace-list))))))) | |
1973 ;; Normal brace list check. | |
1974 (and (eq char-after-ip ?}) | |
1975 (c-safe (progn (forward-char 1) | |
1976 (c-backward-sexp 1) | |
1977 t)) | |
1978 (= (point) containing-sexp))) | |
18720 | 1979 (c-add-syntax 'brace-list-close (c-point 'boi))) |
24282 | 1980 (t |
1981 ;; Prepare for the rest of the cases below by going to the | |
1982 ;; token following the opening brace | |
1983 (if (consp special-brace-list) | |
1984 (progn | |
1985 (goto-char (car (car special-brace-list))) | |
1986 (c-forward-token-1 1 nil indent-point)) | |
1987 (goto-char containing-sexp)) | |
1988 (forward-char) | |
1989 (let ((start (point))) | |
18720 | 1990 (c-forward-syntactic-ws indent-point) |
24282 | 1991 (goto-char (max start (c-point 'bol)))) |
1992 (skip-chars-forward " \t\n\r" indent-point) | |
1993 (cond | |
1994 ;; CASE 9C: we're looking at the first line in a brace-list | |
1995 ((= (point) indent-point) | |
1996 (goto-char containing-sexp) | |
1997 (c-add-syntax 'brace-list-intro (c-point 'boi)) | |
1998 ) ; end CASE 9C | |
1999 ;; CASE 9D: this is just a later brace-list-entry or | |
2000 ;; brace-entry-open | |
2001 (t (if (or (eq char-after-ip ?{) | |
2002 (and c-special-brace-lists | |
2003 (save-excursion | |
2004 (goto-char indent-point) | |
2005 (c-forward-syntactic-ws (c-point 'eol)) | |
2006 (c-looking-at-special-brace-list (point))))) | |
2007 (c-add-syntax 'brace-entry-open (point)) | |
2008 (c-add-syntax 'brace-list-entry (point)) | |
2009 )) ; end CASE 9D | |
2010 )))) ; end CASE 9 | |
2011 ;; CASE 10: A continued statement | |
2012 ((and (not (memq char-before-ip '(?\; ?:))) | |
2013 (or (not (eq char-before-ip ?})) | |
2014 (c-looking-at-inexpr-block-backward containing-sexp)) | |
18720 | 2015 (> (point) |
2016 (save-excursion | |
2017 (c-beginning-of-statement-1 containing-sexp) | |
24282 | 2018 (c-forward-syntactic-ws) |
18720 | 2019 (setq placeholder (point)))) |
2020 (/= placeholder containing-sexp)) | |
2021 (goto-char indent-point) | |
2022 (skip-chars-forward " \t") | |
2023 (let ((after-cond-placeholder | |
2024 (save-excursion | |
2025 (goto-char placeholder) | |
2026 (if (looking-at c-conditional-key) | |
2027 (progn | |
2028 (c-safe (c-skip-conditional)) | |
2029 (c-forward-syntactic-ws) | |
2030 (if (eq (char-after) ?\;) | |
2031 (progn | |
2032 (forward-char 1) | |
2033 (c-forward-syntactic-ws))) | |
2034 (point)) | |
2035 nil)))) | |
2036 (cond | |
24282 | 2037 ;; CASE 10A: substatement |
18720 | 2038 ((and after-cond-placeholder |
2039 (>= after-cond-placeholder indent-point)) | |
2040 (goto-char placeholder) | |
2041 (if (eq char-after-ip ?{) | |
2042 (c-add-syntax 'substatement-open (c-point 'boi)) | |
2043 (c-add-syntax 'substatement (c-point 'boi)))) | |
24282 | 2044 ;; CASE 10B: open braces for class or brace-lists |
2045 ((setq special-brace-list | |
2046 (or (and c-special-brace-lists | |
2047 (c-looking-at-special-brace-list)) | |
2048 (eq char-after-ip ?{))) | |
18720 | 2049 (cond |
24282 | 2050 ;; CASE 10B.1: class-open |
18720 | 2051 ((save-excursion |
2052 (goto-char indent-point) | |
2053 (skip-chars-forward " \t{") | |
2054 (let ((decl (c-search-uplist-for-classkey (c-parse-state)))) | |
2055 (and decl | |
2056 (setq placeholder (aref decl 0))) | |
2057 )) | |
2058 (c-add-syntax 'class-open placeholder)) | |
24282 | 2059 ;; CASE 10B.2: brace-list-open |
2060 ((or (consp special-brace-list) | |
2061 (save-excursion | |
18720 | 2062 (goto-char placeholder) |
2063 (looking-at "\\<enum\\>")) | |
21106
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2064 (save-excursion |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2065 (goto-char indent-point) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2066 (while (and (> (point) placeholder) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2067 (= (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
|
2068 (/= (char-after) ?=))) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2069 (eq (char-after) ?=))) |
18720 | 2070 (c-add-syntax 'brace-list-open placeholder)) |
24282 | 2071 ;; CASE 10B.3: catch-all for unknown construct. |
18720 | 2072 (t |
2073 ;; Can and should I add an extensibility hook here? | |
2074 ;; Something like c-recognize-hook so support for | |
2075 ;; unknown constructs could be added. It's probably a | |
2076 ;; losing proposition, so I dunno. | |
2077 (goto-char placeholder) | |
2078 (c-add-syntax 'statement-cont (c-point 'boi)) | |
2079 (c-add-syntax 'block-open)) | |
2080 )) | |
24282 | 2081 ;; CASE 10C: iostream insertion or extraction operator |
18720 | 2082 ((looking-at "<<\\|>>") |
2083 (goto-char placeholder) | |
2084 (and after-cond-placeholder | |
2085 (goto-char after-cond-placeholder)) | |
2086 (while (and (re-search-forward "<<\\|>>" indent-point 'move) | |
2087 (c-in-literal placeholder))) | |
2088 ;; if we ended up at indent-point, then the first | |
2089 ;; streamop is on a separate line. Indent the line like | |
2090 ;; a statement-cont instead | |
2091 (if (/= (point) indent-point) | |
2092 (c-add-syntax 'stream-op (c-point 'boi)) | |
2093 (c-backward-syntactic-ws lim) | |
2094 (c-add-syntax 'statement-cont (c-point 'boi)))) | |
24282 | 2095 ;; CASE 10D: continued statement. find the accurate |
18720 | 2096 ;; beginning of statement or substatement |
2097 (t | |
2098 (c-beginning-of-statement-1 after-cond-placeholder) | |
2099 ;; KLUDGE ALERT! c-beginning-of-statement-1 can leave | |
2100 ;; us before the lim we're passing in. It should be | |
2101 ;; fixed, but I'm worried about side-effects at this | |
2102 ;; late date. Fix for v5. | |
2103 (goto-char (or (and after-cond-placeholder | |
2104 (max after-cond-placeholder (point))) | |
2105 (point))) | |
2106 (c-add-syntax 'statement-cont (point))) | |
2107 ))) | |
24282 | 2108 ;; CASE 11: an else clause? |
18720 | 2109 ((looking-at "\\<else\\>[^_]") |
2110 (c-backward-to-start-of-if containing-sexp) | |
2111 (c-add-syntax 'else-clause (c-point 'boi))) | |
24282 | 2112 ;; CASE 12: Statement. But what kind? Lets see if its a |
18720 | 2113 ;; while closure of a do/while construct |
2114 ((progn | |
2115 (goto-char indent-point) | |
2116 (skip-chars-forward " \t") | |
2117 (and (looking-at "while\\b[^_]") | |
2118 (save-excursion | |
2119 (c-backward-to-start-of-do containing-sexp) | |
2120 (setq placeholder (point)) | |
2121 (looking-at "do\\b[^_]")) | |
2122 )) | |
2123 (c-add-syntax 'do-while-closure placeholder)) | |
24282 | 2124 ;; CASE 13: A catch or finally clause? This case is simpler |
2125 ;; than if-else and do-while, because a block is required | |
2126 ;; after every try, catch and finally. | |
2127 ((save-excursion | |
2128 (and (cond ((c-major-mode-is 'c++-mode) | |
2129 (looking-at "\\<catch\\>[^_]")) | |
2130 ((c-major-mode-is 'java-mode) | |
2131 (looking-at "\\<\\(catch\\|finally\\)\\>[^_]"))) | |
2132 (c-safe (c-backward-sexp) t) | |
2133 (eq (char-after) ?{) | |
2134 (c-safe (c-backward-sexp) t) | |
2135 (if (eq (char-after) ?\() | |
2136 (c-safe (c-backward-sexp) t) | |
2137 t) | |
2138 (looking-at "\\<\\(try\\|catch\\)\\>[^_]") | |
2139 (setq placeholder (c-point 'boi)))) | |
2140 (c-add-syntax 'catch-clause placeholder)) | |
2141 ;; CASE 14: A case or default label | |
18720 | 2142 ((looking-at c-switch-label-key) |
2143 (goto-char containing-sexp) | |
2144 ;; check for hanging braces | |
2145 (if (/= (point) (c-point 'boi)) | |
24282 | 2146 (c-forward-sexp -1)) |
18720 | 2147 (c-add-syntax 'case-label (c-point 'boi))) |
24282 | 2148 ;; CASE 15: any other label |
18720 | 2149 ((looking-at c-label-key) |
2150 (goto-char containing-sexp) | |
24282 | 2151 ;; check for hanging braces |
2152 (if (/= (point) (c-point 'boi)) | |
2153 (c-forward-sexp -1)) | |
18720 | 2154 (c-add-syntax 'label (c-point 'boi))) |
24282 | 2155 ;; CASE 16: block close brace, possibly closing the defun or |
18720 | 2156 ;; the class |
2157 ((eq char-after-ip ?}) | |
2158 (let* ((lim (c-safe-position containing-sexp fullstate)) | |
2159 (relpos (save-excursion | |
2160 (goto-char containing-sexp) | |
2161 (if (/= (point) (c-point 'boi)) | |
2162 (c-beginning-of-statement-1 lim)) | |
2163 (c-point 'boi)))) | |
2164 (cond | |
24282 | 2165 ;; CASE 16A: closing a lambda defun or an in-expression |
2166 ;; block? | |
2167 ((save-excursion | |
2168 (goto-char containing-sexp) | |
2169 (setq placeholder (c-looking-at-inexpr-block))) | |
2170 (setq tmpsymbol (if (eq (car placeholder) 'inlambda) | |
2171 'inline-close | |
2172 'block-close)) | |
2173 (goto-char containing-sexp) | |
2174 (back-to-indentation) | |
2175 (if (= containing-sexp (point)) | |
2176 (c-add-syntax tmpsymbol (point)) | |
2177 (goto-char (cdr placeholder)) | |
2178 (c-add-syntax tmpsymbol (c-point 'boi)) | |
2179 (c-add-syntax (car placeholder)))) | |
2180 ;; 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
|
2181 ;; an extern block or namespace? |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2182 ((progn |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2183 (goto-char containing-sexp) |
5e5fa0a34cb0
(c-inside-bracelist-p): Fix for enum test.
Richard M. Stallman <rms@gnu.org>
parents:
20914
diff
changeset
|
2184 (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
|
2185 (goto-char (aref placeholder 0)) |
24282 | 2186 (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
|
2187 (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
|
2188 (c-add-syntax 'inline-close relpos))) |
24282 | 2189 ;; CASE 16C: if there an enclosing brace that hasn't |
18720 | 2190 ;; been narrowed out by a class, then this is a |
2191 ;; block-close | |
20914
8f189ffad604
(c-forward-syntactic-ws, c-backward-syntactic-ws):
Richard M. Stallman <rms@gnu.org>
parents:
20142
diff
changeset
|
2192 ((and (not inenclosing-p) |
18720 | 2193 (c-most-enclosing-brace state)) |
2194 (c-add-syntax 'block-close relpos)) | |
24282 | 2195 ;; CASE 16D: find out whether we're closing a top-level |
18720 | 2196 ;; class or a defun |
2197 (t | |
2198 (save-restriction | |
2199 (narrow-to-region (point-min) indent-point) | |
2200 (let ((decl (c-search-uplist-for-classkey (c-parse-state)))) | |
2201 (if decl | |
24282 | 2202 (c-add-class-syntax 'class-close decl) |
18720 | 2203 (c-add-syntax 'defun-close relpos))))) |
2204 ))) | |
24282 | 2205 ;; CASE 17: statement catchall |
18720 | 2206 (t |
2207 ;; we know its a statement, but we need to find out if it is | |
2208 ;; the first statement in a block | |
2209 (goto-char containing-sexp) | |
2210 (forward-char 1) | |
2211 (c-forward-syntactic-ws indent-point) | |
2212 ;; now skip forward past any case/default clauses we might find. | |
2213 (while (or (c-skip-case-statement-forward fullstate indent-point) | |
2214 (and (looking-at c-switch-label-key) | |
2215 (not inswitch-p))) | |
2216 (setq inswitch-p t)) | |
2217 ;; we want to ignore non-case labels when skipping forward | |
2218 (while (and (looking-at c-label-key) | |
2219 (goto-char (match-end 0))) | |
2220 (c-forward-syntactic-ws indent-point)) | |
2221 (cond | |
24282 | 2222 ;; CASE 17A: we are inside a case/default clause inside a |
18720 | 2223 ;; switch statement. find out if we are at the statement |
2224 ;; just after the case/default label. | |
2225 ((and inswitch-p | |
2226 (progn | |
2227 (goto-char indent-point) | |
2228 (c-backward-syntactic-ws containing-sexp) | |
2229 (back-to-indentation) | |
2230 (setq placeholder (point)) | |
2231 (looking-at c-switch-label-key))) | |
2232 (goto-char indent-point) | |
2233 (skip-chars-forward " \t") | |
2234 (if (eq (char-after) ?{) | |
2235 (c-add-syntax 'statement-case-open placeholder) | |
2236 (c-add-syntax 'statement-case-intro placeholder))) | |
24282 | 2237 ;; CASE 17B: continued statement |
18720 | 2238 ((eq char-before-ip ?,) |
2239 (c-add-syntax 'statement-cont (c-point 'boi))) | |
24282 | 2240 ;; CASE 17C: a question/colon construct? But make sure |
18720 | 2241 ;; what came before was not a label, and what comes after |
2242 ;; is not a globally scoped function call! | |
2243 ((or (and (memq char-before-ip '(?: ??)) | |
2244 (save-excursion | |
2245 (goto-char indent-point) | |
2246 (c-backward-syntactic-ws lim) | |
2247 (back-to-indentation) | |
2248 (not (looking-at c-label-key)))) | |
2249 (and (memq char-after-ip '(?: ??)) | |
2250 (save-excursion | |
2251 (goto-char indent-point) | |
2252 (skip-chars-forward " \t") | |
2253 ;; watch out for scope operator | |
2254 (not (looking-at "::"))))) | |
2255 (c-add-syntax 'statement-cont (c-point 'boi))) | |
24282 | 2256 ;; CASE 17D: any old statement |
18720 | 2257 ((< (point) indent-point) |
2258 (let ((safepos (c-most-enclosing-brace fullstate)) | |
2259 relpos done) | |
2260 (goto-char indent-point) | |
2261 (c-beginning-of-statement-1 safepos) | |
2262 ;; It is possible we're on the brace that opens a nested | |
2263 ;; function. | |
2264 (if (and (eq (char-after) ?{) | |
2265 (save-excursion | |
2266 (c-backward-syntactic-ws safepos) | |
2267 (not (eq (char-before) ?\;)))) | |
2268 (c-beginning-of-statement-1 safepos)) | |
2269 (if (and inswitch-p | |
2270 (looking-at c-switch-label-key)) | |
2271 (progn | |
2272 (goto-char placeholder) | |
2273 (end-of-line) | |
24282 | 2274 (c-forward-sexp -1))) |
18720 | 2275 (setq relpos (c-point 'boi)) |
2276 (while (and (not done) | |
2277 (<= safepos (point)) | |
2278 (/= relpos (point))) | |
2279 (c-beginning-of-statement-1 safepos) | |
2280 (if (= relpos (c-point 'boi)) | |
2281 (setq done t)) | |
2282 (setq relpos (c-point 'boi))) | |
2283 (c-add-syntax 'statement relpos) | |
2284 (if (eq char-after-ip ?{) | |
2285 (c-add-syntax 'block-open)))) | |
24282 | 2286 ;; CASE 17E: first statement in an in-expression block |
2287 ((setq placeholder | |
2288 (save-excursion | |
2289 (goto-char containing-sexp) | |
2290 (c-looking-at-inexpr-block))) | |
2291 (goto-char containing-sexp) | |
2292 (back-to-indentation) | |
2293 (if (= containing-sexp (point)) | |
2294 (c-add-syntax 'statement-block-intro (point)) | |
2295 (goto-char (cdr placeholder)) | |
2296 (c-add-syntax 'statement-block-intro (c-point 'boi)) | |
2297 (c-add-syntax (car placeholder))) | |
2298 (if (eq char-after-ip ?{) | |
2299 (c-add-syntax 'block-open))) | |
2300 ;; CASE 17F: first statement in an inline, or first | |
18720 | 2301 ;; statement in a top-level defun. we can tell this is it |
2302 ;; if there are no enclosing braces that haven't been | |
2303 ;; narrowed out by a class (i.e. don't use bod here!) | |
2304 ((save-excursion | |
2305 (save-restriction | |
2306 (widen) | |
2307 (goto-char containing-sexp) | |
2308 (c-narrow-out-enclosing-class state containing-sexp) | |
2309 (not (c-most-enclosing-brace state)))) | |
2310 (goto-char containing-sexp) | |
2311 ;; if not at boi, then defun-opening braces are hung on | |
2312 ;; right side, so we need a different relpos | |
2313 (if (/= (point) (c-point 'boi)) | |
2314 (progn | |
2315 (c-backward-syntactic-ws) | |
24282 | 2316 (c-safe (c-forward-sexp (if (eq (char-before) ?\)) |
2317 -1 -2))) | |
18720 | 2318 ;; looking at a Java throws clause following a |
2319 ;; method's parameter list | |
2320 (c-beginning-of-statement-1) | |
2321 )) | |
2322 (c-add-syntax 'defun-block-intro (c-point 'boi))) | |
24282 | 2323 ;; CASE 17G: first statement in a block |
18720 | 2324 (t (goto-char containing-sexp) |
2325 (if (/= (point) (c-point 'boi)) | |
2326 (c-beginning-of-statement-1 | |
2327 (if (= (point) lim) | |
2328 (c-safe-position (point) state) lim))) | |
2329 (c-add-syntax 'statement-block-intro (c-point 'boi)) | |
2330 (if (eq char-after-ip ?{) | |
2331 (c-add-syntax 'block-open))) | |
2332 )) | |
2333 ) | |
2334 | |
2335 ;; now we need to look at any modifiers | |
2336 (goto-char indent-point) | |
2337 (skip-chars-forward " \t") | |
2338 ;; are we looking at a comment only line? | |
2339 (if (looking-at c-comment-start-regexp) | |
2340 (c-add-syntax 'comment-intro)) | |
2341 ;; we might want to give additional offset to friends (in C++). | |
24282 | 2342 (if (and (c-major-mode-is 'c++-mode) |
18720 | 2343 (looking-at c-C++-friend-key)) |
2344 (c-add-syntax 'friend)) | |
2345 ;; return the syntax | |
2346 syntax)))) | |
2347 | |
2348 | |
2349 (defun c-echo-parsing-error () | |
2350 (if (not c-parsing-error) | |
2351 nil | |
2352 (message "unbalanced close brace at bufpos %d -- INDENTATION IS SUSPECT!" | |
2353 c-parsing-error) | |
2354 (ding)) | |
2355 c-parsing-error) | |
2356 | |
2357 ;; indent via syntactic language elements | |
2358 (defun c-indent-line (&optional syntax) | |
2359 ;; indent the current line as C/C++/ObjC code. Optional SYNTAX is the | |
2360 ;; syntactic information for the current line. Returns the amount of | |
24282 | 2361 ;; indentation change (in columns). |
18720 | 2362 (let* ((c-syntactic-context (or syntax (c-guess-basic-syntax))) |
2363 (pos (- (point-max) (point))) | |
2364 (indent (apply '+ (mapcar 'c-get-offset c-syntactic-context))) | |
2365 (shift-amt (- (current-indentation) indent))) | |
2366 (and c-echo-syntactic-information-p | |
2367 (not (c-echo-parsing-error)) | |
2368 (message "syntax: %s, indent= %d" c-syntactic-context indent)) | |
2369 (if (zerop shift-amt) | |
2370 nil | |
2371 (delete-region (c-point 'bol) (c-point 'boi)) | |
2372 (beginning-of-line) | |
2373 (indent-to indent)) | |
2374 (if (< (point) (c-point 'boi)) | |
2375 (back-to-indentation) | |
2376 ;; If initial point was within line's indentation, position after | |
2377 ;; the indentation. Else stay at same point in text. | |
2378 (if (> (- (point-max) pos) (point)) | |
2379 (goto-char (- (point-max) pos))) | |
2380 ) | |
2381 (run-hooks 'c-special-indent-hook) | |
2382 shift-amt)) | |
2383 | |
2384 (defun c-show-syntactic-information (arg) | |
2385 "Show syntactic information for current line. | |
2386 With universal argument, inserts the analysis as a comment on that line." | |
2387 (interactive "P") | |
2388 (let ((syntax (c-guess-basic-syntax))) | |
2389 (if (not (consp arg)) | |
2390 (if (not (c-echo-parsing-error)) | |
2391 (message "syntactic analysis: %s" syntax)) | |
2392 (indent-for-comment) | |
2393 (insert (format "%s" syntax)) | |
2394 )) | |
2395 (c-keep-region-active)) | |
2396 | |
2397 | |
2398 (provide 'cc-engine) | |
2399 ;;; cc-engine.el ends here |