Fix up comment convention on the arch-tag lines.
[bpt/emacs.git] / lisp / progmodes / cc-defs.el
CommitLineData
3c3d11e7 1;;; cc-defs.el --- compile time definitions for CC Mode
785eecbb 2
92ab3834 3;; Copyright (C) 1985, 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4e643dd2 4;; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
d7a0267c 5;; Free Software Foundation, Inc.
785eecbb 6
e309f66c
AM
7;; Authors: 2003- Alan Mackenzie
8;; 1998- Martin Stjernholm
d9e94c22 9;; 1992-1999 Barry A. Warsaw
785eecbb
RS
10;; 1987 Dave Detlefs and Stewart Clamen
11;; 1985 Richard M. Stallman
0ec8351b 12;; Maintainer: bug-cc-mode@gnu.org
785eecbb 13;; Created: 22-Apr-1997 (split from cc-mode.el)
81eb2ff9 14;; Version: See cc-mode.el
785eecbb
RS
15;; Keywords: c languages oop
16
17;; This file is part of GNU Emacs.
18
19;; GNU Emacs is free software; you can redistribute it and/or modify
20;; it under the terms of the GNU General Public License as published by
1a484753 21;; the Free Software Foundation; either version 3, or (at your option)
785eecbb
RS
22;; any later version.
23
24;; GNU Emacs is distributed in the hope that it will be useful,
25;; but WITHOUT ANY WARRANTY; without even the implied warranty of
26;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27;; GNU General Public License for more details.
28
29;; You should have received a copy of the GNU General Public License
0386b551 30;; along with this program; see the file COPYING. If not, write to
3a35cf56
LK
31;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
32;; Boston, MA 02110-1301, USA.
785eecbb 33
3afbc435
PJ
34;;; Commentary:
35
d9e94c22
MS
36;; This file contains macros, defsubsts, and various other things that
37;; must be loaded early both during compilation and at runtime.
38
3afbc435
PJ
39;;; Code:
40
130c507e
GM
41(eval-when-compile
42 (let ((load-path
43 (if (and (boundp 'byte-compile-dest-file)
44 (stringp byte-compile-dest-file))
45 (cons (file-name-directory byte-compile-dest-file) load-path)
46 load-path)))
d9e94c22
MS
47 (load "cc-bytecomp" nil t)))
48
0386b551
AM
49(eval-when-compile (require 'cl)) ; was (cc-external-require 'cl). ACM 2005/11/29.
50(cc-external-require 'regexp-opt)
0ec8351b 51
d9e94c22
MS
52;; Silence the compiler.
53(cc-bytecomp-defvar c-enable-xemacs-performance-kludge-p) ; In cc-vars.el
d9e94c22
MS
54(cc-bytecomp-defun buffer-syntactic-context-depth) ; XEmacs
55(cc-bytecomp-defun region-active-p) ; XEmacs
56(cc-bytecomp-defvar zmacs-region-stays) ; XEmacs
57(cc-bytecomp-defvar zmacs-regions) ; XEmacs
58(cc-bytecomp-defvar mark-active) ; Emacs
59(cc-bytecomp-defvar deactivate-mark) ; Emacs
60(cc-bytecomp-defvar inhibit-point-motion-hooks) ; Emacs
0386b551 61(cc-bytecomp-defvar parse-sexp-lookup-properties) ; Emacs
d9e94c22 62(cc-bytecomp-defvar text-property-default-nonsticky) ; Emacs 21
0386b551 63(cc-bytecomp-defvar lookup-syntax-properties) ; XEmacs
d9e94c22 64(cc-bytecomp-defun string-to-syntax) ; Emacs 21
d9e94c22
MS
65
66\f
67;; cc-fix.el contains compatibility macros that should be used if
130c507e
GM
68;; needed.
69(eval-and-compile
0386b551
AM
70 (if (or (/= (regexp-opt-depth "\\(\\(\\)\\)") 2)
71 (not (fboundp 'push)))
72 (cc-load "cc-fix")))
130c507e 73
3c0ab532
AM
74; (eval-after-load "font-lock" ; 2006-07-09. font-lock is now preloaded
75; '
f83fb05a 76(if (and (featurep 'xemacs) ; There is now (2005/12) code in GNU Emacs CVS
28abe5e2 77 ; to make the call to f-l-c-k throw an error.
f83fb05a 78 (not (featurep 'cc-fix)) ; only load the file once.
28abe5e2
AM
79 (let (font-lock-keywords)
80 (font-lock-compile-keywords '("\\<\\>"))
81 font-lock-keywords)) ; did the previous call foul this up?
82 (load "cc-fix")) ;)
d9e94c22
MS
83
84;; The above takes care of the delayed loading, but this is necessary
85;; to ensure correct byte compilation.
86(eval-when-compile
f83fb05a
DN
87 (if (and (featurep 'xemacs)
88 (not (featurep 'cc-fix))
d9e94c22
MS
89 (progn
90 (require 'font-lock)
91 (let (font-lock-keywords)
cb694ab7 92 (font-lock-compile-keywords '("\\<\\>"))
d9e94c22
MS
93 font-lock-keywords)))
94 (cc-load "cc-fix")))
95
0ec8351b 96\f
d9e94c22
MS
97;;; Variables also used at compile time.
98
3e63bf0e 99(defconst c-version "5.31.5"
d9e94c22
MS
100 "CC Mode version number.")
101
102(defconst c-version-sym (intern c-version))
103;; A little more compact and faster in comparisons.
104
105(defvar c-buffer-is-cc-mode nil
106 "Non-nil for all buffers with a major mode derived from CC Mode.
107Otherwise, this variable is nil. I.e. this variable is non-nil for
108`c-mode', `c++-mode', `objc-mode', `java-mode', `idl-mode',
de2dcd18
MS
109`pike-mode', `awk-mode', and any other non-CC Mode mode that calls
110`c-initialize-cc-mode'. The value is the mode symbol itself
111\(i.e. `c-mode' etc) of the original CC Mode mode, or just t if it's
112not known.")
d9e94c22
MS
113(make-variable-buffer-local 'c-buffer-is-cc-mode)
114
115;; Have to make `c-buffer-is-cc-mode' permanently local so that it
116;; survives the initialization of the derived mode.
117(put 'c-buffer-is-cc-mode 'permanent-local t)
118
119\f
120;; The following is used below during compilation.
121(eval-and-compile
122 (defvar c-inside-eval-when-compile nil)
130c507e 123
d9e94c22
MS
124 (defmacro cc-eval-when-compile (&rest body)
125 "Like `progn', but evaluates the body at compile time.
126The result of the body appears to the compiler as a quoted constant.
127
128This variant works around bugs in `eval-when-compile' in various
129\(X)Emacs versions. See cc-defs.el for details."
130
131 (if c-inside-eval-when-compile
132 ;; XEmacs 21.4.6 has a bug in `eval-when-compile' in that it
133 ;; evaluates its body at macro expansion time if it's nested
134 ;; inside another `eval-when-compile'. So we use a dynamically
135 ;; bound variable to avoid nesting them.
136 `(progn ,@body)
137
138 `(eval-when-compile
139 ;; In all (X)Emacsen so far, `eval-when-compile' byte compiles
140 ;; its contents before evaluating it. That can cause forms to
141 ;; be compiled in situations they aren't intended to be
142 ;; compiled.
143 ;;
144 ;; Example: It's not possible to defsubst a primitive, e.g. the
145 ;; following will produce an error (in any emacs flavor), since
146 ;; `nthcdr' is a primitive function that's handled specially by
147 ;; the byte compiler and thus can't be redefined:
148 ;;
149 ;; (defsubst nthcdr (val) val)
150 ;;
151 ;; `defsubst', like `defmacro', needs to be evaluated at
152 ;; compile time, so this will produce an error during byte
153 ;; compilation.
154 ;;
155 ;; CC Mode occasionally needs to do things like this for
156 ;; cross-emacs compatibility. It therefore uses the following
157 ;; to conditionally do a `defsubst':
158 ;;
159 ;; (eval-when-compile
160 ;; (if (not (fboundp 'foo))
161 ;; (defsubst foo ...)))
162 ;;
163 ;; But `eval-when-compile' byte compiles its contents and
164 ;; _then_ evaluates it (in all current emacs versions, up to
165 ;; and including Emacs 20.6 and XEmacs 21.1 as of this
166 ;; writing). So this will still produce an error, since the
167 ;; byte compiler will get to the defsubst anyway. That's
168 ;; arguably a bug because the point with `eval-when-compile' is
169 ;; that it should evaluate rather than compile its contents.
170 ;;
171 ;; We get around it by expanding the body to a quoted
172 ;; constant that we eval. That otoh introduce a problem in
173 ;; that a returned lambda expression doesn't get byte
174 ;; compiled (even if `function' is used).
175 (eval '(let ((c-inside-eval-when-compile t)) ,@body)))))
176
177 (put 'cc-eval-when-compile 'lisp-indent-hook 0))
178
179\f
180;;; Macros.
130c507e
GM
181
182(defmacro c-point (position &optional point)
d9e94c22
MS
183 "Return the value of certain commonly referenced POSITIONs relative to POINT.
184The current point is used if POINT isn't specified. POSITION can be
185one of the following symbols:
186
0386b551
AM
187`bol' -- beginning of line
188`eol' -- end of line
189`bod' -- beginning of defun
190`eod' -- end of defun
191`boi' -- beginning of indentation
192`ionl' -- indentation of next line
193`iopl' -- indentation of previous line
194`bonl' -- beginning of next line
195`eonl' -- end of next line
196`bopl' -- beginning of previous line
197`eopl' -- end of previous line
198`bosws' -- beginning of syntactic whitespace
199`eosws' -- end of syntactic whitespace
d9e94c22
MS
200
201If the referenced position doesn't exist, the closest accessible point
0386b551 202to it is returned. This function does not modify the point or the mark."
d9e94c22
MS
203
204 (if (eq (car-safe position) 'quote)
205 (let ((position (eval position)))
206 (cond
207
208 ((eq position 'bol)
0386b551 209 (if (and (cc-bytecomp-fboundp 'line-beginning-position) (not point))
d9e94c22
MS
210 `(line-beginning-position)
211 `(save-excursion
212 ,@(if point `((goto-char ,point)))
213 (beginning-of-line)
214 (point))))
215
216 ((eq position 'eol)
0386b551 217 (if (and (cc-bytecomp-fboundp 'line-end-position) (not point))
d9e94c22
MS
218 `(line-end-position)
219 `(save-excursion
220 ,@(if point `((goto-char ,point)))
221 (end-of-line)
222 (point))))
223
224 ((eq position 'boi)
225 `(save-excursion
226 ,@(if point `((goto-char ,point)))
227 (back-to-indentation)
228 (point)))
229
230 ((eq position 'bod)
231 `(save-excursion
232 ,@(if point `((goto-char ,point)))
233 (c-beginning-of-defun-1)
234 (point)))
235
236 ((eq position 'eod)
237 `(save-excursion
238 ,@(if point `((goto-char ,point)))
239 (c-end-of-defun-1)
240 (point)))
241
242 ((eq position 'bopl)
0386b551 243 (if (and (cc-bytecomp-fboundp 'line-beginning-position) (not point))
d9e94c22
MS
244 `(line-beginning-position 0)
245 `(save-excursion
246 ,@(if point `((goto-char ,point)))
247 (forward-line -1)
248 (point))))
249
250 ((eq position 'bonl)
0386b551 251 (if (and (cc-bytecomp-fboundp 'line-beginning-position) (not point))
d9e94c22
MS
252 `(line-beginning-position 2)
253 `(save-excursion
254 ,@(if point `((goto-char ,point)))
255 (forward-line 1)
256 (point))))
257
258 ((eq position 'eopl)
0386b551 259 (if (and (cc-bytecomp-fboundp 'line-end-position) (not point))
d9e94c22
MS
260 `(line-end-position 0)
261 `(save-excursion
262 ,@(if point `((goto-char ,point)))
263 (beginning-of-line)
264 (or (bobp) (backward-char))
265 (point))))
266
267 ((eq position 'eonl)
0386b551 268 (if (and (cc-bytecomp-fboundp 'line-end-position) (not point))
d9e94c22
MS
269 `(line-end-position 2)
270 `(save-excursion
271 ,@(if point `((goto-char ,point)))
272 (forward-line 1)
273 (end-of-line)
274 (point))))
275
276 ((eq position 'iopl)
277 `(save-excursion
278 ,@(if point `((goto-char ,point)))
279 (forward-line -1)
280 (back-to-indentation)
281 (point)))
282
283 ((eq position 'ionl)
284 `(save-excursion
285 ,@(if point `((goto-char ,point)))
286 (forward-line 1)
287 (back-to-indentation)
288 (point)))
289
0386b551
AM
290 ((eq position 'bosws)
291 `(save-excursion
292 ,@(if point `((goto-char ,point)))
293 (c-backward-syntactic-ws)
294 (point)))
295
296 ((eq position 'eosws)
297 `(save-excursion
298 ,@(if point `((goto-char ,point)))
299 (c-forward-syntactic-ws)
300 (point)))
301
d9e94c22
MS
302 (t (error "Unknown buffer position requested: %s" position))))
303
0386b551
AM
304 ;; The bulk of this should perhaps be in a function to avoid large
305 ;; expansions, but this case is not used anywhere in CC Mode (and
306 ;; probably not anywhere else either) so we only have it to be on
307 ;; the safe side.
308 (message "Warning: c-point long expansion")
d9e94c22
MS
309 `(save-excursion
310 ,@(if point `((goto-char ,point)))
311 (let ((position ,position))
312 (cond
0386b551
AM
313 ((eq position 'bol) (beginning-of-line))
314 ((eq position 'eol) (end-of-line))
315 ((eq position 'boi) (back-to-indentation))
316 ((eq position 'bod) (c-beginning-of-defun-1))
317 ((eq position 'eod) (c-end-of-defun-1))
318 ((eq position 'bopl) (forward-line -1))
319 ((eq position 'bonl) (forward-line 1))
320 ((eq position 'eopl) (progn
321 (beginning-of-line)
322 (or (bobp) (backward-char))))
323 ((eq position 'eonl) (progn
324 (forward-line 1)
325 (end-of-line)))
326 ((eq position 'iopl) (progn
327 (forward-line -1)
328 (back-to-indentation)))
329 ((eq position 'ionl) (progn
330 (forward-line 1)
331 (back-to-indentation)))
332 ((eq position 'bosws) (c-backward-syntactic-ws))
333 ((eq position 'eosws) (c-forward-syntactic-ws))
d9e94c22
MS
334 (t (error "Unknown buffer position requested: %s" position))))
335 (point))))
785eecbb 336
0386b551
AM
337(defmacro c-region-is-active-p ()
338 ;; Return t when the region is active. The determination of region
339 ;; activeness is different in both Emacs and XEmacs.
22760342
RS
340 (if (cc-bytecomp-boundp 'mark-active)
341 ;; Emacs.
342 'mark-active
343 ;; XEmacs.
344 '(region-active-p)))
0386b551
AM
345
346(defmacro c-set-region-active (activate)
347 ;; Activate the region if ACTIVE is non-nil, deactivate it
348 ;; otherwise. Covers the differences between Emacs and XEmacs.
349 (if (cc-bytecomp-fboundp 'zmacs-activate-region)
350 ;; XEmacs.
351 `(if ,activate
352 (zmacs-activate-region)
353 (zmacs-deactivate-region))
354 ;; Emacs.
355 `(setq mark-active ,activate)))
356
357(defmacro c-delete-and-extract-region (start end)
358 "Delete the text between START and END and return it."
359 (if (cc-bytecomp-fboundp 'delete-and-extract-region)
360 ;; Emacs 21.1 and later
361 `(delete-and-extract-region ,start ,end)
362 ;; XEmacs and Emacs 20.x
363 `(prog1
364 (buffer-substring ,start ,end)
365 (delete-region ,start ,end))))
366
785eecbb
RS
367(defmacro c-safe (&rest body)
368 ;; safely execute BODY, return nil if an error occurred
51f606de
GM
369 `(condition-case nil
370 (progn ,@body)
371 (error nil)))
a66cd3ee 372(put 'c-safe 'lisp-indent-function 0)
51f606de 373
0386b551
AM
374(defmacro c-int-to-char (integer)
375 ;; In GNU Emacs, a character is an integer. In XEmacs, a character is a
376 ;; type distinct from an integer. Sometimes we need to convert integers to
377 ;; characters. `c-int-to-char' makes this conversion, if necessary.
378 (if (fboundp 'int-to-char)
379 `(int-to-char ,integer)
380 integer))
381
382(defmacro c-sentence-end ()
383 ;; Get the regular expression `sentence-end'.
384 (if (cc-bytecomp-fboundp 'sentence-end)
385 ;; Emacs 22:
386 `(sentence-end)
387 ;; Emacs <22 + XEmacs
388 `sentence-end))
389
390(defmacro c-default-value-sentence-end ()
391 ;; Get the default value of the variable sentence end.
392 (if (cc-bytecomp-fboundp 'sentence-end)
393 ;; Emacs 22:
394 `(let (sentence-end) (sentence-end))
395 ;; Emacs <22 + XEmacs
396 `(default-value 'sentence-end)))
397
d9e94c22
MS
398;; The following is essentially `save-buffer-state' from lazy-lock.el.
399;; It ought to be a standard macro.
400(defmacro c-save-buffer-state (varlist &rest body)
401 "Bind variables according to VARLIST (in `let*' style) and eval BODY,
402then restore the buffer state under the assumption that no significant
0386b551
AM
403modification has been made in BODY. A change is considered
404significant if it affects the buffer text in any way that isn't
405completely restored again. Changes in text properties like `face' or
406`syntax-table' are considered insignificant. This macro allows text
407properties to be changed, even in a read-only buffer.
408
409This macro should be placed around all calculations which set
410\"insignificant\" text properties in a buffer, even when the buffer is
411known to be writeable. That way, these text properties remain set
412even if the user undoes the command which set them.
413
414This macro should ALWAYS be placed around \"temporary\" internal buffer
415changes \(like adding a newline to calculate a text-property then
416deleting it again\), so that the user never sees them on his
417`buffer-undo-list'. See also `c-tentative-buffer-changes'.
418
419However, any user-visible changes to the buffer \(like auto-newlines\)
420must not be within a `c-save-buffer-state', since the user then
421wouldn't be able to undo them.
d9e94c22
MS
422
423The return value is the value of the last form in BODY."
424 `(let* ((modified (buffer-modified-p)) (buffer-undo-list t)
425 (inhibit-read-only t) (inhibit-point-motion-hooks t)
426 before-change-functions after-change-functions
427 deactivate-mark
44f714fd
AM
428 buffer-file-name buffer-file-truename ; Prevent primitives checking
429 ; for file modification
d9e94c22 430 ,@varlist)
0386b551
AM
431 (unwind-protect
432 (progn ,@body)
d9e94c22
MS
433 (and (not modified)
434 (buffer-modified-p)
435 (set-buffer-modified-p nil)))))
436(put 'c-save-buffer-state 'lisp-indent-function 1)
130c507e 437
0386b551
AM
438(defmacro c-tentative-buffer-changes (&rest body)
439 "Eval BODY and optionally restore the buffer contents to the state it
440was in before BODY. Any changes are kept if the last form in BODY
441returns non-nil. Otherwise it's undone using the undo facility, and
442various other buffer state that might be affected by the changes is
443restored. That includes the current buffer, point, mark, mark
444activation \(similar to `save-excursion'), and the modified state.
445The state is also restored if BODY exits nonlocally.
446
447If BODY makes a change that unconditionally is undone then wrap this
448macro inside `c-save-buffer-state'. That way the change can be done
449even when the buffer is read-only, and without interference from
450various buffer change hooks."
451 `(let (-tnt-chng-keep
452 -tnt-chng-state)
453 (unwind-protect
454 ;; Insert an undo boundary for use with `undo-more'. We
455 ;; don't use `undo-boundary' since it doesn't insert one
456 ;; unconditionally.
457 (setq buffer-undo-list (cons nil buffer-undo-list)
458 -tnt-chng-state (c-tnt-chng-record-state)
459 -tnt-chng-keep (progn ,@body))
460 (c-tnt-chng-cleanup -tnt-chng-keep -tnt-chng-state))))
461(put 'c-tentative-buffer-changes 'lisp-indent-function 0)
462
463(defun c-tnt-chng-record-state ()
464 ;; Used internally in `c-tentative-buffer-changes'.
465 (vector buffer-undo-list ; 0
466 (current-buffer) ; 1
467 ;; No need to use markers for the point and mark; if the
468 ;; undo got out of synch we're hosed anyway.
469 (point) ; 2
470 (mark t) ; 3
471 (c-region-is-active-p) ; 4
472 (buffer-modified-p))) ; 5
473
474(defun c-tnt-chng-cleanup (keep saved-state)
475 ;; Used internally in `c-tentative-buffer-changes'.
476
477 (let ((saved-undo-list (elt saved-state 0)))
478 (if (eq buffer-undo-list saved-undo-list)
479 ;; No change was done afterall.
480 (setq buffer-undo-list (cdr saved-undo-list))
481
482 (if keep
483 ;; Find and remove the undo boundary.
484 (let ((p buffer-undo-list))
485 (while (not (eq (cdr p) saved-undo-list))
486 (setq p (cdr p)))
487 (setcdr p (cdr saved-undo-list)))
488
489 ;; `primitive-undo' will remove the boundary.
490 (setq saved-undo-list (cdr saved-undo-list))
491 (let ((undo-in-progress t))
492 (while (not (eq (setq buffer-undo-list
493 (primitive-undo 1 buffer-undo-list))
494 saved-undo-list))))
495
496 (when (buffer-live-p (elt saved-state 1))
497 (set-buffer (elt saved-state 1))
498 (goto-char (elt saved-state 2))
499 (set-mark (elt saved-state 3))
500 (c-set-region-active (elt saved-state 4))
501 (and (not (elt saved-state 5))
502 (buffer-modified-p)
503 (set-buffer-modified-p nil)))))))
504
d9e94c22
MS
505(defmacro c-forward-syntactic-ws (&optional limit)
506 "Forward skip over syntactic whitespace.
507Syntactic whitespace is defined as whitespace characters, comments,
508and preprocessor directives. However if point starts inside a comment
509or preprocessor directive, the content of it is not treated as
510whitespace.
511
512LIMIT sets an upper limit of the forward movement, if specified. If
513LIMIT or the end of the buffer is reached inside a comment or
514preprocessor directive, the point will be left there.
515
516Note that this function might do hidden buffer changes. See the
517comment at the start of cc-engine.el for more info."
518 (if limit
519 `(save-restriction
520 (narrow-to-region (point-min) (or ,limit (point-max)))
521 (c-forward-sws))
522 '(c-forward-sws)))
523
524(defmacro c-backward-syntactic-ws (&optional limit)
525 "Backward skip over syntactic whitespace.
526Syntactic whitespace is defined as whitespace characters, comments,
527and preprocessor directives. However if point starts inside a comment
528or preprocessor directive, the content of it is not treated as
529whitespace.
530
531LIMIT sets a lower limit of the backward movement, if specified. If
532LIMIT is reached inside a line comment or preprocessor directive then
533the point is moved into it past the whitespace at the end.
534
535Note that this function might do hidden buffer changes. See the
536comment at the start of cc-engine.el for more info."
537 (if limit
538 `(save-restriction
539 (narrow-to-region (or ,limit (point-min)) (point-max))
540 (c-backward-sws))
541 '(c-backward-sws)))
542
543(defmacro c-forward-sexp (&optional count)
544 "Move forward across COUNT balanced expressions.
545A negative COUNT means move backward. Signal an error if the move
546fails for any reason.
547
548This is like `forward-sexp' except that it isn't interactive and does
549not do any user friendly adjustments of the point and that it isn't
550susceptible to user configurations such as disabling of signals in
0386b551 551certain situations."
d9e94c22 552 (or count (setq count 1))
0386b551 553 `(goto-char (scan-sexps (point) ,count)))
d9e94c22
MS
554
555(defmacro c-backward-sexp (&optional count)
556 "See `c-forward-sexp' and reverse directions."
557 (or count (setq count 1))
558 `(c-forward-sexp ,(if (numberp count) (- count) `(- ,count))))
559
0386b551
AM
560(defmacro c-safe-scan-lists (from count depth &optional limit)
561 "Like `scan-lists' but returns nil instead of signalling errors
562for unbalanced parens.
563
564A limit for the search may be given. FROM is assumed to be on the
565right side of it."
566 (let ((res (if (featurep 'xemacs)
567 `(scan-lists ,from ,count ,depth nil t)
568 `(c-safe (scan-lists ,from ,count ,depth)))))
569 (if limit
570 `(save-restriction
571 ,(if (numberp count)
572 (if (< count 0)
573 `(narrow-to-region ,limit (point-max))
574 `(narrow-to-region (point-min) ,limit))
575 `(if (< ,count 0)
576 (narrow-to-region ,limit (point-max))
577 (narrow-to-region (point-min) ,limit)))
578 ,res)
579 res)))
d9e94c22
MS
580
581\f
a66cd3ee
MS
582;; Wrappers for common scan-lists cases, mainly because it's almost
583;; impossible to get a feel for how that function works.
d9e94c22 584
ecc71db8
AM
585(defmacro c-go-list-forward ()
586 "Move backward across one balanced group of parentheses.
587
588Return POINT when we succeed, NIL when we fail. In the latter case, leave
589point unmoved."
590 `(c-safe (let ((endpos (scan-lists (point) 1 0)))
591 (goto-char endpos)
592 endpos)))
593
594(defmacro c-go-list-backward ()
595 "Move backward across one balanced group of parentheses.
596
597Return POINT when we succeed, NIL when we fail. In the latter case, leave
598point unmoved."
599 `(c-safe (let ((endpos (scan-lists (point) -1 0)))
600 (goto-char endpos)
601 endpos)))
602
0386b551 603(defmacro c-up-list-forward (&optional pos limit)
d9e94c22
MS
604 "Return the first position after the list sexp containing POS,
605or nil if no such position exists. The point is used if POS is left out.
606
0386b551
AM
607A limit for the search may be given. The start position is assumed to
608be before it."
609 `(c-safe-scan-lists ,(or pos `(point)) 1 1 ,limit))
d9e94c22 610
0386b551 611(defmacro c-up-list-backward (&optional pos limit)
d9e94c22
MS
612 "Return the position of the start of the list sexp containing POS,
613or nil if no such position exists. The point is used if POS is left out.
614
0386b551
AM
615A limit for the search may be given. The start position is assumed to
616be after it."
617 `(c-safe-scan-lists ,(or pos `(point)) -1 1 ,limit))
d9e94c22 618
0386b551 619(defmacro c-down-list-forward (&optional pos limit)
d9e94c22
MS
620 "Return the first position inside the first list sexp after POS,
621or nil if no such position exists. The point is used if POS is left out.
622
0386b551
AM
623A limit for the search may be given. The start position is assumed to
624be before it."
625 `(c-safe-scan-lists ,(or pos `(point)) 1 -1 ,limit))
d9e94c22 626
0386b551 627(defmacro c-down-list-backward (&optional pos limit)
d9e94c22
MS
628 "Return the last position inside the last list sexp before POS,
629or nil if no such position exists. The point is used if POS is left out.
630
0386b551
AM
631A limit for the search may be given. The start position is assumed to
632be after it."
633 `(c-safe-scan-lists ,(or pos `(point)) -1 -1 ,limit))
d9e94c22 634
0386b551 635(defmacro c-go-up-list-forward (&optional pos limit)
d9e94c22 636 "Move the point to the first position after the list sexp containing POS,
0386b551
AM
637or containing the point if POS is left out. Return t if such a
638position exists, otherwise nil is returned and the point isn't moved.
639
640A limit for the search may be given. The start position is assumed to
641be before it."
642 (let ((res `(c-safe (goto-char (scan-lists ,(or pos `(point)) 1 1)) t)))
643 (if limit
644 `(save-restriction
645 (narrow-to-region (point-min) ,limit)
646 ,res)
647 res)))
648
649(defmacro c-go-up-list-backward (&optional pos limit)
d9e94c22 650 "Move the point to the position of the start of the list sexp containing POS,
0386b551
AM
651or containing the point if POS is left out. Return t if such a
652position exists, otherwise nil is returned and the point isn't moved.
653
654A limit for the search may be given. The start position is assumed to
655be after it."
656 (let ((res `(c-safe (goto-char (scan-lists ,(or pos `(point)) -1 1)) t)))
657 (if limit
658 `(save-restriction
659 (narrow-to-region ,limit (point-max))
660 ,res)
661 res)))
662
663(defmacro c-go-down-list-forward (&optional pos limit)
d9e94c22 664 "Move the point to the first position inside the first list sexp after POS,
0386b551
AM
665or before the point if POS is left out. Return t if such a position
666exists, otherwise nil is returned and the point isn't moved.
667
668A limit for the search may be given. The start position is assumed to
669be before it."
670 (let ((res `(c-safe (goto-char (scan-lists ,(or pos `(point)) 1 -1)) t)))
671 (if limit
672 `(save-restriction
673 (narrow-to-region (point-min) ,limit)
674 ,res)
675 res)))
676
677(defmacro c-go-down-list-backward (&optional pos limit)
d9e94c22 678 "Move the point to the last position inside the last list sexp before POS,
0386b551
AM
679or before the point if POS is left out. Return t if such a position
680exists, otherwise nil is returned and the point isn't moved.
681
682A limit for the search may be given. The start position is assumed to
683be after it."
684 (let ((res `(c-safe (goto-char (scan-lists ,(or pos `(point)) -1 -1)) t)))
685 (if limit
686 `(save-restriction
687 (narrow-to-region ,limit (point-max))
688 ,res)
689 res)))
d9e94c22
MS
690
691\f
692(defmacro c-beginning-of-defun-1 ()
693 ;; Wrapper around beginning-of-defun.
694 ;;
695 ;; NOTE: This function should contain the only explicit use of
696 ;; beginning-of-defun in CC Mode. Eventually something better than
697 ;; b-o-d will be available and this should be the only place the
698 ;; code needs to change. Everything else should use
699 ;; (c-beginning-of-defun-1)
700 ;;
701 ;; This is really a bit too large to be a macro but that isn't a
702 ;; problem as long as it only is used in one place in
703 ;; `c-parse-state'.
d9e94c22
MS
704
705 `(progn
706 (if (and ,(cc-bytecomp-fboundp 'buffer-syntactic-context-depth)
707 c-enable-xemacs-performance-kludge-p)
708 ,(when (cc-bytecomp-fboundp 'buffer-syntactic-context-depth)
709 ;; XEmacs only. This can improve the performance of
710 ;; c-parse-state to between 3 and 60 times faster when
711 ;; braces are hung. It can also degrade performance by
712 ;; about as much when braces are not hung.
28abe5e2
AM
713 '(let (beginning-of-defun-function end-of-defun-function
714 pos)
d9e94c22
MS
715 (while (not pos)
716 (save-restriction
717 (widen)
718 (setq pos (c-safe-scan-lists
719 (point) -1 (buffer-syntactic-context-depth))))
720 (cond
721 ((bobp) (setq pos (point-min)))
722 ((not pos)
723 (let ((distance (skip-chars-backward "^{")))
cb5bf6ba 724 ;; unbalanced parenthesis, while invalid C code,
d9e94c22
MS
725 ;; shouldn't cause an infloop! See unbal.c
726 (when (zerop distance)
727 ;; Punt!
728 (beginning-of-defun)
729 (setq pos (point)))))
730 ((= pos 0))
731 ((not (eq (char-after pos) ?{))
732 (goto-char pos)
733 (setq pos nil))
734 ))
735 (goto-char pos)))
736 ;; Emacs, which doesn't have buffer-syntactic-context-depth
28abe5e2
AM
737 (let (beginning-of-defun-function end-of-defun-function)
738 (beginning-of-defun)))
d9e94c22
MS
739 ;; if defun-prompt-regexp is non-nil, b-o-d won't leave us at the
740 ;; open brace.
741 (and defun-prompt-regexp
742 (looking-at defun-prompt-regexp)
743 (goto-char (match-end 0)))))
a66cd3ee 744
0386b551
AM
745\f
746;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c0066230 747;; V i r t u a l S e m i c o l o n s
0386b551
AM
748;;
749;; In most CC Mode languages, statements are terminated explicitly by
750;; semicolons or closing braces. In some of the CC modes (currently only AWK
751;; Mode (April 2004)), statements are (or can be) terminated by EOLs. Such a
752;; statement is said to be terminated by a "virtual semicolon" (VS). A
753;; statement terminated by an actual semicolon or brace is never considered to
754;; have a VS.
755;;
756;; The indentation engine (or whatever) tests for a VS at a specific position
757;; by invoking the macro `c-at-vsemi-p', which in its turn calls the mode
758;; specific function (if any) which is the value of the language variable
759;; `c-at-vsemi-p-fn'. The actual details of what constitutes a VS in a
760;; language are thus encapsulated in code specific to that language
761;; (e.g. cc-awk.el). `c-at-vsemi-p' returns non-nil if point (or the optional
762;; parameter POS) is at a VS, nil otherwise.
763;;
764;; The language specific function might well do extensive analysis of the
765;; source text, and may use a cacheing scheme to speed up repeated calls.
766;;
767;; The "virtual semicolon" lies just after the last non-ws token on the line.
768;; Like POINT, it is considered to lie between two characters. For example,
769;; at the place shown in the following AWK source line:
770;;
771;; kbyte = 1024 # 1000 if you're not picky
772;; ^
773;; |
774;; Virtual Semicolon
775;;
776;; In addition to `c-at-vsemi-p-fn', a mode may need to supply a function for
777;; `c-vsemi-status-unknown-p-fn'. The macro `c-vsemi-status-unknown-p' is a
778;; rather recondite kludge. It exists because the function
779;; `c-beginning-of-statement-1' sometimes tests for VSs as an optimisation,
780;; but `c-at-vsemi-p' might well need to call `c-beginning-of-statement-1' in
781;; its calculations, thus potentially leading to infinite recursion.
782;;
783;; The macro `c-vsemi-status-unknown-p' resolves this problem; it may return
784;; non-nil at any time; returning nil is a guarantee that an immediate
785;; invocation of `c-at-vsemi-p' at point will NOT call
786;; `c-beginning-of-statement-1'. `c-vsemi-status-unknown-p' may not itself
787;; call `c-beginning-of-statement-1'.
788;;
789;; The macro `c-vsemi-status-unknown-p' will typically check the cacheing
51c9af45 790;; scheme used by the `c-at-vsemi-p-fn', hence the name - the status is
c0066230 791;; "unknown" if there is no cache entry current for the line.
0386b551
AM
792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
793
794(defmacro c-at-vsemi-p (&optional pos)
795 ;; Is there a virtual semicolon (not a real one or a }) at POS (defaults to
796 ;; point)? Always returns nil for languages which don't have Virtual
797 ;; semicolons.
798 ;; This macro might do hidden buffer changes.
799 `(if c-at-vsemi-p-fn
800 (funcall c-at-vsemi-p-fn ,@(if pos `(,pos)))))
801
802(defmacro c-vsemi-status-unknown-p ()
803 ;; Return NIL only if it can be guaranteed that an immediate
804 ;; (c-at-vsemi-p) will NOT call c-beginning-of-statement-1. Otherwise,
805 ;; return non-nil. (See comments above). The function invoked by this
806 ;; macro MUST NOT UNDER ANY CIRCUMSTANCES itself call
807 ;; c-beginning-of-statement-1.
808 ;; Languages which don't have EOL terminated statements always return NIL
809 ;; (they _know_ there's no vsemi ;-).
810 `(if c-vsemi-status-unknown-p-fn (funcall c-vsemi-status-unknown-p-fn)))
811
812\f
a66cd3ee
MS
813(defmacro c-benign-error (format &rest args)
814 ;; Formats an error message for the echo area and dings, i.e. like
815 ;; `error' but doesn't abort.
816 `(progn
817 (message ,format ,@args)
818 (ding)))
130c507e 819
130c507e
GM
820(defmacro c-with-syntax-table (table &rest code)
821 ;; Temporarily switches to the specified syntax table in a failsafe
822 ;; way to execute code.
823 `(let ((c-with-syntax-table-orig-table (syntax-table)))
824 (unwind-protect
825 (progn
826 (set-syntax-table ,table)
827 ,@code)
828 (set-syntax-table c-with-syntax-table-orig-table))))
829(put 'c-with-syntax-table 'lisp-indent-function 1)
830
a66cd3ee
MS
831(defmacro c-skip-ws-forward (&optional limit)
832 "Skip over any whitespace following point.
833This function skips over horizontal and vertical whitespace and line
0386b551 834continuations."
a66cd3ee 835 (if limit
d9e94c22 836 `(let ((limit (or ,limit (point-max))))
a66cd3ee
MS
837 (while (progn
838 ;; skip-syntax-* doesn't count \n as whitespace..
d9e94c22 839 (skip-chars-forward " \t\n\r\f\v" limit)
a66cd3ee 840 (when (and (eq (char-after) ?\\)
d9e94c22 841 (< (point) limit))
a66cd3ee
MS
842 (forward-char)
843 (or (eolp)
844 (progn (backward-char) nil))))))
845 '(while (progn
d9e94c22 846 (skip-chars-forward " \t\n\r\f\v")
a66cd3ee
MS
847 (when (eq (char-after) ?\\)
848 (forward-char)
849 (or (eolp)
850 (progn (backward-char) nil)))))))
851
852(defmacro c-skip-ws-backward (&optional limit)
853 "Skip over any whitespace preceding point.
854This function skips over horizontal and vertical whitespace and line
0386b551 855continuations."
a66cd3ee 856 (if limit
d9e94c22 857 `(let ((limit (or ,limit (point-min))))
a66cd3ee
MS
858 (while (progn
859 ;; skip-syntax-* doesn't count \n as whitespace..
d9e94c22 860 (skip-chars-backward " \t\n\r\f\v" limit)
a66cd3ee
MS
861 (and (eolp)
862 (eq (char-before) ?\\)
d9e94c22 863 (> (point) limit)))
a66cd3ee
MS
864 (backward-char)))
865 '(while (progn
d9e94c22 866 (skip-chars-backward " \t\n\r\f\v")
a66cd3ee
MS
867 (and (eolp)
868 (eq (char-before) ?\\)))
869 (backward-char))))
870
2a15eb73
MS
871(eval-and-compile
872 (defvar c-langs-are-parametric nil))
873
d9e94c22
MS
874(defmacro c-major-mode-is (mode)
875 "Return non-nil if the current CC Mode major mode is MODE.
0386b551 876MODE is either a mode symbol or a list of mode symbols."
2a15eb73
MS
877
878 (if c-langs-are-parametric
879 ;; Inside a `c-lang-defconst'.
880 `(c-lang-major-mode-is ,mode)
881
882 (if (eq (car-safe mode) 'quote)
883 (let ((mode (eval mode)))
884 (if (listp mode)
885 `(memq c-buffer-is-cc-mode ',mode)
886 `(eq c-buffer-is-cc-mode ',mode)))
887
888 `(let ((mode ,mode))
889 (if (listp mode)
890 (memq c-buffer-is-cc-mode mode)
891 (eq c-buffer-is-cc-mode mode))))))
892
d9e94c22
MS
893\f
894;; Macros/functions to handle so-called "char properties", which are
0386b551 895;; properties set on a single character and that never spread to any
d9e94c22
MS
896;; other characters.
897
898(eval-and-compile
899 ;; Constant used at compile time to decide whether or not to use
900 ;; XEmacs extents. Check all the extent functions we'll use since
901 ;; some packages might add compatibility aliases for some of them in
902 ;; Emacs.
903 (defconst c-use-extents (and (cc-bytecomp-fboundp 'extent-at)
904 (cc-bytecomp-fboundp 'set-extent-property)
905 (cc-bytecomp-fboundp 'set-extent-properties)
906 (cc-bytecomp-fboundp 'make-extent)
907 (cc-bytecomp-fboundp 'extent-property)
908 (cc-bytecomp-fboundp 'delete-extent)
909 (cc-bytecomp-fboundp 'map-extents))))
910
911;; `c-put-char-property' is complex enough in XEmacs and Emacs < 21 to
912;; make it a function.
913(defalias 'c-put-char-property-fun
914 (cc-eval-when-compile
915 (cond (c-use-extents
916 ;; XEmacs.
917 (byte-compile
918 (lambda (pos property value)
919 (let ((ext (extent-at pos nil property)))
920 (if ext
921 (set-extent-property ext property value)
922 (set-extent-properties (make-extent pos (1+ pos))
923 (cons property
924 (cons value
925 '(start-open t
926 end-open t)))))))))
927
928 ((not (cc-bytecomp-boundp 'text-property-default-nonsticky))
929 ;; In Emacs < 21 we have to mess with the `rear-nonsticky' property.
930 (byte-compile
931 (lambda (pos property value)
932 (put-text-property pos (1+ pos) property value)
933 (let ((prop (get-text-property pos 'rear-nonsticky)))
934 (or (memq property prop)
935 (put-text-property pos (1+ pos)
936 'rear-nonsticky
937 (cons property prop))))))))))
938(cc-bytecomp-defun c-put-char-property-fun) ; Make it known below.
939
940(defmacro c-put-char-property (pos property value)
941 ;; Put the given property with the given value on the character at
942 ;; POS and make it front and rear nonsticky, or start and end open
943 ;; in XEmacs vocabulary. If the character already has the given
944 ;; property then the value is replaced, and the behavior is
945 ;; undefined if that property has been put by some other function.
946 ;; PROPERTY is assumed to be constant.
947 ;;
948 ;; If there's a `text-property-default-nonsticky' variable (Emacs
949 ;; 21) then it's assumed that the property is present on it.
0386b551
AM
950 ;;
951 ;; This macro does a hidden buffer change.
d9e94c22
MS
952 (setq property (eval property))
953 (if (or c-use-extents
954 (not (cc-bytecomp-boundp 'text-property-default-nonsticky)))
955 ;; XEmacs and Emacs < 21.
956 `(c-put-char-property-fun ,pos ',property ,value)
957 ;; In Emacs 21 we got the `rear-nonsticky' property covered
958 ;; by `text-property-default-nonsticky'.
959 `(let ((-pos- ,pos))
960 (put-text-property -pos- (1+ -pos-) ',property ,value))))
961
962(defmacro c-get-char-property (pos property)
963 ;; Get the value of the given property on the character at POS if
964 ;; it's been put there by `c-put-char-property'. PROPERTY is
965 ;; assumed to be constant.
966 (setq property (eval property))
967 (if c-use-extents
968 ;; XEmacs.
969 `(let ((ext (extent-at ,pos nil ',property)))
970 (if ext (extent-property ext ',property)))
971 ;; Emacs.
972 `(get-text-property ,pos ',property)))
973
974;; `c-clear-char-property' is complex enough in Emacs < 21 to make it
975;; a function, since we have to mess with the `rear-nonsticky' property.
976(defalias 'c-clear-char-property-fun
977 (cc-eval-when-compile
978 (unless (or c-use-extents
979 (cc-bytecomp-boundp 'text-property-default-nonsticky))
980 (byte-compile
981 (lambda (pos property)
982 (when (get-text-property pos property)
983 (remove-text-properties pos (1+ pos) (list property nil))
984 (put-text-property pos (1+ pos)
985 'rear-nonsticky
986 (delq property (get-text-property
987 pos 'rear-nonsticky)))))))))
988(cc-bytecomp-defun c-clear-char-property-fun) ; Make it known below.
989
990(defmacro c-clear-char-property (pos property)
991 ;; Remove the given property on the character at POS if it's been put
992 ;; there by `c-put-char-property'. PROPERTY is assumed to be
993 ;; constant.
0386b551
AM
994 ;;
995 ;; This macro does a hidden buffer change.
d9e94c22
MS
996 (setq property (eval property))
997 (cond (c-use-extents
998 ;; XEmacs.
999 `(let ((ext (extent-at ,pos nil ',property)))
1000 (if ext (delete-extent ext))))
1001 ((cc-bytecomp-boundp 'text-property-default-nonsticky)
1002 ;; In Emacs 21 we got the `rear-nonsticky' property covered
1003 ;; by `text-property-default-nonsticky'.
1004 `(let ((pos ,pos))
1005 (remove-text-properties pos (1+ pos)
1006 '(,property nil))))
1007 (t
1008 ;; Emacs < 21.
1009 `(c-clear-char-property-fun ,pos ',property))))
1010
1011(defmacro c-clear-char-properties (from to property)
1012 ;; Remove all the occurences of the given property in the given
1013 ;; region that has been put with `c-put-char-property'. PROPERTY is
1014 ;; assumed to be constant.
1015 ;;
1016 ;; Note that this function does not clean up the property from the
1017 ;; lists of the `rear-nonsticky' properties in the region, if such
1018 ;; are used. Thus it should not be used for common properties like
1019 ;; `syntax-table'.
0386b551
AM
1020 ;;
1021 ;; This macro does hidden buffer changes.
d9e94c22
MS
1022 (setq property (eval property))
1023 (if c-use-extents
1024 ;; XEmacs.
1025 `(map-extents (lambda (ext ignored)
1026 (delete-extent ext))
1027 nil ,from ,to nil nil ',property)
1028 ;; Emacs.
1029 `(remove-text-properties ,from ,to '(,property nil))))
1030
3cb5c132
AM
1031(defun c-clear-char-property-with-value-function (from to property value)
1032 "Remove all text-properties PROPERTY from the region (FROM, TO)
1033which have the value VALUE, as tested by `equal'. These
1034properties are assumed to be over individual characters, having
1035been put there by c-put-char-property. POINT remains unchanged."
1036 (let ((place from) end-place)
1037 (while ; loop round occurrances of (PROPERTY VALUE)
1038 (progn
1039 (while ; loop round changes in PROPERTY till we find VALUE
1040 (and
1041 (< place to)
1042 (not (equal (get-text-property place property) value)))
1043 (setq place (next-single-property-change place property nil to)))
1044 (< place to))
1045 (setq end-place (next-single-property-change place property nil to))
1046 (put-text-property place end-place property nil)
1047 ;; Do we have to do anything with stickiness here?
1048 (setq place end-place))))
1049
1050(defmacro c-clear-char-property-with-value (from to property value)
1051 "Remove all text-properties PROPERTY from the region [FROM, TO)
1052which have the value VALUE, as tested by `equal'. These
1053properties are assumed to be over individual characters, having
1054been put there by c-put-char-property. POINT remains unchanged."
1055 (if c-use-extents
1056 ;; XEmacs
1057 `(let ((-property- ,property))
1058 (map-extents (lambda (ext val)
1059 (if (equal (extent-property ext -property-) val)
1060 (delete-extent ext)))
1061 nil ,from ,to ,value nil -property-))
1062 ;; Gnu Emacs
1063 `(c-clear-char-property-with-value-function ,from ,to ,property ,value)))
d9e94c22 1064\f
0386b551
AM
1065;; Macros to put overlays (Emacs) or extents (XEmacs) on buffer text.
1066;; For our purposes, these are characterized by being possible to
1067;; remove again without affecting the other text properties in the
1068;; buffer that got overridden when they were put.
1069
1070(defmacro c-put-overlay (from to property value)
1071 ;; Put an overlay/extent covering the given range in the current
1072 ;; buffer. It's currently undefined whether it's front/end sticky
1073 ;; or not. The overlay/extent object is returned.
1074 (if (cc-bytecomp-fboundp 'make-overlay)
1075 ;; Emacs.
1076 `(let ((ol (make-overlay ,from ,to)))
1077 (overlay-put ol ,property ,value)
1078 ol)
1079 ;; XEmacs.
1080 `(let ((ext (make-extent ,from ,to)))
1081 (set-extent-property ext ,property ,value)
1082 ext)))
1083
1084(defmacro c-delete-overlay (overlay)
1085 ;; Deletes an overlay/extent object previously retrieved using
1086 ;; `c-put-overlay'.
1087 (if (cc-bytecomp-fboundp 'make-overlay)
1088 ;; Emacs.
1089 `(delete-overlay ,overlay)
1090 ;; XEmacs.
1091 `(delete-extent ,overlay)))
1092
1093\f
a66cd3ee 1094;; Make edebug understand the macros.
3c0ab532
AM
1095;(eval-after-load "edebug" ; 2006-07-09: def-edebug-spec is now in subr.el.
1096; '(progn
1097(def-edebug-spec cc-eval-when-compile t)
1098(def-edebug-spec c-point t)
1099(def-edebug-spec c-set-region-active t)
1100(def-edebug-spec c-safe t)
1101(def-edebug-spec c-save-buffer-state let*)
1102(def-edebug-spec c-tentative-buffer-changes t)
1103(def-edebug-spec c-forward-syntactic-ws t)
1104(def-edebug-spec c-backward-syntactic-ws t)
1105(def-edebug-spec c-forward-sexp t)
1106(def-edebug-spec c-backward-sexp t)
1107(def-edebug-spec c-up-list-forward t)
1108(def-edebug-spec c-up-list-backward t)
1109(def-edebug-spec c-down-list-forward t)
1110(def-edebug-spec c-down-list-backward t)
1111(def-edebug-spec c-add-syntax t)
1112(def-edebug-spec c-add-class-syntax t)
1113(def-edebug-spec c-benign-error t)
1114(def-edebug-spec c-with-syntax-table t)
1115(def-edebug-spec c-skip-ws-forward t)
1116(def-edebug-spec c-skip-ws-backward t)
1117(def-edebug-spec c-major-mode-is t)
1118(def-edebug-spec c-put-char-property t)
1119(def-edebug-spec c-get-char-property t)
1120(def-edebug-spec c-clear-char-property t)
1121(def-edebug-spec c-clear-char-properties t)
1122(def-edebug-spec c-put-overlay t)
1123(def-edebug-spec c-delete-overlay t) ;))
a66cd3ee 1124
d9e94c22
MS
1125\f
1126;;; Functions.
130c507e
GM
1127
1128;; Note: All these after the macros, to be on safe side in avoiding
1129;; bugs where macros are defined too late. These bugs often only show
1130;; when the files are compiled in a certain order within the same
1131;; session.
1132
51f606de
GM
1133(defsubst c-end-of-defun-1 ()
1134 ;; Replacement for end-of-defun that use c-beginning-of-defun-1.
bbfbe5ec
GM
1135 (let ((start (point)))
1136 ;; Skip forward into the next defun block. Don't bother to avoid
1137 ;; comments, literals etc, since beginning-of-defun doesn't do that
1138 ;; anyway.
1139 (skip-chars-forward "^}")
1140 (c-beginning-of-defun-1)
1141 (if (eq (char-after) ?{)
1142 (c-forward-sexp))
1143 (if (< (point) start)
1144 (goto-char (point-max)))))
785eecbb 1145
d9e94c22
MS
1146(defconst c-<-as-paren-syntax '(4 . ?>))
1147
1148(defsubst c-mark-<-as-paren (pos)
1149 ;; Mark the "<" character at POS as an sexp list opener using the
0386b551
AM
1150 ;; syntax-table property.
1151 ;;
1152 ;; This function does a hidden buffer change.
d9e94c22
MS
1153 (c-put-char-property pos 'syntax-table c-<-as-paren-syntax))
1154
1155(defconst c->-as-paren-syntax '(5 . ?<))
1156
1157(defsubst c-mark->-as-paren (pos)
1158 ;; Mark the ">" character at POS as an sexp list closer using the
0386b551
AM
1159 ;; syntax-table property.
1160 ;;
1161 ;; This function does a hidden buffer change.
d9e94c22
MS
1162 (c-put-char-property pos 'syntax-table c->-as-paren-syntax))
1163
785eecbb
RS
1164(defsubst c-intersect-lists (list alist)
1165 ;; return the element of ALIST that matches the first element found
1166 ;; in LIST. Uses assq.
1167 (let (match)
1168 (while (and list
1169 (not (setq match (assq (car list) alist))))
1170 (setq list (cdr list)))
1171 match))
1172
1173(defsubst c-lookup-lists (list alist1 alist2)
1174 ;; first, find the first entry from LIST that is present in ALIST1,
1175 ;; then find the entry in ALIST2 for that entry.
1176 (assq (car (c-intersect-lists list alist1)) alist2))
1177
117679f7
MS
1178(defsubst c-langelem-sym (langelem)
1179 "Return the syntactic symbol in LANGELEM.
1180
0386b551
AM
1181LANGELEM is either a cons cell on the \"old\" form given as the first
1182argument to lineup functions or a syntactic element on the \"new\"
1183form as used in `c-syntactic-element'."
117679f7
MS
1184 (car langelem))
1185
1186(defsubst c-langelem-pos (langelem)
0386b551 1187 "Return the anchor position in LANGELEM, or nil if there is none.
117679f7 1188
0386b551
AM
1189LANGELEM is either a cons cell on the \"old\" form given as the first
1190argument to lineup functions or a syntactic element on the \"new\"
1191form as used in `c-syntactic-element'."
117679f7
MS
1192 (if (consp (cdr langelem))
1193 (car-safe (cdr langelem))
1194 (cdr langelem)))
1195
1196(defun c-langelem-col (langelem &optional preserve-point)
0386b551
AM
1197 "Return the column of the anchor position in LANGELEM.
1198Also move the point to that position unless PRESERVE-POINT is non-nil.
117679f7 1199
0386b551
AM
1200LANGELEM is either a cons cell on the \"old\" form given as the first
1201argument to lineup functions or a syntactic element on the \"new\"
1202form as used in `c-syntactic-element'."
117679f7
MS
1203 (let ((pos (c-langelem-pos langelem))
1204 (here (point)))
1205 (if pos
1206 (progn
1207 (goto-char pos)
1208 (prog1 (current-column)
1209 (if preserve-point
1210 (goto-char here))))
1211 0)))
1212
1213(defsubst c-langelem-2nd-pos (langelem)
1214 "Return the secondary position in LANGELEM, or nil if there is none.
1215
0386b551
AM
1216LANGELEM is typically a syntactic element on the \"new\" form as used
1217in `c-syntactic-element'. It may also be a cons cell as passed in the
1218first argument to lineup functions, but then the returned value always
1219will be nil."
117679f7 1220 (car-safe (cdr-safe (cdr-safe langelem))))
785eecbb 1221
785eecbb
RS
1222(defsubst c-keep-region-active ()
1223 ;; Do whatever is necessary to keep the region active in XEmacs.
130c507e 1224 ;; This is not needed for Emacs.
785eecbb
RS
1225 (and (boundp 'zmacs-region-stays)
1226 (setq zmacs-region-stays t)))
1227
d9e94c22
MS
1228(put 'c-mode 'c-mode-prefix "c-")
1229(put 'c++-mode 'c-mode-prefix "c++-")
1230(put 'objc-mode 'c-mode-prefix "objc-")
1231(put 'java-mode 'c-mode-prefix "java-")
1232(put 'idl-mode 'c-mode-prefix "idl-")
1233(put 'pike-mode 'c-mode-prefix "pike-")
1234(put 'awk-mode 'c-mode-prefix "awk-")
1235
1236(defsubst c-mode-symbol (suffix)
1237 "Prefix the current mode prefix (e.g. \"c-\") to SUFFIX and return
0386b551 1238the corresponding symbol."
d9e94c22
MS
1239 (or c-buffer-is-cc-mode
1240 (error "Not inside a CC Mode based mode"))
1241 (let ((mode-prefix (get c-buffer-is-cc-mode 'c-mode-prefix)))
1242 (or mode-prefix
1243 (error "%S has no mode prefix known to `c-mode-symbol'"
1244 c-buffer-is-cc-mode))
1245 (intern (concat mode-prefix suffix))))
1246
1247(defsubst c-mode-var (suffix)
1248 "Prefix the current mode prefix (e.g. \"c-\") to SUFFIX and return
0386b551 1249the value of the variable with that name."
d9e94c22
MS
1250 (symbol-value (c-mode-symbol suffix)))
1251
d9e94c22
MS
1252(defsubst c-got-face-at (pos faces)
1253 "Return non-nil if position POS in the current buffer has any of the
0386b551 1254faces in the list FACES."
d9e94c22
MS
1255 (let ((pos-faces (get-text-property pos 'face)))
1256 (if (consp pos-faces)
1257 (progn
1258 (while (and pos-faces
1259 (not (memq (car pos-faces) faces)))
1260 (setq pos-faces (cdr pos-faces)))
1261 pos-faces)
1262 (memq pos-faces faces))))
1263
1264(defsubst c-face-name-p (facename)
1265 ;; Return t if FACENAME is the name of a face. This method is
1266 ;; necessary since facep in XEmacs only returns t for the actual
1267 ;; face objects (while it's only their names that are used just
1268 ;; about anywhere else) without providing a predicate that tests
1269 ;; face names.
d9e94c22
MS
1270 (memq facename (face-list)))
1271
0386b551
AM
1272(defun c-concat-separated (list separator)
1273 "Like `concat' on LIST, but separate each element with SEPARATOR.
1274Notably, null elements in LIST are ignored."
1275 (mapconcat 'identity (delete nil (append list nil)) separator))
1276
d9e94c22
MS
1277(defun c-make-keywords-re (adorn list &optional mode)
1278 "Make a regexp that matches all the strings the list.
0386b551
AM
1279Duplicates and nil elements in the list are removed. The resulting
1280regexp may contain zero or more submatch expressions.
1281
1282If ADORN is t there will be at least one submatch and the first
1283surrounds the matched alternative, and the regexp will also not match
1284a prefix of any identifier. Adorned regexps cannot be appended. The
1285language variable `c-nonsymbol-key' is used to make the adornment.
1286
1287A value 'appendable for ADORN is like above, but all alternatives in
1288the list that end with a word constituent char will have \\> appended
1289instead, so that the regexp remains appendable. Note that this
1290variant doesn't always guarantee that an identifier prefix isn't
1291matched since the symbol constituent '_' is normally considered a
1292nonword token by \\>.
d9e94c22 1293
0386b551
AM
1294The optional MODE specifies the language to get `c-nonsymbol-key' from
1295when it's needed. The default is the current language taken from
1296`c-buffer-is-cc-mode'."
037558bf 1297
19c5fddb
RS
1298 (let (unique)
1299 (dolist (elt list)
1300 (unless (member elt unique)
1301 (push elt unique)))
0386b551 1302 (setq list (delete nil unique)))
d9e94c22 1303 (if list
0386b551
AM
1304 (let (re)
1305
1306 (if (eq adorn 'appendable)
1307 ;; This is kludgy but it works: Search for a string that
1308 ;; doesn't occur in any word in LIST. Append it to all
1309 ;; the alternatives where we want to add \>. Run through
1310 ;; `regexp-opt' and then replace it with \>.
1311 (let ((unique "") pos)
1312 (while (let (found)
1313 (setq unique (concat unique "@")
1314 pos list)
1315 (while (and pos
1316 (if (string-match unique (car pos))
1317 (progn (setq found t)
1318 nil)
1319 t))
1320 (setq pos (cdr pos)))
1321 found))
1322 (setq pos list)
1323 (while pos
1324 (if (string-match "\\w\\'" (car pos))
1325 (setcar pos (concat (car pos) unique)))
1326 (setq pos (cdr pos)))
1327 (setq re (regexp-opt list))
1328 (setq pos 0)
1329 (while (string-match unique re pos)
1330 (setq pos (+ (match-beginning 0) 2)
1331 re (replace-match "\\>" t t re))))
1332
1333 (setq re (regexp-opt list)))
1334
1335 ;; Emacs 20 and XEmacs (all versions so far) has a buggy
037558bf
MS
1336 ;; regexp-opt that doesn't always cope with strings containing
1337 ;; newlines. This kludge doesn't handle shy parens correctly
1338 ;; so we can't advice regexp-opt directly with it.
1339 (let (fail-list)
1340 (while list
1341 (and (string-match "\n" (car list)) ; To speed it up a little.
1342 (not (string-match (concat "\\`\\(" re "\\)\\'")
1343 (car list)))
1344 (setq fail-list (cons (car list) fail-list)))
1345 (setq list (cdr list)))
1346 (when fail-list
1347 (setq re (concat re
1348 "\\|"
0386b551
AM
1349 (mapconcat
1350 (if (eq adorn 'appendable)
1351 (lambda (str)
1352 (if (string-match "\\w\\'" str)
1353 (concat (regexp-quote str)
1354 "\\>")
1355 (regexp-quote str)))
1356 'regexp-quote)
1357 (sort fail-list
1358 (lambda (a b)
1359 (> (length a) (length b))))
1360 "\\|")))))
037558bf 1361
d9e94c22
MS
1362 ;; Add our own grouping parenthesis around re instead of
1363 ;; passing adorn to `regexp-opt', since in XEmacs it makes the
1364 ;; top level grouping "shy".
0386b551
AM
1365 (cond ((eq adorn 'appendable)
1366 (concat "\\(" re "\\)"))
1367 (adorn
1368 (concat "\\(" re "\\)"
1369 "\\("
1370 (c-get-lang-constant 'c-nonsymbol-key nil mode)
1371 "\\|$\\)"))
1372 (t
1373 re)))
037558bf 1374
d9e94c22
MS
1375 ;; Produce a regexp that matches nothing.
1376 (if adorn
1377 "\\(\\<\\>\\)"
1378 "\\<\\>")))
037558bf 1379
d9e94c22
MS
1380(put 'c-make-keywords-re 'lisp-indent-function 1)
1381
0386b551
AM
1382(defun c-make-bare-char-alt (chars &optional inverted)
1383 "Make a character alternative string from the list of characters CHARS.
1384The returned string is of the type that can be used with
1385`skip-chars-forward' and `skip-chars-backward'. If INVERTED is
1386non-nil, a caret is prepended to invert the set."
1387 ;; This function ought to be in the elisp core somewhere.
1388 (let ((str (if inverted "^" "")) char char2)
1389 (setq chars (sort (append chars nil) `<))
1390 (while chars
1391 (setq char (pop chars))
1392 (if (memq char '(?\\ ?^ ?-))
1393 ;; Quoting necessary (this method only works in the skip
1394 ;; functions).
1395 (setq str (format "%s\\%c" str char))
1396 (setq str (format "%s%c" str char)))
1397 ;; Check for range.
1398 (setq char2 char)
1399 (while (and chars (>= (1+ char2) (car chars)))
1400 (setq char2 (pop chars)))
1401 (unless (= char char2)
1402 (if (< (1+ char) char2)
1403 (setq str (format "%s-%c" str char2))
1404 (push char2 chars))))
1405 str))
1406
1407;; Leftovers from (X)Emacs 19 compatibility.
1408(defalias 'c-regexp-opt 'regexp-opt)
1409(defalias 'c-regexp-opt-depth 'regexp-opt-depth)
1410
d9e94c22 1411\f
2a15eb73
MS
1412;; Figure out what features this Emacs has
1413
1414(cc-bytecomp-defvar open-paren-in-column-0-is-defun-start)
1415
1416(defconst c-emacs-features
1417 (let (list)
1418
1419 (if (boundp 'infodock-version)
1420 ;; I've no idea what this actually is, but it's legacy. /mast
1421 (setq list (cons 'infodock list)))
1422
0386b551
AM
1423 ;; XEmacs uses 8-bit modify-syntax-entry flags.
1424 ;; Emacs uses a 1-bit flag. We will have to set up our
2a15eb73
MS
1425 ;; syntax tables differently to handle this.
1426 (let ((table (copy-syntax-table))
1427 entry)
1428 (modify-syntax-entry ?a ". 12345678" table)
1429 (cond
0386b551 1430 ;; Emacs
2a15eb73
MS
1431 ((arrayp table)
1432 (setq entry (aref table ?a))
1433 ;; In Emacs, table entries are cons cells
1434 (if (consp entry) (setq entry (car entry))))
0386b551
AM
1435 ;; XEmacs
1436 ((fboundp 'get-char-table)
1437 (setq entry (get-char-table ?a table)))
2a15eb73
MS
1438 ;; incompatible
1439 (t (error "CC Mode is incompatible with this version of Emacs")))
1440 (setq list (cons (if (= (logand (lsh entry -16) 255) 255)
1441 '8-bit
1442 '1-bit)
1443 list)))
1444
1445 (let ((buf (generate-new-buffer " test"))
1446 parse-sexp-lookup-properties
1447 parse-sexp-ignore-comments
1448 lookup-syntax-properties)
1449 (save-excursion
1450 (set-buffer buf)
1451 (set-syntax-table (make-syntax-table))
1452
1453 ;; For some reason we have to set some of these after the
1454 ;; buffer has been made current. (Specifically,
1455 ;; `parse-sexp-ignore-comments' in Emacs 21.)
1456 (setq parse-sexp-lookup-properties t
1457 parse-sexp-ignore-comments t
1458 lookup-syntax-properties t)
1459
1460 ;; Find out if the `syntax-table' text property works.
1461 (modify-syntax-entry ?< ".")
1462 (modify-syntax-entry ?> ".")
1463 (insert "<()>")
6277435b
SM
1464 (c-mark-<-as-paren (point-min))
1465 (c-mark->-as-paren (+ 3 (point-min)))
1466 (goto-char (point-min))
2a15eb73 1467 (c-forward-sexp)
6277435b 1468 (if (= (point) (+ 4 (point-min)))
0386b551
AM
1469 (setq list (cons 'syntax-properties list))
1470 (error (concat
1471 "CC Mode is incompatible with this version of Emacs - "
1472 "support for the `syntax-table' text property "
1473 "is required.")))
2a15eb73
MS
1474
1475 ;; Find out if generic comment delimiters work.
1476 (c-safe
1477 (modify-syntax-entry ?x "!")
1478 (if (string-match "\\s!" "x")
1479 (setq list (cons 'gen-comment-delim list))))
1480
1481 ;; Find out if generic string delimiters work.
1482 (c-safe
1483 (modify-syntax-entry ?x "|")
1484 (if (string-match "\\s|" "x")
1485 (setq list (cons 'gen-string-delim list))))
1486
1487 ;; See if POSIX char classes work.
1488 (when (and (string-match "[[:alpha:]]" "a")
1489 ;; All versions of Emacs 21 so far haven't fixed
1490 ;; char classes in `skip-chars-forward' and
1491 ;; `skip-chars-backward'.
1492 (progn
1493 (delete-region (point-min) (point-max))
1494 (insert "foo123")
1495 (skip-chars-backward "[:alnum:]")
1496 (bobp))
1497 (= (skip-chars-forward "[:alpha:]") 3))
1498 (setq list (cons 'posix-char-classes list)))
1499
1500 ;; See if `open-paren-in-column-0-is-defun-start' exists and
0386b551 1501 ;; isn't buggy (Emacs >= 21.4).
2a15eb73
MS
1502 (when (boundp 'open-paren-in-column-0-is-defun-start)
1503 (let ((open-paren-in-column-0-is-defun-start nil)
1504 (parse-sexp-ignore-comments t))
1505 (delete-region (point-min) (point-max))
1506 (set-syntax-table (make-syntax-table))
1507 (modify-syntax-entry ?\' "\"")
1508 (cond
1509 ;; XEmacs. Afaik this is currently an Emacs-only
1510 ;; feature, but it's good to be prepared.
1511 ((memq '8-bit list)
1512 (modify-syntax-entry ?/ ". 1456")
1513 (modify-syntax-entry ?* ". 23"))
1514 ;; Emacs
1515 ((memq '1-bit list)
1516 (modify-syntax-entry ?/ ". 124b")
1517 (modify-syntax-entry ?* ". 23")))
1518 (modify-syntax-entry ?\n "> b")
1519 (insert "/* '\n () */")
1520 (backward-sexp)
1521 (if (bobp)
1522 (setq list (cons 'col-0-paren list)))))
1523
1524 (set-buffer-modified-p nil))
1525 (kill-buffer buf))
1526
1527 ;; See if `parse-partial-sexp' returns the eighth element.
3f264a3a
RS
1528 (if (c-safe (>= (length (save-excursion (parse-partial-sexp (point) (point))))
1529 10))
0386b551
AM
1530 (setq list (cons 'pps-extended-state list))
1531 (error (concat
1532 "CC Mode is incompatible with this version of Emacs - "
1533 "`parse-partial-sexp' has to return at least 10 elements.")))
2a15eb73
MS
1534
1535 ;;(message "c-emacs-features: %S" list)
1536 list)
1537 "A list of certain features in the (X)Emacs you are using.
1538There are many flavors of Emacs out there, each with different
1539features supporting those needed by CC Mode. The following values
1540might be present:
1541
1542'8-bit 8 bit syntax entry flags (XEmacs style).
1543'1-bit 1 bit syntax entry flags (Emacs style).
1544'syntax-properties It works to override the syntax for specific characters
0386b551
AM
1545 in the buffer with the 'syntax-table property. It's
1546 always set - CC Mode no longer works in emacsen without
1547 this feature.
2a15eb73
MS
1548'gen-comment-delim Generic comment delimiters work
1549 (i.e. the syntax class `!').
1550'gen-string-delim Generic string delimiters work
1551 (i.e. the syntax class `|').
1552'pps-extended-state `parse-partial-sexp' returns a list with at least 10
0386b551 1553 elements, i.e. it contains the position of the start of
c0066230
JB
1554 the last comment or string. It's always set - CC Mode
1555 no longer works in emacsen without this feature.
2a15eb73
MS
1556'posix-char-classes The regexp engine understands POSIX character classes.
1557'col-0-paren It's possible to turn off the ad-hoc rule that a paren
1558 in column zero is the start of a defun.
1559'infodock This is Infodock (based on XEmacs).
1560
1561'8-bit and '1-bit are mutually exclusive.")
1562
1563\f
d9e94c22
MS
1564;;; Some helper constants.
1565
2a15eb73
MS
1566;; If the regexp engine supports POSIX char classes then we can use
1567;; them to handle extended charsets correctly.
1568(if (memq 'posix-char-classes c-emacs-features)
d9e94c22
MS
1569 (progn
1570 (defconst c-alpha "[:alpha:]")
1571 (defconst c-alnum "[:alnum:]")
1572 (defconst c-digit "[:digit:]")
1573 (defconst c-upper "[:upper:]")
1574 (defconst c-lower "[:lower:]"))
1575 (defconst c-alpha "a-zA-Z")
1576 (defconst c-alnum "a-zA-Z0-9")
1577 (defconst c-digit "0-9")
1578 (defconst c-upper "A-Z")
1579 (defconst c-lower "a-z"))
1580
1581\f
1582;;; System for handling language dependent constants.
1583
1584;; This is used to set various language dependent data in a flexible
1585;; way: Language constants can be built from the values of other
1586;; language constants, also those for other languages. They can also
1587;; process the values of other language constants uniformly across all
1588;; the languages. E.g. one language constant can list all the type
1589;; keywords in each language, and another can build a regexp for each
1590;; language from those lists without code duplication.
1591;;
1592;; Language constants are defined with `c-lang-defconst', and their
1593;; value forms (referred to as source definitions) are evaluated only
1594;; on demand when requested for a particular language with
1595;; `c-lang-const'. It's therefore possible to refer to the values of
1596;; constants defined later in the file, or in another file, just as
1597;; long as all the relevant `c-lang-defconst' have been loaded when
1598;; `c-lang-const' is actually evaluated from somewhere else.
1599;;
1600;; `c-lang-const' forms are also evaluated at compile time and
1601;; replaced with the values they produce. Thus there's no overhead
1602;; for this system when compiled code is used - only the values
1603;; actually used in the code are present, and the file(s) containing
1604;; the `c-lang-defconst' forms don't need to be loaded at all then.
1605;; There are however safeguards to make sure that they can be loaded
1606;; to get the source definitions for the values if there's a mismatch
1607;; in compiled versions, or if `c-lang-const' is used uncompiled.
1608;;
1609;; Note that the source definitions in a `c-lang-defconst' form are
1610;; compiled into the .elc file where it stands; there's no need to
1611;; load the source file to get it.
1612;;
1613;; See cc-langs.el for more details about how this system is deployed
1614;; in CC Mode, and how the associated language variable system
1615;; (`c-lang-defvar') works. That file also contains a lot of
1616;; examples.
1617
1618(defun c-add-language (mode base-mode)
1619 "Declare a new language in the language dependent variable system.
1620This is intended to be used by modes that inherit CC Mode to add new
1621languages. It should be used at the top level before any calls to
1622`c-lang-defconst'. MODE is the mode name symbol for the new language,
1623and BASE-MODE is the mode name symbol for the language in CC Mode that
1624is to be the template for the new mode.
1625
1626The exact effect of BASE-MODE is to make all language constants that
1627haven't got a setting in the new language fall back to their values in
1628BASE-MODE. It does not have any effect outside the language constant
1629system."
1630 (unless (string-match "\\`\\(.*-\\)mode\\'" (symbol-name mode))
1631 (error "The mode name symbol `%s' must end with \"-mode\"" mode))
1632 (put mode 'c-mode-prefix (match-string 1 (symbol-name mode)))
1633 (unless (get base-mode 'c-mode-prefix)
2a15eb73
MS
1634 (error "Unknown base mode `%s'" base-mode))
1635 (put mode 'c-fallback-mode base-mode))
d9e94c22
MS
1636
1637(defvar c-lang-constants (make-vector 151 0))
1638;; This obarray is a cache to keep track of the language constants
1639;; defined by `c-lang-defconst' and the evaluated values returned by
1640;; `c-lang-const'. It's mostly used at compile time but it's not
1641;; stored in compiled files.
1642;;
1643;; The obarray contains all the language constants as symbols. The
1644;; value cells hold the evaluated values as alists where each car is
1645;; the mode name symbol and the corresponding cdr is the evaluated
1646;; value in that mode. The property lists hold the source definitions
1647;; and other miscellaneous data. The obarray might also contain
1648;; various other symbols, but those don't have any variable bindings.
1649
1650(defvar c-lang-const-expansion nil)
d9e94c22
MS
1651
1652(defsubst c-get-current-file ()
1653 ;; Return the base name of the current file.
1654 (let ((file (cond
1655 (load-in-progress
1656 ;; Being loaded.
1657 load-file-name)
1658 ((and (boundp 'byte-compile-dest-file)
1659 (stringp byte-compile-dest-file))
1660 ;; Being compiled.
1661 byte-compile-dest-file)
1662 (t
1663 ;; Being evaluated interactively.
1664 (buffer-file-name)))))
1665 (and file
1666 (file-name-sans-extension
1667 (file-name-nondirectory file)))))
1668
1669(defmacro c-lang-defconst-eval-immediately (form)
1670 "Can be used inside a VAL in `c-lang-defconst' to evaluate FORM
1671immediately, i.e. at the same time as the `c-lang-defconst' form
1672itself is evaluated."
1673 ;; Evaluate at macro expansion time, i.e. in the
1674 ;; `cl-macroexpand-all' inside `c-lang-defconst'.
1675 (eval form))
1676
1677(defmacro c-lang-defconst (name &rest args)
1678 "Set the language specific values of the language constant NAME.
51c9af45 1679The second argument can optionally be a docstring. The rest of the
d9e94c22
MS
1680arguments are one or more repetitions of LANG VAL where LANG specifies
1681the language(s) that VAL applies to. LANG is the name of the
1682language, i.e. the mode name without the \"-mode\" suffix, or a list
1683of such language names, or `t' for all languages. VAL is a form to
1684evaluate to get the value.
1685
1686If LANG isn't `t' or one of the core languages in CC Mode, it must
1687have been declared with `c-add-language'.
1688
1689Neither NAME, LANG nor VAL are evaluated directly - they should not be
1690quoted. `c-lang-defconst-eval-immediately' can however be used inside
1691VAL to evaluate parts of it directly.
1692
1693When VAL is evaluated for some language, that language is temporarily
1694made current so that `c-lang-const' without an explicit language can
1695be used inside VAL to refer to the value of a language constant in the
1696same language. That is particularly useful if LANG is `t'.
1697
1698VAL is not evaluated right away but rather when the value is requested
1699with `c-lang-const'. Thus it's possible to use `c-lang-const' inside
1700VAL to refer to language constants that haven't been defined yet.
1701However, if the definition of a language constant is in another file
1702then that file must be loaded \(at compile time) before it's safe to
1703reference the constant.
1704
1705The assignments in ARGS are processed in sequence like `setq', so
1706\(c-lang-const NAME) may be used inside a VAL to refer to the last
1707assigned value to this language constant, or a value that it has
1708gotten in another earlier loaded file.
1709
1710To work well with repeated loads and interactive reevaluation, only
1711one `c-lang-defconst' for each NAME is permitted per file. If there
1712already is one it will be completely replaced; the value in the
1713earlier definition will not affect `c-lang-const' on the same
0386b551 1714constant. A file is identified by its base name."
d9e94c22
MS
1715
1716 (let* ((sym (intern (symbol-name name) c-lang-constants))
1717 ;; Make `c-lang-const' expand to a straightforward call to
1718 ;; `c-get-lang-constant' in `cl-macroexpand-all' below.
1719 ;;
1720 ;; (The default behavior, i.e. to expand to a call inside
1721 ;; `eval-when-compile' should be equivalent, since that macro
1722 ;; should only expand to its content if it's used inside a
1723 ;; form that's already evaluated at compile time. It's
1724 ;; however necessary to use our cover macro
1725 ;; `cc-eval-when-compile' due to bugs in `eval-when-compile',
1726 ;; and it expands to a bulkier form that in this case only is
1727 ;; unnecessary garbage that we don't want to store in the
1728 ;; language constant source definitions.)
1729 (c-lang-const-expansion 'call)
1730 (c-langs-are-parametric t)
1731 bindings
1732 pre-files)
1733
1734 (or (symbolp name)
1735 (error "Not a symbol: %s" name))
1736
1737 (when (stringp (car-safe args))
1738 ;; The docstring is hardly used anywhere since there's no normal
1739 ;; symbol to attach it to. It's primarily for getting the right
1740 ;; format in the source.
1741 (put sym 'variable-documentation (car args))
1742 (setq args (cdr args)))
1743
1744 (or args
1745 (error "No assignments in `c-lang-defconst' for %s" name))
1746
1747 ;; Rework ARGS to an association list to make it easier to handle.
1748 ;; It's reversed at the same time to make it easier to implement
1749 ;; the demand-driven (i.e. reversed) evaluation in `c-lang-const'.
1750 (while args
1751 (let ((assigned-mode
1752 (cond ((eq (car args) t) t)
1753 ((symbolp (car args))
1754 (list (intern (concat (symbol-name (car args))
1755 "-mode"))))
1756 ((listp (car args))
1757 (mapcar (lambda (lang)
1758 (or (symbolp lang)
1759 (error "Not a list of symbols: %s"
1760 (car args)))
1761 (intern (concat (symbol-name lang)
1762 "-mode")))
1763 (car args)))
1764 (t (error "Not a symbol or a list of symbols: %s"
1765 (car args)))))
1766 val)
1767
1768 (or (cdr args)
1769 (error "No value for %s" (car args)))
1770 (setq args (cdr args)
1771 val (car args))
1772
1773 ;; Emacs has a weird bug where it seems to fail to read
1774 ;; backquote lists from byte compiled files correctly (,@
1775 ;; forms, to be specific), so make sure the bindings in the
51c9af45 1776 ;; expansion below don't contain any backquote stuff.
d9e94c22
MS
1777 ;; (XEmacs handles it correctly and doesn't need this for that
1778 ;; reason, but we also use this expansion handle
1779 ;; `c-lang-defconst-eval-immediately' and to register
1780 ;; dependencies on the `c-lang-const's in VAL.)
1781 (setq val (cl-macroexpand-all val))
1782
1783 (setq bindings (cons (cons assigned-mode val) bindings)
1784 args (cdr args))))
1785
1786 ;; Compile in the other files that have provided source
1787 ;; definitions for this symbol, to make sure the order in the
1788 ;; `source' property is correct even when files are loaded out of
1789 ;; order.
1790 (setq pre-files (nreverse
1791 ;; Reverse to get the right load order.
1792 (mapcar 'car (get sym 'source))))
1793
1794 `(eval-and-compile
1795 (c-define-lang-constant ',name ',bindings
1796 ,@(and pre-files `(',pre-files))))))
1797
1798(put 'c-lang-defconst 'lisp-indent-function 1)
3c0ab532
AM
1799;(eval-after-load "edebug" ; 2006-07-09: def-edebug-spec is now in subr.el.
1800; '
1801(def-edebug-spec c-lang-defconst
1802 (&define name [&optional stringp] [&rest sexp def-form]))
d9e94c22
MS
1803
1804(defun c-define-lang-constant (name bindings &optional pre-files)
0386b551 1805 ;; Used by `c-lang-defconst'.
d9e94c22
MS
1806
1807 (let* ((sym (intern (symbol-name name) c-lang-constants))
1808 (source (get sym 'source))
1809 (file (intern
1810 (or (c-get-current-file)
1811 (error "`c-lang-defconst' must be used in a file"))))
1812 (elem (assq file source)))
1813
1814 ;;(when (cdr-safe elem)
1815 ;; (message "Language constant %s redefined in %S" name file))
1816
1817 ;; Note that the order in the source alist is relevant. Like how
1818 ;; `c-lang-defconst' reverses the bindings, this reverses the
1819 ;; order between files so that the last to evaluate comes first.
1820 (unless elem
1821 (while pre-files
1822 (unless (assq (car pre-files) source)
1823 (setq source (cons (list (car pre-files)) source)))
1824 (setq pre-files (cdr pre-files)))
1825 (put sym 'source (cons (setq elem (list file)) source)))
1826
1827 (setcdr elem bindings)
1828
1829 ;; Bind the symbol as a variable, or clear any earlier evaluated
1830 ;; value it has.
1831 (set sym nil)
1832
1833 ;; Clear the evaluated values that depend on this source.
1834 (let ((agenda (get sym 'dependents))
1835 (visited (make-vector 101 0))
1836 ptr)
1837 (while agenda
1838 (setq sym (car agenda)
1839 agenda (cdr agenda))
1840 (intern (symbol-name sym) visited)
1841 (set sym nil)
1842 (setq ptr (get sym 'dependents))
1843 (while ptr
1844 (setq sym (car ptr)
1845 ptr (cdr ptr))
1846 (unless (intern-soft (symbol-name sym) visited)
1847 (setq agenda (cons sym agenda))))))
1848
1849 name))
1850
1851(defmacro c-lang-const (name &optional lang)
1852 "Get the mode specific value of the language constant NAME in language LANG.
1853LANG is the name of the language, i.e. the mode name without the
1854\"-mode\" suffix. If used inside `c-lang-defconst' or
1855`c-lang-defvar', LANG may be left out to refer to the current
1856language. NAME and LANG are not evaluated so they should not be
0386b551 1857quoted."
d9e94c22
MS
1858
1859 (or (symbolp name)
1860 (error "Not a symbol: %s" name))
1861 (or (symbolp lang)
1862 (error "Not a symbol: %s" lang))
1863
1864 (let ((sym (intern (symbol-name name) c-lang-constants))
1865 mode source-files args)
1866
0386b551
AM
1867 (when lang
1868 (setq mode (intern (concat (symbol-name lang) "-mode")))
1869 (unless (get mode 'c-mode-prefix)
1870 (error
1871 "Unknown language %S since it got no `c-mode-prefix' property"
1872 (symbol-name lang))))
d9e94c22
MS
1873
1874 (if (eq c-lang-const-expansion 'immediate)
1875 ;; No need to find out the source file(s) when we evaluate
1876 ;; immediately since all the info is already there in the
1877 ;; `source' property.
1878 `',(c-get-lang-constant name nil mode)
1879
1880 (let ((file (c-get-current-file)))
1881 (if file (setq file (intern file)))
1882 ;; Get the source file(s) that must be loaded to get the value
1883 ;; of the constant. If the symbol isn't defined yet we assume
1884 ;; that its definition will come later in this file, and thus
1885 ;; are no file dependencies needed.
1886 (setq source-files (nreverse
1887 ;; Reverse to get the right load order.
19c5fddb
RS
1888 (apply 'nconc
1889 (mapcar (lambda (elem)
1890 (if (eq file (car elem))
1891 nil ; Exclude our own file.
1892 (list (car elem))))
1893 (get sym 'source))))))
d9e94c22 1894
0386b551 1895 ;; Make some effort to do a compact call to
d9e94c22
MS
1896 ;; `c-get-lang-constant' since it will be compiled in.
1897 (setq args (and mode `(',mode)))
1898 (if (or source-files args)
1899 (setq args (cons (and source-files `',source-files)
1900 args)))
1901
1902 (if (or (eq c-lang-const-expansion 'call)
0386b551
AM
1903 (and (not c-lang-const-expansion)
1904 (not mode))
d9e94c22
MS
1905 load-in-progress
1906 (not (boundp 'byte-compile-dest-file))
1907 (not (stringp byte-compile-dest-file)))
1908 ;; Either a straight call is requested in the context, or
0386b551
AM
1909 ;; we're in an "uncontrolled" context and got no language,
1910 ;; or we're not being byte compiled so the compile time
1911 ;; stuff below is unnecessary.
d9e94c22
MS
1912 `(c-get-lang-constant ',name ,@args)
1913
1914 ;; Being compiled. If the loading and compiling version is
1915 ;; the same we use a value that is evaluated at compile time,
1916 ;; otherwise it's evaluated at runtime.
1917 `(if (eq c-version-sym ',c-version-sym)
1918 (cc-eval-when-compile
1919 (c-get-lang-constant ',name ,@args))
1920 (c-get-lang-constant ',name ,@args))))))
1921
1922(defvar c-lang-constants-under-evaluation nil)
1923
1924(defun c-get-lang-constant (name &optional source-files mode)
0386b551 1925 ;; Used by `c-lang-const'.
d9e94c22
MS
1926
1927 (or mode
1928 (setq mode c-buffer-is-cc-mode)
1929 (error "No current language"))
1930
1931 (let* ((sym (intern (symbol-name name) c-lang-constants))
1932 (source (get sym 'source))
1933 elem
1934 (eval-in-sym (and c-lang-constants-under-evaluation
1935 (caar c-lang-constants-under-evaluation))))
1936
1937 ;; Record the dependencies between this symbol and the one we're
1938 ;; being evaluated in.
1939 (when eval-in-sym
1940 (or (memq eval-in-sym (get sym 'dependents))
1941 (put sym 'dependents (cons eval-in-sym (get sym 'dependents)))))
1942
1943 ;; Make sure the source files have entries on the `source'
1944 ;; property so that loading will take place when necessary.
1945 (while source-files
1946 (unless (assq (car source-files) source)
1947 (put sym 'source
1948 (setq source (cons (list (car source-files)) source)))
1949 ;; Might pull in more definitions which affect the value. The
1950 ;; clearing of dependent values etc is done when the
1951 ;; definition is encountered during the load; this is just to
1952 ;; jump past the check for a cached value below.
1953 (set sym nil))
1954 (setq source-files (cdr source-files)))
1955
1956 (if (and (boundp sym)
1957 (setq elem (assq mode (symbol-value sym))))
1958 (cdr elem)
1959
1960 ;; Check if an evaluation of this symbol is already underway.
1961 ;; In that case we just continue with the "assignment" before
1962 ;; the one currently being evaluated, thereby creating the
1963 ;; illusion if a `setq'-like sequence of assignments.
1964 (let* ((c-buffer-is-cc-mode mode)
1965 (source-pos
1966 (or (assq sym c-lang-constants-under-evaluation)
1967 (cons sym (vector source nil))))
1968 ;; Append `c-lang-constants-under-evaluation' even if an
1969 ;; earlier entry is found. It's only necessary to get
1970 ;; the recording of dependencies above correct.
1971 (c-lang-constants-under-evaluation
1972 (cons source-pos c-lang-constants-under-evaluation))
1973 (fallback (get mode 'c-fallback-mode))
1974 value
1975 ;; Make sure the recursion limits aren't very low
1976 ;; since the `c-lang-const' dependencies can go deep.
1977 (max-specpdl-size (max max-specpdl-size 3000))
1978 (max-lisp-eval-depth (max max-lisp-eval-depth 1000)))
1979
1980 (if (if fallback
1981 (let ((backup-source-pos (copy-sequence (cdr source-pos))))
1982 (and
1983 ;; First try the original mode but don't accept an
1984 ;; entry matching all languages since the fallback
1985 ;; mode might have an explicit entry before that.
1986 (eq (setq value (c-find-assignment-for-mode
1987 (cdr source-pos) mode nil name))
1988 c-lang-constants)
1989 ;; Try again with the fallback mode from the
1990 ;; original position. Note that
1991 ;; `c-buffer-is-cc-mode' still is the real mode if
1992 ;; language parameterization takes place.
1993 (eq (setq value (c-find-assignment-for-mode
1994 (setcdr source-pos backup-source-pos)
1995 fallback t name))
1996 c-lang-constants)))
1997 ;; A simple lookup with no fallback mode.
1998 (eq (setq value (c-find-assignment-for-mode
1999 (cdr source-pos) mode t name))
2000 c-lang-constants))
2001 (error
2002 "`%s' got no (prior) value in %s (might be a cyclic reference)"
2003 name mode))
2004
2005 (condition-case err
2006 (setq value (eval value))
2007 (error
2008 ;; Print a message to aid in locating the error. We don't
2009 ;; print the error itself since that will be done later by
2010 ;; some caller higher up.
2011 (message "Eval error in the `c-lang-defconst' for `%s' in %s:"
2012 sym mode)
2013 (makunbound sym)
2014 (signal (car err) (cdr err))))
2015
2016 (set sym (cons (cons mode value) (symbol-value sym)))
2017 value))))
2018
2019(defun c-find-assignment-for-mode (source-pos mode match-any-lang name)
2020 ;; Find the first assignment entry that applies to MODE at or after
2021 ;; SOURCE-POS. If MATCH-ANY-LANG is non-nil, entries with `t' as
2022 ;; the language list are considered to match, otherwise they don't.
2023 ;; On return SOURCE-POS is updated to point to the next assignment
2024 ;; after the returned one. If no assignment is found,
2025 ;; `c-lang-constants' is returned as a magic value.
2026 ;;
2027 ;; SOURCE-POS is a vector that points out a specific assignment in
2028 ;; the double alist that's used in the `source' property. The first
2029 ;; element is the position in the top alist which is indexed with
2030 ;; the source files, and the second element is the position in the
2031 ;; nested bindings alist.
2032 ;;
2033 ;; NAME is only used for error messages.
2034
2035 (catch 'found
2036 (let ((file-entry (elt source-pos 0))
2037 (assignment-entry (elt source-pos 1))
2038 assignment)
2039
2040 (while (if assignment-entry
2041 t
2042 ;; Handled the last assignment from one file, begin on the
2043 ;; next. Due to the check in `c-lang-defconst', we know
2044 ;; there's at least one.
2045 (when file-entry
2046
2047 (unless (aset source-pos 1
2048 (setq assignment-entry (cdar file-entry)))
2049 ;; The file containing the source definitions has not
2050 ;; been loaded.
2051 (let ((file (symbol-name (caar file-entry)))
2052 (c-lang-constants-under-evaluation nil))
2053 ;;(message (concat "Loading %s to get the source "
2054 ;; "value for language constant %s")
2055 ;; file name)
2056 (load file))
2057
2058 (unless (setq assignment-entry (cdar file-entry))
2059 ;; The load didn't fill in the source for the
2060 ;; constant as expected. The situation is
2061 ;; probably that a derived mode was written for
2062 ;; and compiled with another version of CC Mode,
2063 ;; and the requested constant isn't in the
2064 ;; currently loaded one. Put in a dummy
2065 ;; assignment that matches no language.
2066 (setcdr (car file-entry)
2067 (setq assignment-entry (list (list nil))))))
2068
2069 (aset source-pos 0 (setq file-entry (cdr file-entry)))
2070 t))
2071
2072 (setq assignment (car assignment-entry))
2073 (aset source-pos 1
2074 (setq assignment-entry (cdr assignment-entry)))
2075
2076 (when (if (listp (car assignment))
2077 (memq mode (car assignment))
2078 match-any-lang)
2079 (throw 'found (cdr assignment))))
2080
2081 c-lang-constants)))
0ec8351b 2082
2a15eb73
MS
2083(defun c-lang-major-mode-is (mode)
2084 ;; `c-major-mode-is' expands to a call to this function inside
2085 ;; `c-lang-defconst'. Here we also match the mode(s) against any
2086 ;; fallback modes for the one in `c-buffer-is-cc-mode', so that
2087 ;; e.g. (c-major-mode-is 'c++-mode) is true in a derived language
2088 ;; that has c++-mode as base mode.
2089 (unless (listp mode)
2090 (setq mode (list mode)))
2091 (let (match (buf-mode c-buffer-is-cc-mode))
2092 (while (if (memq buf-mode mode)
2093 (progn
2094 (setq match t)
2095 nil)
2096 (setq buf-mode (get buf-mode 'c-fallback-mode))))
2097 match))
2098
785eecbb 2099\f
130c507e 2100(cc-provide 'cc-defs)
3afbc435 2101
cbee283d 2102;; arch-tag: 3bb2629d-dd84-4ff0-ad39-584be0fe3cda
785eecbb 2103;;; cc-defs.el ends here