Fix default width not being 80, but 77.
[emacs.git] / lisp / progmodes / cc-langs.el
blob42b6f5964c2ff5437c02601e04532b62654f24b9
1 ;;; cc-langs.el --- language specific settings for CC Mode -*- coding: utf-8 -*-
3 ;; Copyright (C) 1985, 1987, 1992-2014 Free Software Foundation, Inc.
5 ;; Authors: 2002- Alan Mackenzie
6 ;; 1998- Martin Stjernholm
7 ;; 1992-1999 Barry A. Warsaw
8 ;; 1987 Dave Detlefs
9 ;; 1987 Stewart Clamen
10 ;; 1985 Richard M. Stallman
11 ;; Maintainer: bug-cc-mode@gnu.org
12 ;; Created: 22-Apr-1997 (split from cc-mode.el)
13 ;; Keywords: c languages
14 ;; Package: cc-mode
16 ;; This file is part of GNU Emacs.
18 ;; GNU Emacs is free software: you can redistribute it and/or modify
19 ;; it under the terms of the GNU General Public License as published by
20 ;; the Free Software Foundation, either version 3 of the License, or
21 ;; (at your option) any later version.
23 ;; GNU Emacs is distributed in the hope that it will be useful,
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;; GNU General Public License for more details.
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31 ;;; Commentary:
33 ;; HACKERS NOTE: There's heavy macro magic here. If you need to make
34 ;; changes in this or other files containing `c-lang-defconst' but
35 ;; don't want to read through the longer discussion below then read
36 ;; this:
38 ;; o A change in a `c-lang-defconst' or `c-lang-defvar' will not take
39 ;; effect if the file containing the mode init function (typically
40 ;; cc-mode.el) is byte compiled.
41 ;; o To make changes show in font locking you need to reevaluate the
42 ;; `*-font-lock-keywords-*' constants, which normally is easiest to
43 ;; do with M-x eval-buffer in cc-fonts.el.
44 ;; o In either case it's necessary to reinitialize the mode to make
45 ;; the changes show in an existing buffer.
47 ;;; Introduction to the language dependent variable system:
49 ;; This file contains all the language dependent variables, except
50 ;; those specific for font locking which reside in cc-fonts.el. As
51 ;; far as possible, all the differences between the languages that CC
52 ;; Mode supports are described with these variables only, so that the
53 ;; code can be shared.
55 ;; The language constant system (see cc-defs.el) is used to specify
56 ;; various language dependent info at a high level, such as lists of
57 ;; keywords, and then from them generate - at compile time - the
58 ;; various regexps and other low-level structures actually employed in
59 ;; the code at runtime.
61 ;; This system is also designed to make it easy for developers of
62 ;; derived modes to customize the source constants for new language
63 ;; variants, without having to keep up with the exact regexps etc that
64 ;; are used in each CC Mode version. It's possible from an external
65 ;; package to add a new language by inheriting an existing one, and
66 ;; then change specific constants as necessary for the new language.
67 ;; The old values for those constants (and the values of all the other
68 ;; high-level constants) may be used to build the new ones, and those
69 ;; new values will in turn be used by the low-level definitions here
70 ;; to build the runtime constants appropriately for the new language
71 ;; in the current version of CC Mode.
73 ;; Like elsewhere in CC Mode, the existence of a doc string signifies
74 ;; that a language constant is part of the external API, and that it
75 ;; therefore can be used with a high confidence that it will continue
76 ;; to work with future versions of CC Mode. Even so, it's not
77 ;; unlikely that such constants will change meaning slightly as this
78 ;; system is refined further; a certain degree of dependence on the CC
79 ;; Mode version is unavoidable when hooking in at this level. Also
80 ;; note that there's still work to be done to actually use these
81 ;; constants everywhere inside CC Mode; there are still hardcoded
82 ;; values in many places in the code.
84 ;; Separate packages will also benefit from the compile time
85 ;; evaluation; the byte compiled file(s) for them will contain the
86 ;; compiled runtime constants ready for use by (the byte compiled) CC
87 ;; Mode, and the source definitions in this file don't have to be
88 ;; loaded then. However, if a byte compiled package is loaded that
89 ;; has been compiled with a different version of CC Mode than the one
90 ;; currently loaded, then the compiled-in values will be discarded and
91 ;; new ones will be built when the mode is initialized. That will
92 ;; automatically trig a load of the file(s) containing the source
93 ;; definitions (i.e. this file and/or cc-fonts.el) if necessary.
95 ;; A small example of a derived mode is available at
96 ;; <http://cc-mode.sourceforge.net/derived-mode-ex.el>. It also
97 ;; contains some useful hints for derived mode developers.
99 ;;; Using language variables:
101 ;; The `c-lang-defvar' forms in this file comprise the language
102 ;; variables that CC Mode uses. It does not work to use
103 ;; `c-lang-defvar' anywhere else (which isn't much of a limitation
104 ;; since these variables sole purpose is to interface with the CC Mode
105 ;; core functions). The values in these `c-lang-defvar's are not
106 ;; evaluated right away but instead collected to a single large `setq'
107 ;; that can be inserted for a particular language with the
108 ;; `c-init-language-vars' macro.
110 ;; This file is only required at compile time, or when not running
111 ;; from byte compiled files, or when the source definitions for the
112 ;; language constants are requested.
114 ;;; Code:
116 ;; For Emacs < 22.2.
117 (eval-and-compile
118 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
120 (eval-when-compile
121 (let ((load-path
122 (if (and (boundp 'byte-compile-dest-file)
123 (stringp byte-compile-dest-file))
124 (cons (file-name-directory byte-compile-dest-file) load-path)
125 load-path)))
126 (load "cc-bytecomp" nil t)))
128 (cc-require 'cc-defs)
129 (cc-require 'cc-vars)
132 ;; This file is not always loaded. See note above.
133 ;; Except it is always loaded - see bug#17463.
134 ;;;(cc-external-require 'cl)
135 (require 'cl-lib)
138 ;;; Setup for the `c-lang-defvar' system.
140 (eval-and-compile
141 ;; These are used to collect the init forms from the subsequent
142 ;; `c-lang-defvar' and `c-lang-setvar'. They are used to build the
143 ;; lambda in `c-make-init-lang-vars-fun' below, and to build `defvar's
144 ;; and `make-variable-buffer-local's in cc-engine and
145 ;; `make-local-variable's in `c-init-language-vars-for'.
146 (defvar c-lang-variable-inits nil)
147 (defvar c-lang-variable-inits-tail nil)
148 (setq c-lang-variable-inits (list nil)
149 c-lang-variable-inits-tail c-lang-variable-inits)
150 (defvar c-emacs-variable-inits nil)
151 (defvar c-emacs-variable-inits-tail nil)
152 (setq c-emacs-variable-inits (list nil)
153 c-emacs-variable-inits-tail c-emacs-variable-inits))
155 (defmacro c-lang-defvar (var val &optional doc)
156 "Declares the buffer local variable VAR to get the value VAL. VAL is
157 evaluated and assigned at mode initialization. More precisely, VAL is
158 evaluated and bound to VAR when the result from the macro
159 `c-init-language-vars' is evaluated.
161 `c-lang-const' is typically used in VAL to get the right value for the
162 language being initialized, and such calls will be macro expanded to
163 the evaluated constant value at compile time."
165 (when (and (not doc)
166 (eq (car-safe val) 'c-lang-const)
167 (eq (nth 1 val) var)
168 (not (nth 2 val)))
169 ;; Special case: If there's no docstring and the value is a
170 ;; simple (c-lang-const foo) where foo is the same name as VAR
171 ;; then take the docstring from the language constant foo.
172 (setq doc (get (intern (symbol-name (nth 1 val)) c-lang-constants)
173 'variable-documentation)))
174 (or (stringp doc)
175 (setq doc nil))
177 (let ((elem (assq var (cdr c-lang-variable-inits))))
178 (if elem
179 (setcdr elem (list val doc))
180 (setcdr c-lang-variable-inits-tail (list (list var val doc)))
181 (setq c-lang-variable-inits-tail (cdr c-lang-variable-inits-tail))))
183 ;; Return the symbol, like the other def* forms.
184 `',var)
186 (defmacro c-lang-setvar (var val)
187 "Causes the variable VAR to be made buffer local and to get set to the
188 value VAL. VAL is evaluated and assigned at mode initialization. More
189 precisely, VAL is evaluated and bound to VAR when the result from the
190 macro `c-init-language-vars' is evaluated. VAR is typically a standard
191 Emacs variable like `comment-start'.
193 `c-lang-const' is typically used in VAL to get the right value for the
194 language being initialized, and such calls will be macro expanded to
195 the evaluated constant value at compile time."
196 (let ((elem (assq var (cdr c-emacs-variable-inits))))
197 (if elem
198 (setcdr elem (list val)) ; Maybe remove "list", sometime. 2006-07-19
199 (setcdr c-emacs-variable-inits-tail (list (list var val)))
200 (setq c-emacs-variable-inits-tail (cdr c-emacs-variable-inits-tail))))
202 ;; Return the symbol, like the other def* forms.
203 `',var)
205 (put 'c-lang-defvar 'lisp-indent-function 'defun)
206 ; (eval-after-load "edebug" ; 2006-07-09: def-edebug-spec is now in subr.el.
208 (def-edebug-spec c-lang-defvar
209 (&define name def-form &optional stringp)) ;)
211 ;; Suppress "might not be defined at runtime" warning.
212 ;; This file is only used when compiling other cc files.
213 ;; These are defined in cl as aliases to the cl- versions.
214 ;(declare-function delete-duplicates "cl-seq" (cl-seq &rest cl-keys) t)
215 ;(declare-function mapcan "cl-extra" (cl-func cl-seq &rest cl-rest) t)
217 (eval-and-compile
218 ;; Some helper functions used when building the language constants.
220 (defun c-filter-ops (ops opgroup-filter op-filter &optional xlate)
221 ;; Extract a subset of the operators in the list OPS in a DWIM:ey
222 ;; way. The return value is a plain list of operators:
224 ;; OPS either has the structure of `c-operators', is a single
225 ;; group in `c-operators', or is a plain list of operators.
227 ;; OPGROUP-FILTER specifies how to select the operator groups. It
228 ;; can be t to choose all groups, a list of group type symbols
229 ;; (such as 'prefix) to accept, or a function which will be called
230 ;; with the group symbol for each group and should return non-nil
231 ;; if that group is to be included.
233 ;; If XLATE is given, it's a function which is called for each
234 ;; matching operator and its return value is collected instead.
235 ;; If it returns a list, the elements are spliced directly into
236 ;; the final result, which is returned as a list with duplicates
237 ;; removed using `equal'.
239 ;; `c-mode-syntax-table' for the current mode is in effect during
240 ;; the whole procedure.
241 (unless (listp (car-safe ops))
242 (setq ops (list ops)))
243 (cond ((eq opgroup-filter t)
244 (setq opgroup-filter (lambda (opgroup) t)))
245 ((not (functionp opgroup-filter))
246 (setq opgroup-filter `(lambda (opgroup)
247 (memq opgroup ',opgroup-filter)))))
248 (cond ((eq op-filter t)
249 (setq op-filter (lambda (op) t)))
250 ((stringp op-filter)
251 (setq op-filter `(lambda (op)
252 (string-match ,op-filter op)))))
253 (unless xlate
254 (setq xlate 'identity))
255 (c-with-syntax-table (c-lang-const c-mode-syntax-table)
256 (cl-delete-duplicates
257 (cl-mapcan (lambda (opgroup)
258 (when (if (symbolp (car opgroup))
259 (when (funcall opgroup-filter (car opgroup))
260 (setq opgroup (cdr opgroup))
263 (cl-mapcan (lambda (op)
264 (when (funcall op-filter op)
265 (let ((res (funcall xlate op)))
266 (if (listp res) res (list res)))))
267 opgroup)))
268 ops)
269 :test 'equal))))
272 ;;; Various mode specific values that aren't language related.
274 (c-lang-defconst c-mode-menu
275 ;; The definition for the mode menu. The menu title is prepended to
276 ;; this before it's fed to `easy-menu-define'.
277 t `(["Comment Out Region" comment-region
278 (c-fn-region-is-active-p)]
279 ["Uncomment Region" (comment-region (region-beginning)
280 (region-end) '(4))
281 (c-fn-region-is-active-p)]
282 ["Indent Expression" c-indent-exp
283 (memq (char-after) '(?\( ?\[ ?\{))]
284 ["Indent Line or Region" c-indent-line-or-region t]
285 ["Fill Comment Paragraph" c-fill-paragraph t]
286 "----"
287 ["Backward Statement" c-beginning-of-statement t]
288 ["Forward Statement" c-end-of-statement t]
289 ,@(when (c-lang-const c-opt-cpp-prefix)
290 ;; Only applicable if there's a cpp preprocessor.
291 `(["Up Conditional" c-up-conditional t]
292 ["Backward Conditional" c-backward-conditional t]
293 ["Forward Conditional" c-forward-conditional t]
294 "----"
295 ["Macro Expand Region" c-macro-expand
296 (c-fn-region-is-active-p)]
297 ["Backslashify" c-backslash-region
298 (c-fn-region-is-active-p)]))
299 "----"
300 ("Style..."
301 ["Set Style..." c-set-style t]
302 ["Show Current Style Name" (message
303 "Style Name: %s"
304 c-indentation-style) t]
305 ["Guess Style from this Buffer" c-guess-buffer-no-install t]
306 ["Install the Last Guessed Style..." c-guess-install
307 (and c-guess-guessed-offsets-alist
308 c-guess-guessed-basic-offset) ]
309 ["View the Last Guessed Style" c-guess-view
310 (and c-guess-guessed-offsets-alist
311 c-guess-guessed-basic-offset) ])
312 "----"
313 ("Toggle..."
314 ["Syntactic indentation" c-toggle-syntactic-indentation
315 :style toggle :selected c-syntactic-indentation]
316 ["Electric mode" c-toggle-electric-state
317 :style toggle :selected c-electric-flag]
318 ["Auto newline" c-toggle-auto-newline
319 :style toggle :selected c-auto-newline]
320 ["Hungry delete" c-toggle-hungry-state
321 :style toggle :selected c-hungry-delete-key]
322 ["Subword mode" subword-mode
323 :style toggle :selected (and (boundp 'subword-mode)
324 subword-mode)])))
327 ;;; Syntax tables.
329 (defun c-populate-syntax-table (table)
330 "Populate the given syntax table as necessary for a C-like language.
331 This includes setting ' and \" as string delimiters, and setting up
332 the comment syntax to handle both line style \"//\" and block style
333 \"/*\" \"*/\" comments."
335 (modify-syntax-entry ?_ "_" table)
336 (modify-syntax-entry ?\\ "\\" table)
337 (modify-syntax-entry ?+ "." table)
338 (modify-syntax-entry ?- "." table)
339 (modify-syntax-entry ?= "." table)
340 (modify-syntax-entry ?% "." table)
341 (modify-syntax-entry ?< "." table)
342 (modify-syntax-entry ?> "." table)
343 (modify-syntax-entry ?& "." table)
344 (modify-syntax-entry ?| "." table)
345 (modify-syntax-entry ?\' "\"" table)
346 (modify-syntax-entry ?\240 "." table)
348 ;; Set up block and line oriented comments. The new C
349 ;; standard mandates both comment styles even in C, so since
350 ;; all languages now require dual comments, we make this the
351 ;; default.
352 (cond
353 ;; XEmacs
354 ((memq '8-bit c-emacs-features)
355 (modify-syntax-entry ?/ ". 1456" table)
356 (modify-syntax-entry ?* ". 23" table))
357 ;; Emacs
358 ((memq '1-bit c-emacs-features)
359 (modify-syntax-entry ?/ ". 124b" table)
360 (modify-syntax-entry ?* ". 23" table))
361 ;; incompatible
362 (t (error "CC Mode is incompatible with this version of Emacs")))
364 (modify-syntax-entry ?\n "> b" table)
365 ;; Give CR the same syntax as newline, for selective-display
366 (modify-syntax-entry ?\^m "> b" table))
368 (c-lang-defconst c-make-mode-syntax-table
369 "Functions that generates the mode specific syntax tables.
370 The syntax tables aren't stored directly since they're quite large."
371 t `(lambda ()
372 (let ((table (make-syntax-table)))
373 (c-populate-syntax-table table)
374 ;; Mode specific syntaxes.
375 ,(cond ((or (c-major-mode-is 'objc-mode) (c-major-mode-is 'java-mode))
376 ;; Let '@' be part of symbols in ObjC to cope with
377 ;; its compiler directives as single keyword tokens.
378 ;; This is then necessary since it's assumed that
379 ;; every keyword is a single symbol.
380 `(modify-syntax-entry ?@ "_" table))
381 ((c-major-mode-is 'pike-mode)
382 `(modify-syntax-entry ?@ "." table)))
383 table)))
385 (c-lang-defconst c-mode-syntax-table
386 ;; The syntax tables in evaluated form. Only used temporarily when
387 ;; the constants in this file are evaluated.
388 t (funcall (c-lang-const c-make-mode-syntax-table)))
390 (c-lang-defconst c++-make-template-syntax-table
391 ;; A variant of `c++-mode-syntax-table' that defines `<' and `>' as
392 ;; parenthesis characters. Used temporarily when template argument
393 ;; lists are parsed. Note that this encourages incorrect parsing of
394 ;; templates since they might contain normal operators that uses the
395 ;; '<' and '>' characters. Therefore this syntax table might go
396 ;; away when CC Mode handles templates correctly everywhere. WHILE
397 ;; THIS SYNTAX TABLE IS CURRENT, `c-parse-state' MUST _NOT_ BE
398 ;; CALLED!!!
399 t nil
400 (java c++) `(lambda ()
401 (let ((table (funcall ,(c-lang-const c-make-mode-syntax-table))))
402 (modify-syntax-entry ?< "(>" table)
403 (modify-syntax-entry ?> ")<" table)
404 table)))
405 (c-lang-defvar c++-template-syntax-table
406 (and (c-lang-const c++-make-template-syntax-table)
407 (funcall (c-lang-const c++-make-template-syntax-table))))
409 (c-lang-defconst c-no-parens-syntax-table
410 ;; A variant of the standard syntax table which is used to find matching
411 ;; "<"s and ">"s which have been marked as parens using syntax table
412 ;; properties. The other paren characters (e.g. "{", ")" "]") are given a
413 ;; non-paren syntax here. so that the list commands will work on "< ... >"
414 ;; even when there's unbalanced other parens inside them.
416 ;; This variable is nil for languages which don't have template stuff.
417 t `(lambda ()
418 (if (c-lang-const c-recognize-<>-arglists)
419 (let ((table (funcall ,(c-lang-const c-make-mode-syntax-table))))
420 (modify-syntax-entry ?\( "." table)
421 (modify-syntax-entry ?\) "." table)
422 (modify-syntax-entry ?\[ "." table)
423 (modify-syntax-entry ?\] "." table)
424 (modify-syntax-entry ?\{ "." table)
425 (modify-syntax-entry ?\} "." table)
426 table))))
427 (c-lang-defvar c-no-parens-syntax-table
428 (funcall (c-lang-const c-no-parens-syntax-table)))
430 (c-lang-defconst c-identifier-syntax-modifications
431 "A list that describes the modifications that should be done to the
432 mode syntax table to get a syntax table that matches all identifiers
433 and keywords as words.
435 The list is just like the one used in `font-lock-defaults': Each
436 element is a cons where the car is the character to modify and the cdr
437 the new syntax, as accepted by `modify-syntax-entry'."
438 ;; The $ character is not allowed in most languages (one exception
439 ;; is Java which allows it for legacy reasons) but we still classify
440 ;; it as an identifier character since it's often used in various
441 ;; machine generated identifiers.
442 t '((?_ . "w") (?$ . "w"))
443 (objc java) (append '((?@ . "w"))
444 (c-lang-const c-identifier-syntax-modifications))
445 awk '((?_ . "w")))
446 (c-lang-defvar c-identifier-syntax-modifications
447 (c-lang-const c-identifier-syntax-modifications))
449 (c-lang-defvar c-identifier-syntax-table
450 (let ((table (copy-syntax-table (c-mode-var "mode-syntax-table")))
451 (mods c-identifier-syntax-modifications)
452 mod)
453 (while mods
454 (setq mod (car mods)
455 mods (cdr mods))
456 (modify-syntax-entry (car mod) (cdr mod) table))
457 table)
458 "Syntax table built on the mode syntax table but additionally
459 classifies symbol constituents like '_' and '$' as word constituents,
460 so that all identifiers are recognized as words.")
462 (c-lang-defconst c-get-state-before-change-functions
463 ;; For documentation see the following c-lang-defvar of the same name.
464 ;; The value here may be a list of functions or a single function.
465 t nil
466 c++ '(c-extend-region-for-CPP
467 c-before-change-check-<>-operators
468 c-invalidate-macro-cache)
469 (c objc) '(c-extend-region-for-CPP c-invalidate-macro-cache)
470 ;; java 'c-before-change-check-<>-operators
471 awk 'c-awk-record-region-clear-NL)
472 (c-lang-defvar c-get-state-before-change-functions
473 (let ((fs (c-lang-const c-get-state-before-change-functions)))
474 (if (listp fs)
476 (list fs)))
477 "If non-nil, a list of functions called from c-before-change-hook.
478 Typically these will record enough state to allow
479 `c-before-font-lock-function' to extend the region to fontify,
480 and may do such things as removing text-properties which must be
481 recalculated.
483 These functions will be run in the order given. Each of them
484 takes 2 parameters, the BEG and END supplied to every
485 before-change function; on entry, the buffer will have been
486 widened and match-data will have been saved; point is undefined
487 on both entry and exit; the return value is ignored.
489 The functions are called even when font locking isn't enabled.
491 When the mode is initialized, the functions are called with
492 parameters \(point-min) and \(point-max).")
494 (c-lang-defconst c-before-font-lock-functions
495 ;; For documentation see the following c-lang-defvar of the same name.
496 ;; The value here may be a list of functions or a single function.
497 t 'c-change-set-fl-decl-start
498 (c c++ objc) '(c-neutralize-syntax-in-and-mark-CPP
499 c-change-set-fl-decl-start)
500 awk 'c-awk-extend-and-syntax-tablify-region)
501 (c-lang-defvar c-before-font-lock-functions
502 (let ((fs (c-lang-const c-before-font-lock-functions)))
503 (if (listp fs)
505 (list fs)))
506 "If non-nil, a list of functions called just before font locking.
507 Typically they will extend the region about to be fontified \(see
508 below) and will set `syntax-table' text properties on the region.
510 These functions will be run in the order given. Each of them
511 takes 3 parameters, the BEG, END, and OLD-LEN supplied to every
512 after-change function; point is undefined on both entry and exit;
513 on entry, the buffer will have been widened and match-data will
514 have been saved; the return value is ignored.
516 The functions may extend the region to be fontified by setting the
517 buffer local variables c-new-BEG and c-new-END.
519 The functions are called even when font locking is disabled.
521 When the mode is initialized, these functions are called with
522 parameters \(point-min), \(point-max) and <buffer size>.")
524 (c-lang-defconst c-before-context-fontification-functions
525 awk nil
526 t 'c-context-set-fl-decl-start)
527 ;; For documentation see the following c-lang-defvar of the same name.
528 ;; The value here may be a list of functions or a single function.
529 (c-lang-defvar c-before-context-fontification-functions
530 (let ((fs (c-lang-const c-before-context-fontification-functions)))
531 (if (listp fs)
533 (list fs)))
534 "If non-nil, a list of functions called just before context (or
535 other non-change) fontification is done. Typically they will
536 extend the region.
538 These functions will be run in the order given. Each of them
539 takes 2 parameters, the BEG and END of the region to be
540 fontified. Point is undefined on both entry and exit. On entry,
541 the buffer will have been widened and match-data will have been
542 saved; the return value is a cons of the adjusted
543 region, (NEW-BEG . NEW-END).")
546 ;;; Syntactic analysis ("virtual semicolons") for line-oriented languages (AWK).
547 (c-lang-defconst c-at-vsemi-p-fn
548 "Contains a function \"Is there a virtual semicolon at POS or point?\".
549 Such a function takes one optional parameter, a buffer position (defaults to
550 point), and returns nil or t. This variable contains nil for languages which
551 don't have EOL terminated statements. "
552 t nil
553 (c c++ objc) 'c-at-macro-vsemi-p
554 awk 'c-awk-at-vsemi-p)
555 (c-lang-defvar c-at-vsemi-p-fn (c-lang-const c-at-vsemi-p-fn))
557 (c-lang-defconst c-vsemi-status-unknown-p-fn
558 "Contains a function \"are we unsure whether there is a virtual semicolon on this line?\".
559 The (admittedly kludgy) purpose of such a function is to prevent an infinite
560 recursion in c-beginning-of-statement-1 when point starts at a `while' token.
561 The function MUST NOT UNDER ANY CIRCUMSTANCES call c-beginning-of-statement-1,
562 even indirectly. This variable contains nil for languages which don't have
563 EOL terminated statements."
564 t nil
565 (c c++ objc) 'c-macro-vsemi-status-unknown-p
566 awk 'c-awk-vsemi-status-unknown-p)
567 (c-lang-defvar c-vsemi-status-unknown-p-fn
568 (c-lang-const c-vsemi-status-unknown-p-fn))
571 ;;; Lexer-level syntax (identifiers, tokens etc).
573 (c-lang-defconst c-has-bitfields
574 "Whether the language has bitfield declarations."
575 t nil
576 (c c++ objc) t)
577 (c-lang-defvar c-has-bitfields (c-lang-const c-has-bitfields))
579 (c-lang-defconst c-symbol-start
580 "Regexp that matches the start of a symbol, i.e. any identifier or
581 keyword. It's unspecified how far it matches. Does not contain a \\|
582 operator at the top level."
583 t (concat "[" c-alpha "_]")
584 java (concat "[" c-alpha "_@]")
585 objc (concat "[" c-alpha "_@]")
586 pike (concat "[" c-alpha "_`]"))
587 (c-lang-defvar c-symbol-start (c-lang-const c-symbol-start))
589 (c-lang-defconst c-symbol-chars
590 "Set of characters that can be part of a symbol.
591 This is of the form that fits inside [ ] in a regexp."
592 ;; Pike note: With the backquote identifiers this would include most
593 ;; operator chars too, but they are handled with other means instead.
594 t (concat c-alnum "_$")
595 objc (concat c-alnum "_$@"))
596 (c-lang-defvar c-symbol-chars (c-lang-const c-symbol-chars))
598 (c-lang-defconst c-symbol-key
599 "Regexp matching identifiers and keywords (with submatch 0). Assumed
600 to match if `c-symbol-start' matches on the same position."
601 t (concat (c-lang-const c-symbol-start)
602 "[" (c-lang-const c-symbol-chars) "]*")
603 pike (concat
604 ;; Use the value from C here since the operator backquote is
605 ;; covered by the other alternative.
606 (c-lang-const c-symbol-key c)
607 "\\|"
608 (c-make-keywords-re nil
609 (c-lang-const c-overloadable-operators))))
610 (c-lang-defvar c-symbol-key (c-lang-const c-symbol-key))
612 (c-lang-defconst c-symbol-key-depth
613 ;; Number of regexp grouping parens in `c-symbol-key'.
614 t (regexp-opt-depth (c-lang-const c-symbol-key)))
616 (c-lang-defconst c-nonsymbol-chars
617 "This is the set of chars that can't be part of a symbol, i.e. the
618 negation of `c-symbol-chars'."
619 t (concat "^" (c-lang-const c-symbol-chars)))
620 (c-lang-defvar c-nonsymbol-chars (c-lang-const c-nonsymbol-chars))
622 (c-lang-defconst c-nonsymbol-key
623 "Regexp that matches any character that can't be part of a symbol.
624 It's usually appended to other regexps to avoid matching a prefix.
625 It's assumed to not contain any submatchers."
626 ;; The same thing regarding Unicode identifiers applies here as to
627 ;; `c-symbol-key'.
628 t (concat "[" (c-lang-const c-nonsymbol-chars) "]"))
630 (c-lang-defconst c-identifier-ops
631 "The operators that make up fully qualified identifiers. nil in
632 languages that don't have such things. See `c-operators' for a
633 description of the format. Binary operators can concatenate symbols,
634 e.g. \"::\" in \"A::B::C\". Prefix operators can precede identifiers,
635 e.g. \"~\" in \"~A::B\". Other types of operators aren't supported.
637 This value is by default merged into `c-operators'."
638 t nil
639 c++ '((prefix "~" "??-" "compl")
640 (right-assoc "::")
641 (prefix "::"))
642 ;; Java has "." to concatenate identifiers but it's also used for
643 ;; normal indexing. There's special code in the Java font lock
644 ;; rules to fontify qualified identifiers based on the standard
645 ;; naming conventions. We still define "." here to make
646 ;; `c-forward-name' move over as long names as possible which is
647 ;; necessary to e.g. handle throws clauses correctly.
648 java '((left-assoc "."))
649 idl '((left-assoc "::")
650 (prefix "::"))
651 pike '((left-assoc "::")
652 (prefix "::")
653 (left-assoc ".")))
655 (c-lang-defconst c-opt-identifier-concat-key
656 ;; Appendable adorned regexp matching the operators that join
657 ;; symbols to fully qualified identifiers, or nil in languages that
658 ;; don't have such things.
660 ;; This was a docstring constant in 5.30. It still works but is now
661 ;; considered internal - change `c-identifier-ops' instead.
662 t (let ((ops (c-filter-ops (c-lang-const c-identifier-ops)
663 '(left-assoc right-assoc)
664 t)))
665 (when ops
666 (c-make-keywords-re 'appendable ops))))
667 (c-lang-defvar c-opt-identifier-concat-key
668 (c-lang-const c-opt-identifier-concat-key)
669 'dont-doc)
671 (c-lang-defconst c-opt-identifier-concat-key-depth
672 ;; Number of regexp grouping parens in `c-opt-identifier-concat-key'.
673 t (regexp-opt-depth (c-lang-const c-opt-identifier-concat-key)))
675 (c-lang-defconst c-opt-identifier-prefix-key
676 ;; Appendable adorned regexp matching operators that might precede
677 ;; an identifier and that are part of the identifier in that case.
678 ;; nil in languages without such things.
679 t (let ((ops (c-filter-ops (c-lang-const c-identifier-ops)
680 '(prefix)
681 t)))
682 (when ops
683 (c-make-keywords-re 'appendable ops))))
685 (c-lang-defconst c-after-id-concat-ops
686 "Operators that can occur after a binary operator on `c-identifier-ops'
687 in identifiers. nil in languages that don't have such things.
689 Operators here should also have appropriate entries in `c-operators' -
690 it's not taken care of by default."
691 t nil
692 ;; '~' for destructors in C++, '*' for member pointers.
693 c++ '("~" "*")
694 ;; In Java we recognize '*' to deal with "foo.bar.*" that can occur
695 ;; in import declarations. (This will also match bogus things like
696 ;; "foo.*bar" but we don't bother.)
697 java '("*"))
699 (c-lang-defconst c-opt-after-id-concat-key
700 ;; Regexp that must match the token after
701 ;; `c-opt-identifier-concat-key' for it to be considered an
702 ;; identifier concatenation operator (which e.g. causes the
703 ;; preceding identifier to be fontified as a reference). Assumed to
704 ;; be a string if `c-opt-identifier-concat-key' is.
706 ;; This was a docstring constant in 5.30. It still works but is now
707 ;; considered internal - change `c-after-id-concat-ops' instead.
708 t (concat (c-lang-const c-symbol-start)
709 (if (c-lang-const c-after-id-concat-ops)
710 (concat "\\|" (c-make-keywords-re 'appendable
711 (c-lang-const c-after-id-concat-ops)))
712 "")))
714 (c-lang-defconst c-identifier-start
715 "Regexp that matches the start of an (optionally qualified) identifier.
716 It should also match all keywords. It's unspecified how far it
717 matches."
718 t (concat (c-lang-const c-symbol-start)
719 (if (c-lang-const c-opt-identifier-prefix-key)
720 (concat "\\|"
721 (c-lang-const c-opt-identifier-prefix-key))
722 "")))
723 (c-lang-defvar c-identifier-start (c-lang-const c-identifier-start))
725 (c-lang-defconst c-identifier-key
726 "Regexp matching a fully qualified identifier, like \"A::B::c\" in
727 C++. It does not recognize the full range of syntactic whitespace
728 between the tokens; `c-forward-name' has to be used for that. It
729 should also not match identifiers containing parenthesis groupings,
730 e.g. identifiers with template arguments such as \"A<X,Y>\" in C++."
731 ;; This regexp is more complex than strictly necessary to ensure
732 ;; that it can be matched with a minimum of backtracking.
733 t (concat (if (c-lang-const c-opt-identifier-prefix-key)
734 (concat
735 "\\("
736 (c-lang-const c-opt-identifier-prefix-key)
737 (c-lang-const c-simple-ws) "*"
738 "\\)?")
740 "\\(" (c-lang-const c-symbol-key) "\\)"
741 (if (c-lang-const c-opt-identifier-concat-key)
742 (concat
743 "\\("
744 (c-lang-const c-simple-ws) "*"
745 (c-lang-const c-opt-identifier-concat-key)
746 (c-lang-const c-simple-ws) "*"
747 (if (c-lang-const c-after-id-concat-ops)
748 (concat
749 "\\("
750 (c-make-keywords-re 'appendable
751 (c-lang-const c-after-id-concat-ops))
752 (concat
753 ;; For flexibility, consider the symbol match
754 ;; optional if we've hit a
755 ;; `c-after-id-concat-ops' operator. This is
756 ;; also necessary to handle the "*" that can
757 ;; end import declaration identifiers in Java.
758 "\\("
759 (c-lang-const c-simple-ws) "*"
760 "\\(" (c-lang-const c-symbol-key) "\\)"
761 "\\)?")
762 "\\|"
763 "\\(" (c-lang-const c-symbol-key) "\\)"
764 "\\)")
765 (concat "\\(" (c-lang-const c-symbol-key) "\\)"))
766 "\\)*")
767 "")))
768 (c-lang-defvar c-identifier-key (c-lang-const c-identifier-key))
770 (c-lang-defconst c-identifier-last-sym-match
771 ;; This was a docstring constant in 5.30 but it's no longer used.
772 ;; It's only kept to avoid breaking third party code.
774 ;; Used to identify the submatch in `c-identifier-key' that
775 ;; surrounds the last symbol in the qualified identifier. It's a
776 ;; list of submatch numbers, of which the first that has a match is
777 ;; taken. It's assumed that at least one does when the regexp has
778 ;; matched.
779 t nil)
781 (c-lang-defconst c-string-escaped-newlines
782 "Set if the language support backslash escaped newlines inside string
783 literals."
784 t nil
785 (c c++ objc pike) t)
786 (c-lang-defvar c-string-escaped-newlines
787 (c-lang-const c-string-escaped-newlines))
789 (c-lang-defconst c-multiline-string-start-char
790 "Set if the language supports multiline string literals without escaped
791 newlines. If t, all string literals are multiline. If a character,
792 only literals where the open quote is immediately preceded by that
793 literal are multiline."
794 t nil
795 pike ?#)
796 (c-lang-defvar c-multiline-string-start-char
797 (c-lang-const c-multiline-string-start-char))
799 (c-lang-defconst c-opt-cpp-symbol
800 "The symbol which starts preprocessor constructs when in the margin."
801 t "#"
802 (java awk) nil)
803 (c-lang-defvar c-opt-cpp-symbol (c-lang-const c-opt-cpp-symbol))
805 (c-lang-defconst c-opt-cpp-prefix
806 "Regexp matching the prefix of a cpp directive in the languages that
807 normally use that macro preprocessor. Tested at bol or at boi.
808 Assumed to not contain any submatches or \\| operators."
809 ;; TODO (ACM, 2005-04-01). Amend the following to recognize escaped NLs;
810 ;; amend all uses of c-opt-cpp-prefix which count regexp-depth.
811 t "\\s *#\\s *"
812 (java awk) nil)
813 (c-lang-defvar c-opt-cpp-prefix (c-lang-const c-opt-cpp-prefix))
815 (c-lang-defconst c-anchored-cpp-prefix
816 "Regexp matching the prefix of a cpp directive anchored to BOL,
817 in the languages that have a macro preprocessor."
818 t "^\\s *\\(#\\)\\s *"
819 (java awk) nil)
820 (c-lang-defvar c-anchored-cpp-prefix (c-lang-const c-anchored-cpp-prefix))
822 (c-lang-defconst c-opt-cpp-start
823 "Regexp matching the prefix of a cpp directive including the directive
824 name, or nil in languages without preprocessor support. The first
825 submatch surrounds the directive name."
826 t (if (c-lang-const c-opt-cpp-prefix)
827 (concat (c-lang-const c-opt-cpp-prefix)
828 "\\([" c-alnum "]+\\)"))
829 ;; Pike, being a scripting language, recognizes hash-bangs too.
830 pike (concat (c-lang-const c-opt-cpp-prefix)
831 "\\([" c-alnum "]+\\|!\\)"))
832 (c-lang-defvar c-opt-cpp-start (c-lang-const c-opt-cpp-start))
834 (c-lang-defconst c-cpp-message-directives
835 "List of cpp directives (without the prefix) that are followed by a
836 string message."
837 t (if (c-lang-const c-opt-cpp-prefix)
838 '("error"))
839 (c c++ objc pike) '("error" "warning"))
841 (c-lang-defconst c-cpp-include-directives
842 "List of cpp directives (without the prefix) that are followed by a
843 file name in angle brackets or quotes."
844 t (if (c-lang-const c-opt-cpp-prefix)
845 '("include"))
846 objc '("include" "import"))
848 (c-lang-defconst c-opt-cpp-macro-define
849 "Cpp directive (without the prefix) that is followed by a macro
850 definition, or nil if the language doesn't have any."
851 t (if (c-lang-const c-opt-cpp-prefix)
852 "define"))
853 (c-lang-defvar c-opt-cpp-macro-define
854 (c-lang-const c-opt-cpp-macro-define))
856 (c-lang-defconst c-opt-cpp-macro-define-start
857 ;; Regexp matching everything up to the macro body of a cpp define, or the
858 ;; end of the logical line if there is none. Submatch 1 is the name of the
859 ;; macro. Set if c-opt-cpp-macro-define is.
860 t (if (c-lang-const c-opt-cpp-macro-define)
861 (concat (c-lang-const c-opt-cpp-prefix)
862 (c-lang-const c-opt-cpp-macro-define)
863 "[ \t]+\\(\\(\\sw\\|_\\)+\\)\\(\([^\)]*\)\\)?"
864 ;; ^ ^ #defined name
865 "\\([ \t]\\|\\\\\n\\)*")))
866 (c-lang-defvar c-opt-cpp-macro-define-start
867 (c-lang-const c-opt-cpp-macro-define-start))
869 (c-lang-defconst c-opt-cpp-macro-define-id
870 ;; Regexp matching everything up to the end of the identifier defined
871 ;; by a cpp define.
872 t (if (c-lang-const c-opt-cpp-macro-define)
873 (concat (c-lang-const c-opt-cpp-prefix) ; #
874 (c-lang-const c-opt-cpp-macro-define) ; define
875 "[ \t]+\\(\\sw\\|_\\)+")))
876 (c-lang-defvar c-opt-cpp-macro-define-id
877 (c-lang-const c-opt-cpp-macro-define-id))
879 (c-lang-defconst c-cpp-expr-directives
880 "List of cpp directives (without the prefix) that are followed by an
881 expression."
882 t (if (c-lang-const c-opt-cpp-prefix)
883 '("if" "elif")))
885 (c-lang-defconst c-cpp-expr-intro-re
886 "Regexp which matches the start of a CPP directive which contains an
887 expression, or nil if there aren't any in the language."
888 t (if (c-lang-const c-cpp-expr-directives)
889 (concat
890 (c-lang-const c-opt-cpp-prefix)
891 (c-make-keywords-re t (c-lang-const c-cpp-expr-directives)))))
892 (c-lang-defvar c-cpp-expr-intro-re
893 (c-lang-const c-cpp-expr-intro-re))
895 (c-lang-defconst c-cpp-expr-functions
896 "List of functions in cpp expressions."
897 t (if (c-lang-const c-opt-cpp-prefix)
898 '("defined"))
899 pike '("defined" "efun" "constant"))
901 (c-lang-defconst c-assignment-operators
902 "List of all assignment operators."
903 t '("=" "*=" "/=" "%=" "+=" "-=" ">>=" "<<=" "&=" "^=" "|=")
904 java (append (c-lang-const c-assignment-operators)
905 '(">>>="))
906 c++ (append (c-lang-const c-assignment-operators)
907 '("and_eq" "or_eq" "xor_eq" "??!=" "??'="))
908 idl nil)
910 (c-lang-defconst c-operators
911 "List describing all operators, along with their precedence and
912 associativity. The order in the list corresponds to the precedence of
913 the operators: The operators in each element are a group with the same
914 precedence, and the group has higher precedence than the groups in all
915 following elements. The car of each element describes the type of the
916 operator group, and the cdr is a list of the operator tokens in it.
917 The operator group types are:
919 'prefix Unary prefix operators.
920 'postfix Unary postfix operators.
921 'postfix-if-paren
922 Unary postfix operators if and only if the chars have
923 parenthesis syntax.
924 'left-assoc Binary left associative operators (i.e. a+b+c means (a+b)+c).
925 'right-assoc Binary right associative operators (i.e. a=b=c means a=(b=c)).
926 'right-assoc-sequence
927 Right associative operator that constitutes of a
928 sequence of tokens that separate expressions. All the
929 tokens in the group are in this case taken as
930 describing the sequence in one such operator, and the
931 order between them is therefore significant.
933 Operators containing a character with paren syntax are taken to match
934 with a corresponding open/close paren somewhere else. A postfix
935 operator with close paren syntax is taken to end a postfix expression
936 started somewhere earlier, rather than start a new one at point. Vice
937 versa for prefix operators with open paren syntax.
939 Note that operators like \".\" and \"->\" which in language references
940 often are described as postfix operators are considered binary here,
941 since CC Mode treats every identifier as an expression."
943 ;; There's currently no code in CC Mode that exploit all the info
944 ;; in this variable; precedence, associativity etc are present as a
945 ;; preparation for future work.
947 t `(;; Preprocessor.
948 ,@(when (c-lang-const c-opt-cpp-prefix)
949 `((prefix "#"
950 ,@(when (c-major-mode-is '(c-mode c++-mode))
951 '("%:" "??=")))
952 (left-assoc "##"
953 ,@(when (c-major-mode-is '(c-mode c++-mode))
954 '("%:%:" "??=??=")))))
956 ;; Primary.
957 ,@(c-lang-const c-identifier-ops)
958 ,@(cond ((or (c-major-mode-is 'c++-mode) (c-major-mode-is 'java-mode))
959 `((postfix-if-paren "<" ">"))) ; Templates.
960 ((c-major-mode-is 'pike-mode)
961 `((prefix "global" "predef")))
962 ((c-major-mode-is 'java-mode)
963 `((prefix "super"))))
965 ;; Postfix.
966 ,@(when (c-major-mode-is 'c++-mode)
967 ;; The following need special treatment.
968 `((prefix "dynamic_cast" "static_cast"
969 "reinterpret_cast" "const_cast" "typeid")))
970 (left-assoc "."
971 ,@(unless (c-major-mode-is 'java-mode)
972 '("->")))
973 (postfix "++" "--" "[" "]" "(" ")"
974 ,@(when (c-major-mode-is '(c-mode c++-mode))
975 '("<:" ":>" "??(" "??)")))
977 ;; Unary.
978 (prefix "++" "--" "+" "-" "!" "~"
979 ,@(when (c-major-mode-is 'c++-mode) '("not" "compl"))
980 ,@(when (c-major-mode-is '(c-mode c++-mode))
981 '("*" "&" "sizeof" "??-"))
982 ,@(when (c-major-mode-is 'objc-mode)
983 '("@selector" "@protocol" "@encode"))
984 ;; The following need special treatment.
985 ,@(cond ((c-major-mode-is 'c++-mode)
986 '("new" "delete"))
987 ((c-major-mode-is 'java-mode)
988 '("new"))
989 ((c-major-mode-is 'pike-mode)
990 '("class" "lambda" "catch" "throw" "gauge")))
991 "(" ")" ; Cast.
992 ,@(when (c-major-mode-is 'pike-mode)
993 '("[" "]"))) ; Type cast.
995 ;; Member selection.
996 ,@(when (c-major-mode-is 'c++-mode)
997 `((left-assoc ".*" "->*")))
999 ;; Multiplicative.
1000 (left-assoc "*" "/" "%")
1002 ;; Additive.
1003 (left-assoc "+" "-")
1005 ;; Shift.
1006 (left-assoc "<<" ">>"
1007 ,@(when (c-major-mode-is 'java-mode)
1008 '(">>>")))
1010 ;; Relational.
1011 (left-assoc "<" ">" "<=" ">="
1012 ,@(when (c-major-mode-is 'java-mode)
1013 '("instanceof")))
1015 ;; Equality.
1016 (left-assoc "==" "!="
1017 ,@(when (c-major-mode-is 'c++-mode) '("not_eq")))
1019 ;; Bitwise and.
1020 (left-assoc "&"
1021 ,@(when (c-major-mode-is 'c++-mode) '("bitand")))
1023 ;; Bitwise exclusive or.
1024 (left-assoc "^"
1025 ,@(when (c-major-mode-is '(c-mode c++-mode))
1026 '("??'"))
1027 ,@(when (c-major-mode-is 'c++-mode) '("xor")))
1029 ;; Bitwise or.
1030 (left-assoc "|"
1031 ,@(when (c-major-mode-is '(c-mode c++-mode))
1032 '("??!"))
1033 ,@(when (c-major-mode-is 'c++-mode) '("bitor")))
1035 ;; Logical and.
1036 (left-assoc "&&"
1037 ,@(when (c-major-mode-is 'c++-mode) '("and")))
1039 ;; Logical or.
1040 (left-assoc "||"
1041 ,@(when (c-major-mode-is '(c-mode c++-mode))
1042 '("??!??!"))
1043 ,@(when (c-major-mode-is 'c++-mode) '("or")))
1045 ;; Conditional.
1046 (right-assoc-sequence "?" ":")
1048 ;; Assignment.
1049 (right-assoc ,@(c-lang-const c-assignment-operators))
1051 ;; Exception.
1052 ,@(when (c-major-mode-is 'c++-mode)
1053 '((prefix "throw")))
1055 ;; Sequence.
1056 (left-assoc ","))
1058 ;; IDL got its own definition since it has a much smaller operator
1059 ;; set than the other languages.
1060 idl `(;; Preprocessor.
1061 (prefix "#")
1062 (left-assoc "##")
1063 ;; Primary.
1064 ,@(c-lang-const c-identifier-ops)
1065 ;; Unary.
1066 (prefix "+" "-" "~")
1067 ;; Multiplicative.
1068 (left-assoc "*" "/" "%")
1069 ;; Additive.
1070 (left-assoc "+" "-")
1071 ;; Shift.
1072 (left-assoc "<<" ">>")
1073 ;; And.
1074 (left-assoc "&")
1075 ;; Xor.
1076 (left-assoc "^")
1077 ;; Or.
1078 (left-assoc "|")))
1080 (c-lang-defconst c-operator-list
1081 ;; The operators as a flat list (without duplicates).
1082 t (c-filter-ops (c-lang-const c-operators) t t))
1084 (c-lang-defconst c-overloadable-operators
1085 "List of the operators that are overloadable, in their \"identifier
1086 form\". See also `c-op-identifier-prefix'."
1087 t nil
1088 c++ '("new" "delete" ;; Can be followed by "[]" but we ignore that.
1089 "+" "-" "*" "/" "%"
1090 "^" "??'" "xor" "&" "bitand" "|" "??!" "bitor" "~" "??-" "compl"
1091 "!" "=" "<" ">" "+=" "-=" "*=" "/=" "%=" "^="
1092 "??'=" "xor_eq" "&=" "and_eq" "|=" "??!=" "or_eq"
1093 "<<" ">>" ">>=" "<<=" "==" "!=" "not_eq" "<=" ">="
1094 "&&" "and" "||" "??!??!" "or" "++" "--" "," "->*" "->"
1095 "()" "[]" "<::>" "??(??)")
1096 ;; These work like identifiers in Pike.
1097 pike '("`+" "`-" "`&" "`|" "`^" "`<<" "`>>" "`*" "`/" "`%" "`~"
1098 "`==" "`<" "`>" "`!" "`[]" "`[]=" "`->" "`->=" "`()" "``+"
1099 "``-" "``&" "``|" "``^" "``<<" "``>>" "``*" "``/" "``%"
1100 "`+="))
1102 (c-lang-defconst c-overloadable-operators-regexp
1103 ;; Regexp tested after an "operator" token in C++.
1104 t nil
1105 c++ (c-make-keywords-re nil (c-lang-const c-overloadable-operators)))
1106 (c-lang-defvar c-overloadable-operators-regexp
1107 (c-lang-const c-overloadable-operators-regexp))
1109 (c-lang-defconst c-opt-op-identifier-prefix
1110 "Regexp matching the token before the ones in
1111 `c-overloadable-operators' when operators are specified in their
1112 \"identifier form\". This typically matches \"operator\" in C++ where
1113 operator functions are specified as e.g. \"operator +\". It's nil in
1114 languages without operator functions or where the complete operator
1115 identifier is listed in `c-overloadable-operators'.
1117 This regexp is assumed to not match any non-operator identifier."
1118 t nil
1119 c++ (c-make-keywords-re t '("operator")))
1120 (c-lang-defvar c-opt-op-identifier-prefix
1121 (c-lang-const c-opt-op-identifier-prefix))
1123 ;; Note: the following alias is an old name which was a mis-spelling. It has
1124 ;; been corrected above and throughout cc-engine.el. It will be removed at
1125 ;; some release very shortly in the future. ACM, 2006-04-14.
1126 (defvaralias 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix)
1127 (make-obsolete-variable 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix
1128 "CC Mode 5.31.4, 2006-04-14")
1130 (c-lang-defconst c-other-op-syntax-tokens
1131 "List of the tokens made up of characters in the punctuation or
1132 parenthesis syntax classes that have uses other than as expression
1133 operators."
1134 t '("{" "}" "(" ")" "[" "]" ";" ":" "," "=" "/*" "*/" "//")
1135 (c c++ pike) (append '("#" "##" ; Used by cpp.
1136 "::" "...")
1137 (c-lang-const c-other-op-syntax-tokens))
1138 (c c++) (append '("*") (c-lang-const c-other-op-syntax-tokens))
1139 c++ (append '("&" "<%" "%>" "<:" ":>" "%:" "%:%:")
1140 (c-lang-const c-other-op-syntax-tokens))
1141 objc (append '("#" "##" ; Used by cpp.
1142 "+" "-") (c-lang-const c-other-op-syntax-tokens))
1143 idl (append '("#" "##") ; Used by cpp.
1144 (c-lang-const c-other-op-syntax-tokens))
1145 pike (append '("..")
1146 (c-lang-const c-other-op-syntax-tokens)
1147 (c-lang-const c-overloadable-operators))
1148 awk '("{" "}" "(" ")" "[" "]" ";" "," "=" "/"))
1150 (c-lang-defconst c-all-op-syntax-tokens
1151 ;; List of all tokens in the punctuation and parenthesis syntax
1152 ;; classes.
1153 t (cl-delete-duplicates (append (c-lang-const c-other-op-syntax-tokens)
1154 (c-lang-const c-operator-list))
1155 :test 'string-equal))
1157 (c-lang-defconst c-nonsymbol-token-char-list
1158 ;; List containing all chars not in the word, symbol or
1159 ;; syntactically irrelevant syntax classes, i.e. all punctuation,
1160 ;; parenthesis and string delimiter chars.
1161 t (c-with-syntax-table (c-lang-const c-mode-syntax-table)
1162 ;; Only go through the chars in the printable ASCII range. No
1163 ;; language so far has 8-bit or widestring operators.
1164 (let (list (char 32))
1165 (while (< char 127)
1166 (or (memq (char-syntax char) '(?w ?_ ?< ?> ?\ ))
1167 (setq list (cons (c-int-to-char char) list)))
1168 (setq char (1+ char)))
1169 list)))
1171 (c-lang-defconst c-nonsymbol-token-regexp
1172 ;; Regexp matching all tokens in the punctuation and parenthesis
1173 ;; syntax classes. Note that this also matches ".", which can start
1174 ;; a float.
1175 t (c-make-keywords-re nil
1176 (c-filter-ops (c-lang-const c-all-op-syntax-tokens)
1178 "\\`\\(\\s.\\|\\s\(\\|\\s\)\\)+\\'")))
1179 (c-lang-defvar c-nonsymbol-token-regexp
1180 (c-lang-const c-nonsymbol-token-regexp))
1182 (c-lang-defconst c-assignment-op-regexp
1183 ;; Regexp matching all assignment operators and only them. The
1184 ;; beginning of the first submatch is used to detect the end of the
1185 ;; token, along with the end of the whole match.
1186 t (if (c-lang-const c-assignment-operators)
1187 (concat
1188 ;; Need special case for "=" since it's a prefix of "==".
1189 "=\\([^=]\\|$\\)"
1190 "\\|"
1191 (c-make-keywords-re nil
1192 (set-difference (c-lang-const c-assignment-operators)
1193 '("=")
1194 :test 'string-equal)))
1195 "\\<\\>"))
1196 (c-lang-defvar c-assignment-op-regexp
1197 (c-lang-const c-assignment-op-regexp))
1199 (c-lang-defconst c-<>-multichar-token-regexp
1200 ;; Regexp matching all tokens containing "<" or ">" which are longer
1201 ;; than one char.
1202 t (c-make-keywords-re nil
1203 (c-filter-ops (c-lang-const c-all-op-syntax-tokens)
1205 ".[<>]\\|[<>].")))
1206 (c-lang-defvar c-<>-multichar-token-regexp
1207 (c-lang-const c-<>-multichar-token-regexp))
1209 (c-lang-defconst c-<-op-cont-regexp
1210 ;; Regexp matching the second and subsequent characters of all
1211 ;; multicharacter tokens that begin with "<".
1212 t (c-make-keywords-re nil
1213 (c-filter-ops (c-lang-const c-all-op-syntax-tokens)
1215 "\\`<."
1216 (lambda (op) (substring op 1)))))
1218 (c-lang-defvar c-<-op-cont-regexp (c-lang-const c-<-op-cont-regexp))
1220 (c-lang-defconst c->-op-cont-regexp
1221 ;; Regexp matching the second and subsequent characters of all
1222 ;; multicharacter tokens that begin with ">".
1223 t (c-make-keywords-re nil
1224 (c-filter-ops (c-lang-const c-all-op-syntax-tokens)
1226 "\\`>."
1227 (lambda (op) (substring op 1))))
1228 java (c-make-keywords-re nil
1229 (c-filter-ops (c-lang-const c-all-op-syntax-tokens)
1231 "\\`>[^>]\\|\\`>>[^>]"
1232 (lambda (op) (substring op 1)))))
1234 (c-lang-defvar c->-op-cont-regexp (c-lang-const c->-op-cont-regexp))
1236 (c-lang-defconst c-stmt-delim-chars
1237 ;; The characters that should be considered to bound statements. To
1238 ;; optimize `c-crosses-statement-barrier-p' somewhat, it's assumed to
1239 ;; begin with "^" to negate the set. If ? : operators should be
1240 ;; detected then the string must end with "?:".
1241 t "^;{}?:")
1242 (c-lang-defvar c-stmt-delim-chars (c-lang-const c-stmt-delim-chars))
1244 (c-lang-defconst c-stmt-delim-chars-with-comma
1245 ;; Variant of `c-stmt-delim-chars' that additionally contains ','.
1246 t "^;,{}?:")
1247 (c-lang-defvar c-stmt-delim-chars-with-comma
1248 (c-lang-const c-stmt-delim-chars-with-comma))
1251 ;;; Syntactic whitespace.
1253 (c-lang-defconst c-simple-ws
1254 "Regexp matching an ordinary whitespace character.
1255 Does not contain a \\| operator at the top level."
1256 ;; "\\s " is not enough since it doesn't match line breaks.
1257 t "\\(\\s \\|[\n\r]\\)")
1259 (c-lang-defconst c-simple-ws-depth
1260 ;; Number of regexp grouping parens in `c-simple-ws'.
1261 t (regexp-opt-depth (c-lang-const c-simple-ws)))
1263 (c-lang-defconst c-line-comment-starter
1264 "String that starts line comments, or nil if such don't exist.
1265 Line comments are always terminated by newlines. At least one of
1266 `c-block-comment-starter' and this one is assumed to be set.
1268 Note that it's currently not enough to set this to support a new
1269 comment style. Other stuff like the syntax table must also be set up
1270 properly."
1271 t "//"
1272 awk "#")
1273 (c-lang-defvar c-line-comment-starter (c-lang-const c-line-comment-starter))
1275 (c-lang-defconst c-block-comment-starter
1276 "String that starts block comments, or nil if such don't exist.
1277 Block comments are ended by `c-block-comment-ender', which is assumed
1278 to be set if this is. At least one of `c-line-comment-starter' and
1279 this one is assumed to be set.
1281 Note that it's currently not enough to set this to support a new
1282 comment style. Other stuff like the syntax table must also be set up
1283 properly."
1284 t "/*"
1285 awk nil)
1287 (c-lang-defconst c-block-comment-ender
1288 "String that ends block comments, or nil if such don't exist.
1290 Note that it's currently not enough to set this to support a new
1291 comment style. Other stuff like the syntax table must also be set up
1292 properly."
1293 t "*/"
1294 awk nil)
1296 (c-lang-defconst c-comment-start-regexp
1297 ;; Regexp to match the start of any type of comment.
1298 t (let ((re (c-make-keywords-re nil
1299 (list (c-lang-const c-line-comment-starter)
1300 (c-lang-const c-block-comment-starter)))))
1301 (if (memq 'gen-comment-delim c-emacs-features)
1302 (concat re "\\|\\s!")
1303 re)))
1304 (c-lang-defvar c-comment-start-regexp (c-lang-const c-comment-start-regexp))
1306 (c-lang-defconst c-block-comment-start-regexp
1307 ;; Regexp which matches the start of a block comment (if such exists in the
1308 ;; language)
1309 t (if (c-lang-const c-block-comment-starter)
1310 (regexp-quote (c-lang-const c-block-comment-starter))
1311 "\\<\\>"))
1312 (c-lang-defvar c-block-comment-start-regexp
1313 (c-lang-const c-block-comment-start-regexp))
1315 (c-lang-defconst c-line-comment-start-regexp
1316 ;; Regexp which matches the start of a line comment (if such exists in the
1317 ;; language; it does in all 7 CC Mode languages).
1318 t (if (c-lang-const c-line-comment-starter)
1319 (regexp-quote (c-lang-const c-line-comment-starter))
1320 "\\<\\>"))
1321 (c-lang-defvar c-line-comment-start-regexp
1322 (c-lang-const c-line-comment-start-regexp))
1324 (c-lang-defconst c-literal-start-regexp
1325 ;; Regexp to match the start of comments and string literals.
1326 t (concat (c-lang-const c-comment-start-regexp)
1327 "\\|"
1328 (if (memq 'gen-string-delim c-emacs-features)
1329 "\"|"
1330 "\"")))
1331 (c-lang-defvar c-literal-start-regexp (c-lang-const c-literal-start-regexp))
1333 (c-lang-defconst c-doc-comment-start-regexp
1334 "Regexp to match the start of documentation comments."
1335 t "\\<\\>"
1336 ;; From font-lock.el: `doxygen' uses /*! while others use /**.
1337 (c c++ objc) "/\\*[*!]"
1338 java "/\\*\\*"
1339 pike "/[/*]!")
1340 (c-lang-defvar c-doc-comment-start-regexp
1341 (c-lang-const c-doc-comment-start-regexp))
1343 (c-lang-defconst comment-start
1344 "String that starts comments inserted with M-; etc.
1345 `comment-start' is initialized from this."
1346 ;; Default: Prefer line comments to block comments, and pad with a space.
1347 t (concat (or (c-lang-const c-line-comment-starter)
1348 (c-lang-const c-block-comment-starter))
1349 " ")
1350 ;; In C we still default to the block comment style since line
1351 ;; comments aren't entirely portable.
1352 c "/* ")
1353 (c-lang-setvar comment-start (c-lang-const comment-start))
1355 (c-lang-defconst comment-end
1356 "String that ends comments inserted with M-; etc.
1357 `comment-end' is initialized from this."
1358 ;; Default: Use block comment style if comment-start uses block
1359 ;; comments, and pad with a space in that case.
1360 t (if (string-match (concat "\\`\\("
1361 (c-lang-const c-block-comment-start-regexp)
1362 "\\)")
1363 (c-lang-const comment-start))
1364 (concat " " (c-lang-const c-block-comment-ender))
1365 ""))
1366 (c-lang-setvar comment-end (c-lang-const comment-end))
1368 (c-lang-defconst comment-start-skip
1369 "Regexp to match the start of a comment plus everything up to its body.
1370 `comment-start-skip' is initialized from this."
1371 ;; Default: Allow the last char of the comment starter(s) to be
1372 ;; repeated, then allow any amount of horizontal whitespace.
1373 t (concat "\\("
1374 (c-concat-separated
1375 (mapcar (lambda (cs)
1376 (when cs
1377 (concat (regexp-quote cs) "+")))
1378 (list (c-lang-const c-line-comment-starter)
1379 (c-lang-const c-block-comment-starter)))
1380 "\\|")
1381 "\\)\\s *"))
1382 (c-lang-setvar comment-start-skip (c-lang-const comment-start-skip))
1384 (c-lang-defconst c-syntactic-ws-start
1385 ;; Regexp matching any sequence that can start syntactic whitespace.
1386 ;; The only uncertain case is '#' when there are cpp directives.
1387 t (concat "\\s \\|"
1388 (c-make-keywords-re nil
1389 (append (list (c-lang-const c-line-comment-starter)
1390 (c-lang-const c-block-comment-starter)
1391 (when (c-lang-const c-opt-cpp-prefix)
1392 "#"))
1393 '("\n" "\r")))
1394 "\\|\\\\[\n\r]"
1395 (when (memq 'gen-comment-delim c-emacs-features)
1396 "\\|\\s!")))
1397 (c-lang-defvar c-syntactic-ws-start (c-lang-const c-syntactic-ws-start))
1399 (c-lang-defconst c-syntactic-ws-end
1400 ;; Regexp matching any single character that might end syntactic whitespace.
1401 t (concat "\\s \\|"
1402 (c-make-keywords-re nil
1403 (append (when (c-lang-const c-block-comment-ender)
1404 (list
1405 (string
1406 (elt (c-lang-const c-block-comment-ender)
1407 (1- (length
1408 (c-lang-const c-block-comment-ender)))))))
1409 '("\n" "\r")))
1410 (when (memq 'gen-comment-delim c-emacs-features)
1411 "\\|\\s!")))
1412 (c-lang-defvar c-syntactic-ws-end (c-lang-const c-syntactic-ws-end))
1414 (c-lang-defconst c-unterminated-block-comment-regexp
1415 ;; Regexp matching an unterminated block comment that doesn't
1416 ;; contain line breaks, or nil in languages without block comments.
1417 ;; Does not contain a \| operator at the top level.
1418 t (when (c-lang-const c-block-comment-starter)
1419 (concat
1420 (regexp-quote (c-lang-const c-block-comment-starter))
1421 ;; It's messy to cook together a regexp that matches anything
1422 ;; but c-block-comment-ender.
1423 (let ((end (c-lang-const c-block-comment-ender)))
1424 (cond ((= (length end) 1)
1425 (concat "[^" end "\n\r]*"))
1426 ((= (length end) 2)
1427 (concat "[^" (substring end 0 1) "\n\r]*"
1428 "\\("
1429 (regexp-quote (substring end 0 1)) "+"
1430 "[^"
1431 ;; The quoting rules inside char classes are silly. :P
1432 (cond ((= (elt end 0) (elt end 1))
1433 (concat (substring end 0 1) "\n\r"))
1434 ((= (elt end 1) ?\])
1435 (concat (substring end 1 2) "\n\r"
1436 (substring end 0 1)))
1438 (concat (substring end 0 1) "\n\r"
1439 (substring end 1 2))))
1441 "[^" (substring end 0 1) "\n\r]*"
1442 "\\)*"))
1444 (error "Can't handle a block comment ender of length %s"
1445 (length end))))))))
1447 (c-lang-defconst c-block-comment-regexp
1448 ;; Regexp matching a block comment that doesn't contain line breaks,
1449 ;; or nil in languages without block comments. The reason we don't
1450 ;; allow line breaks is to avoid going very far and risk running out
1451 ;; of regexp stack; this regexp is intended to handle only short
1452 ;; comments that might be put in the middle of limited constructs
1453 ;; like declarations. Does not contain a \| operator at the top
1454 ;; level.
1455 t (when (c-lang-const c-unterminated-block-comment-regexp)
1456 (concat
1457 (c-lang-const c-unterminated-block-comment-regexp)
1458 (let ((end (c-lang-const c-block-comment-ender)))
1459 (cond ((= (length end) 1)
1460 (regexp-quote end))
1461 ((= (length end) 2)
1462 (concat (regexp-quote (substring end 0 1)) "+"
1463 (regexp-quote (substring end 1 2))))
1465 (error "Can't handle a block comment ender of length %s"
1466 (length end))))))))
1468 (c-lang-defconst c-nonwhite-syntactic-ws
1469 ;; Regexp matching a piece of syntactic whitespace that isn't a
1470 ;; sequence of simple whitespace characters. As opposed to
1471 ;; `c-(forward|backward)-syntactic-ws', this doesn't regard cpp
1472 ;; directives as syntactic whitespace.
1473 t (c-concat-separated
1474 (list (when (c-lang-const c-line-comment-starter)
1475 (concat (regexp-quote (c-lang-const c-line-comment-starter))
1476 "[^\n\r]*[\n\r]"))
1477 (c-lang-const c-block-comment-regexp)
1478 "\\\\[\n\r]"
1479 (when (memq 'gen-comment-delim c-emacs-features)
1480 "\\s!\\S!*\\s!"))
1481 "\\|"))
1483 (c-lang-defconst c-syntactic-ws
1484 ;; Regexp matching syntactic whitespace, including possibly the
1485 ;; empty string. As opposed to `c-(forward|backward)-syntactic-ws',
1486 ;; this doesn't regard cpp directives as syntactic whitespace. Does
1487 ;; not contain a \| operator at the top level.
1488 t (concat (c-lang-const c-simple-ws) "*"
1489 "\\("
1490 (concat "\\(" (c-lang-const c-nonwhite-syntactic-ws) "\\)"
1491 (c-lang-const c-simple-ws) "*")
1492 "\\)*"))
1494 (c-lang-defconst c-syntactic-ws-depth
1495 ;; Number of regexp grouping parens in `c-syntactic-ws'.
1496 t (regexp-opt-depth (c-lang-const c-syntactic-ws)))
1498 (c-lang-defconst c-nonempty-syntactic-ws
1499 ;; Regexp matching syntactic whitespace, which is at least one
1500 ;; character long. As opposed to `c-(forward|backward)-syntactic-ws',
1501 ;; this doesn't regard cpp directives as syntactic whitespace. Does
1502 ;; not contain a \| operator at the top level.
1503 t (concat "\\("
1504 (c-lang-const c-simple-ws)
1505 "\\|"
1506 (c-lang-const c-nonwhite-syntactic-ws)
1507 "\\)+"))
1509 (c-lang-defconst c-nonempty-syntactic-ws-depth
1510 ;; Number of regexp grouping parens in `c-nonempty-syntactic-ws'.
1511 t (regexp-opt-depth (c-lang-const c-nonempty-syntactic-ws)))
1513 (c-lang-defconst c-single-line-syntactic-ws
1514 ;; Regexp matching syntactic whitespace without any line breaks. As
1515 ;; opposed to `c-(forward|backward)-syntactic-ws', this doesn't
1516 ;; regard cpp directives as syntactic whitespace. Does not contain
1517 ;; a \| operator at the top level.
1518 t (if (c-lang-const c-block-comment-regexp)
1519 (concat "\\s *\\("
1520 (c-lang-const c-block-comment-regexp)
1521 "\\s *\\)*")
1522 "\\s *"))
1524 (c-lang-defconst c-single-line-syntactic-ws-depth
1525 ;; Number of regexp grouping parens in `c-single-line-syntactic-ws'.
1526 t (regexp-opt-depth (c-lang-const c-single-line-syntactic-ws)))
1528 (c-lang-defconst c-syntactic-eol
1529 ;; Regexp that matches when there is no syntactically significant
1530 ;; text before eol. Macros are regarded as syntactically
1531 ;; significant text here.
1532 t (concat (c-lang-const c-single-line-syntactic-ws)
1533 ;; Match eol (possibly inside a block comment or preceded
1534 ;; by a line continuation backslash), or the beginning of a
1535 ;; line comment. Note: This has to be modified for awk
1536 ;; where line comments start with '#'.
1537 "\\("
1538 (c-concat-separated
1539 (list (when (c-lang-const c-line-comment-starter)
1540 (regexp-quote (c-lang-const c-line-comment-starter)))
1541 (when (c-lang-const c-unterminated-block-comment-regexp)
1542 (concat (c-lang-const c-unterminated-block-comment-regexp)
1543 "$"))
1544 "\\\\$"
1545 "$")
1546 "\\|")
1547 "\\)"))
1548 (c-lang-defvar c-syntactic-eol (c-lang-const c-syntactic-eol))
1551 ;;; Defun functions
1553 ;; The Emacs variables beginning-of-defun-function and
1554 ;; end-of-defun-function will be set so that commands like
1555 ;; `mark-defun' and `narrow-to-defun' work right. The key sequences
1556 ;; C-M-a and C-M-e are, however, bound directly to the CC Mode
1557 ;; functions, allowing optimization for large n.
1558 (c-lang-defconst beginning-of-defun-function
1559 "Function to which beginning-of-defun-function will be set."
1560 t 'c-beginning-of-defun
1561 awk 'c-awk-beginning-of-defun)
1562 (c-lang-setvar beginning-of-defun-function
1563 (c-lang-const beginning-of-defun-function))
1565 (c-lang-defconst end-of-defun-function
1566 "Function to which end-of-defun-function will be set."
1567 t 'c-end-of-defun
1568 awk 'c-awk-end-of-defun)
1569 (c-lang-setvar end-of-defun-function (c-lang-const end-of-defun-function))
1571 ;;; In-comment text handling.
1573 (c-lang-defconst c-paragraph-start
1574 "Regexp to append to `paragraph-start'."
1575 t "$"
1576 java "\\(@[a-zA-Z]+\\>\\|$\\)" ; For Javadoc.
1577 pike "\\(@[a-zA-Z_-]+\\>\\([^{]\\|$\\)\\|$\\)") ; For Pike refdoc.
1578 (c-lang-defvar c-paragraph-start (c-lang-const c-paragraph-start))
1580 (c-lang-defconst c-paragraph-separate
1581 "Regexp to append to `paragraph-separate'."
1582 t "$"
1583 pike (c-lang-const c-paragraph-start))
1584 (c-lang-defvar c-paragraph-separate (c-lang-const c-paragraph-separate))
1587 ;;; Keyword lists.
1589 ;; Note: All and only all language constants containing keyword lists
1590 ;; should end with "-kwds"; they're automatically collected into the
1591 ;; `c-kwds-lang-consts' list below and used to build `c-keywords' etc.
1593 (c-lang-defconst c-primitive-type-kwds
1594 "Primitive type keywords. As opposed to the other keyword lists, the
1595 keywords listed here are fontified with the type face instead of the
1596 keyword face.
1598 If any of these also are on `c-type-list-kwds', `c-ref-list-kwds',
1599 `c-colon-type-list-kwds', `c-paren-nontype-kwds', `c-paren-type-kwds',
1600 `c-<>-type-kwds', or `c-<>-arglist-kwds' then the associated clauses
1601 will be handled.
1603 Do not try to modify this list for end user customizations; the
1604 `*-font-lock-extra-types' variable, where `*' is the mode prefix, is
1605 the appropriate place for that."
1606 t '("char" "double" "float" "int" "long" "short" "signed"
1607 "unsigned" "void")
1608 c (append
1609 '("_Bool" "_Complex" "_Imaginary") ; Conditionally defined in C99.
1610 (c-lang-const c-primitive-type-kwds))
1611 c++ (append
1612 '("bool" "wchar_t")
1613 (c-lang-const c-primitive-type-kwds))
1614 ;; Objective-C extends C, but probably not the new stuff in C99.
1615 objc (append
1616 '("id" "Class" "SEL" "IMP" "BOOL")
1617 (c-lang-const c-primitive-type-kwds))
1618 java '("boolean" "byte" "char" "double" "float" "int" "long" "short" "void")
1619 idl '("Object" "ValueBase" "any" "boolean" "char" "double" "fixed" "float"
1620 "long" "octet" "sequence" "short" "string" "void" "wchar" "wstring"
1621 ;; In CORBA PSDL:
1622 "ref"
1623 ;; The following can't really end a type, but we have to specify them
1624 ;; here due to the assumption in `c-primitive-type-prefix-kwds'. It
1625 ;; doesn't matter that much.
1626 "unsigned" "strong")
1627 pike '(;; this_program isn't really a keyword, but it's practically
1628 ;; used as a builtin type.
1629 "array" "float" "function" "int" "mapping" "mixed" "multiset"
1630 "object" "program" "string" "this_program" "void"))
1632 (c-lang-defconst c-primitive-type-key
1633 ;; An adorned regexp that matches `c-primitive-type-kwds'.
1634 t (c-make-keywords-re t (c-lang-const c-primitive-type-kwds)))
1635 (c-lang-defvar c-primitive-type-key (c-lang-const c-primitive-type-key))
1637 (c-lang-defconst c-primitive-type-prefix-kwds
1638 "Keywords that might act as prefixes for primitive types. Assumed to
1639 be a subset of `c-primitive-type-kwds'."
1640 t nil
1641 (c c++) '("long" "short" "signed" "unsigned")
1642 idl '("long" "unsigned"
1643 ;; In CORBA PSDL:
1644 "strong"))
1646 (c-lang-defconst c-typedef-kwds
1647 "Prefix keyword\(s\) like \"typedef\" which make a type declaration out
1648 of a variable declaration."
1649 t '("typedef")
1650 (awk idl java) nil)
1652 (c-lang-defconst c-typedef-key
1653 ;; Adorned regexp matching `c-typedef-kwds'.
1654 t (c-make-keywords-re t (c-lang-const c-typedef-kwds)))
1655 (c-lang-defvar c-typedef-key (c-lang-const c-typedef-key))
1657 (c-lang-defconst c-type-prefix-kwds
1658 "Keywords where the following name - if any - is a type name, and
1659 where the keyword together with the symbol works as a type in
1660 declarations.
1662 Note that an alternative if the second part doesn't hold is
1663 `c-type-list-kwds'. Keywords on this list are typically also present
1664 on one of the `*-decl-kwds' lists."
1665 t nil
1666 c '("struct" "union" "enum")
1667 c++ (append '("class" "typename")
1668 (c-lang-const c-type-prefix-kwds c)))
1670 (c-lang-defconst c-type-prefix-key
1671 ;; Adorned regexp matching `c-type-prefix-kwds'.
1672 t (c-make-keywords-re t (c-lang-const c-type-prefix-kwds)))
1673 (c-lang-defvar c-type-prefix-key (c-lang-const c-type-prefix-key))
1675 (c-lang-defconst c-type-modifier-kwds
1676 "Type modifier keywords. These can occur almost anywhere in types
1677 but they don't build a type of themselves. Unlike the keywords on
1678 `c-primitive-type-kwds', they are fontified with the keyword face and
1679 not the type face."
1680 t nil
1681 c '("const" "restrict" "volatile")
1682 c++ '("const" "volatile" "throw")
1683 objc '("const" "volatile"))
1685 (c-lang-defconst c-opt-type-modifier-key
1686 ;; Adorned regexp matching `c-type-modifier-kwds', or nil in
1687 ;; languages without such keywords.
1688 t (and (c-lang-const c-type-modifier-kwds)
1689 (c-make-keywords-re t (c-lang-const c-type-modifier-kwds))))
1690 (c-lang-defvar c-opt-type-modifier-key (c-lang-const c-opt-type-modifier-key))
1692 (c-lang-defconst c-opt-type-component-key
1693 ;; An adorned regexp that matches `c-primitive-type-prefix-kwds' and
1694 ;; `c-type-modifier-kwds', or nil in languages without any of them.
1695 t (and (or (c-lang-const c-primitive-type-prefix-kwds)
1696 (c-lang-const c-type-modifier-kwds))
1697 (c-make-keywords-re t
1698 (append (c-lang-const c-primitive-type-prefix-kwds)
1699 (c-lang-const c-type-modifier-kwds)))))
1700 (c-lang-defvar c-opt-type-component-key
1701 (c-lang-const c-opt-type-component-key))
1703 (c-lang-defconst c-type-start-kwds
1704 ;; All keywords that can start a type (i.e. are either a type prefix
1705 ;; or a complete type).
1706 t (cl-delete-duplicates (append (c-lang-const c-primitive-type-kwds)
1707 (c-lang-const c-type-prefix-kwds)
1708 (c-lang-const c-type-modifier-kwds))
1709 :test 'string-equal))
1711 (c-lang-defconst c-class-decl-kwds
1712 "Keywords introducing declarations where the following block (if any)
1713 contains another declaration level that should be considered a class.
1715 If any of these also are on `c-type-list-kwds', `c-ref-list-kwds',
1716 `c-colon-type-list-kwds', `c-paren-nontype-kwds', `c-paren-type-kwds',
1717 `c-<>-type-kwds', or `c-<>-arglist-kwds' then the associated clauses
1718 will be handled.
1720 Note that presence on this list does not automatically treat the
1721 following identifier as a type; the keyword must also be present on
1722 `c-type-prefix-kwds' or `c-type-list-kwds' to accomplish that."
1723 t nil
1724 c '("struct" "union")
1725 c++ '("class" "struct" "union")
1726 objc '("struct" "union"
1727 "@interface" "@implementation" "@protocol")
1728 java '("class" "@interface" "interface")
1729 idl '("component" "eventtype" "exception" "home" "interface" "struct"
1730 "union" "valuetype"
1731 ;; In CORBA PSDL:
1732 "storagehome" "storagetype"
1733 ;; In CORBA CIDL:
1734 "catalog" "executor" "manages" "segment")
1735 pike '("class"))
1737 (c-lang-defconst c-class-key
1738 ;; Regexp matching the start of a class.
1739 t (c-make-keywords-re t (c-lang-const c-class-decl-kwds)))
1740 (c-lang-defvar c-class-key (c-lang-const c-class-key))
1742 (c-lang-defconst c-brace-list-decl-kwds
1743 "Keywords introducing declarations where the following block (if
1744 any) is a brace list.
1746 If any of these also are on `c-type-list-kwds', `c-ref-list-kwds',
1747 `c-colon-type-list-kwds', `c-paren-nontype-kwds', `c-paren-type-kwds',
1748 `c-<>-type-kwds', or `c-<>-arglist-kwds' then the associated clauses
1749 will be handled."
1750 t '("enum")
1751 (awk) nil)
1753 (c-lang-defconst c-brace-list-key
1754 ;; Regexp matching the start of declarations where the following
1755 ;; block is a brace list.
1756 t (c-make-keywords-re t (c-lang-const c-brace-list-decl-kwds)))
1757 (c-lang-defvar c-brace-list-key (c-lang-const c-brace-list-key))
1759 (c-lang-defconst c-other-block-decl-kwds
1760 "Keywords where the following block (if any) contains another
1761 declaration level that should not be considered a class. For every
1762 keyword here, CC Mode will add a set of special syntactic symbols for
1763 those blocks. E.g. if the keyword is \"foo\" then there will be
1764 `foo-open', `foo-close', and `infoo' symbols.
1766 The intention is that this category should be used for block
1767 constructs that aren't related to object orientation concepts like
1768 classes (which thus also include e.g. interfaces, templates,
1769 contracts, structs, etc). The more pragmatic distinction is that
1770 while most want some indentation inside classes, it's fairly common
1771 that they don't want it in some of these constructs, so it should be
1772 simple to configure that differently from classes. See also
1773 `c-class-decl-kwds'.
1775 If any of these also are on `c-type-list-kwds', `c-ref-list-kwds',
1776 `c-colon-type-list-kwds', `c-paren-nontype-kwds', `c-paren-type-kwds',
1777 `c-<>-type-kwds', or `c-<>-arglist-kwds' then the associated clauses
1778 will be handled."
1779 t nil
1780 (c objc) '("extern")
1781 c++ '("namespace" "extern")
1782 idl '("module"
1783 ;; In CORBA CIDL:
1784 "composition"))
1786 (c-lang-defconst c-other-decl-block-key
1787 ;; Regexp matching the start of blocks besides classes that contain
1788 ;; another declaration level.
1789 t (c-make-keywords-re t (c-lang-const c-other-block-decl-kwds)))
1790 (c-lang-defvar c-other-decl-block-key (c-lang-const c-other-decl-block-key))
1792 (c-lang-defvar c-other-decl-block-key-in-symbols-alist
1793 (mapcar
1794 (lambda (elt)
1795 (cons elt
1796 (if (string= elt "extern")
1797 'inextern-lang
1798 (intern (concat "in" elt)))))
1799 (c-lang-const c-other-block-decl-kwds))
1800 "Alist associating keywords in c-other-decl-block-decl-kwds with
1801 their matching \"in\" syntactic symbols.")
1803 (c-lang-defconst c-typedef-decl-kwds
1804 "Keywords introducing declarations where the identifier(s) being
1805 declared are types.
1807 If any of these also are on `c-type-list-kwds', `c-ref-list-kwds',
1808 `c-colon-type-list-kwds', `c-paren-nontype-kwds', `c-paren-type-kwds',
1809 `c-<>-type-kwds', or `c-<>-arglist-kwds' then the associated clauses
1810 will be handled."
1811 ;; Default to `c-class-decl-kwds' and `c-brace-list-decl-kwds'
1812 ;; (since e.g. "Foo" is a type that's being defined in "class Foo
1813 ;; {...}").
1814 t (append (c-lang-const c-class-decl-kwds)
1815 (c-lang-const c-brace-list-decl-kwds))
1816 ;; Languages that have a "typedef" construct.
1817 (c c++ objc idl pike) (append (c-lang-const c-typedef-decl-kwds)
1818 '("typedef"))
1819 ;; Unlike most other languages, exception names are not handled as
1820 ;; types in IDL since they only can occur in "raises" specs.
1821 idl (delete "exception" (append (c-lang-const c-typedef-decl-kwds) nil)))
1823 (c-lang-defconst c-typedef-decl-key
1824 t (c-make-keywords-re t (c-lang-const c-typedef-decl-kwds)))
1825 (c-lang-defvar c-typedef-decl-key (c-lang-const c-typedef-decl-key))
1827 (c-lang-defconst c-typeless-decl-kwds
1828 "Keywords introducing declarations where the \(first) identifier
1829 \(declarator) follows directly after the keyword, without any type.
1831 If any of these also are on `c-type-list-kwds', `c-ref-list-kwds',
1832 `c-colon-type-list-kwds', `c-paren-nontype-kwds', `c-paren-type-kwds',
1833 `c-<>-type-kwds', or `c-<>-arglist-kwds' then the associated clauses
1834 will be handled."
1835 ;; Default to `c-class-decl-kwds' and `c-brace-list-decl-kwds'
1836 ;; (since e.g. "Foo" is the identifier being defined in "class Foo
1837 ;; {...}").
1838 t (append (c-lang-const c-class-decl-kwds)
1839 (c-lang-const c-brace-list-decl-kwds))
1840 ;; Note: "manages" for CORBA CIDL clashes with its presence on
1841 ;; `c-type-list-kwds' for IDL.
1842 idl (append (c-lang-const c-typeless-decl-kwds)
1843 '("factory" "finder" "native"
1844 ;; In CORBA PSDL:
1845 "key" "stores"
1846 ;; In CORBA CIDL:
1847 "facet"))
1848 pike (append (c-lang-const c-class-decl-kwds)
1849 '("constant")))
1851 (c-lang-defconst c-modifier-kwds
1852 "Keywords that can prefix normal declarations of identifiers
1853 \(and typically act as flags). Things like argument declarations
1854 inside function headers are also considered declarations in this
1855 sense.
1857 If any of these also are on `c-type-list-kwds', `c-ref-list-kwds',
1858 `c-colon-type-list-kwds', `c-paren-nontype-kwds', `c-paren-type-kwds',
1859 `c-<>-type-kwds', or `c-<>-arglist-kwds' then the associated clauses
1860 will be handled."
1861 t nil
1862 (c c++) '("auto" "extern" "inline" "register" "static")
1863 c++ (append '("explicit" "friend" "mutable" "template" "using" "virtual")
1864 (c-lang-const c-modifier-kwds))
1865 objc '("auto" "bycopy" "byref" "extern" "in" "inout" "oneway" "out" "static")
1866 ;; FIXME: Some of those below ought to be on `c-other-decl-kwds' instead.
1867 idl '("abstract" "attribute" "const" "consumes" "custom" "emits" "import"
1868 "in" "inout" "local" "multiple" "oneway" "out" "private" "provides"
1869 "public" "publishes" "readonly" "typeid" "typeprefix" "uses"
1870 ;; In CORBA PSDL:
1871 "primary" "state"
1872 ;; In CORBA CIDL:
1873 "bindsTo" "delegatesTo" "implements" "proxy" "storedOn")
1874 ;; Note: "const" is not used in Java, but it's still a reserved keyword.
1875 java '("abstract" "const" "final" "native" "private" "protected" "public"
1876 "static" "strictfp" "synchronized" "transient" "volatile")
1877 pike '("final" "inline" "local" "nomask" "optional" "private" "protected"
1878 "public" "static" "variant"))
1880 (c-lang-defconst c-other-decl-kwds
1881 "Keywords that can start or prefix any declaration level construct,
1882 besides those on `c-class-decl-kwds', `c-brace-list-decl-kwds',
1883 `c-other-block-decl-kwds', `c-typedef-decl-kwds',
1884 `c-typeless-decl-kwds' and `c-modifier-kwds'.
1886 If any of these also are on `c-type-list-kwds', `c-ref-list-kwds',
1887 `c-colon-type-list-kwds', `c-paren-nontype-kwds', `c-paren-type-kwds',
1888 `c-<>-type-kwds', or `c-<>-arglist-kwds' then the associated clauses
1889 will be handled."
1890 t nil
1891 objc '("@class" "@end" "@defs")
1892 java '("import" "package")
1893 pike '("import" "inherit"))
1895 (c-lang-defconst c-decl-start-kwds
1896 "Keywords that always start declarations, wherever they occur.
1897 This can be used for declarations that aren't recognized by the normal
1898 combination of `c-decl-prefix-re' and `c-decl-start-re'."
1899 t nil
1900 ;; Classes can be declared anywhere in a Pike expression.
1901 pike '("class"))
1903 (c-lang-defconst c-decl-hangon-kwds
1904 "Keywords that can occur anywhere in a declaration level construct.
1905 This is used for self-contained things that can be tacked on anywhere
1906 on a declaration and that should be ignored to be able to recognize it
1907 correctly. Typical cases are compiler extensions like
1908 \"__attribute__\" or \"__declspec\":
1910 __declspec(noreturn) void foo();
1911 class __declspec(dllexport) classname {...};
1912 void foo() __attribute__((noreturn));
1914 Note that unrecognized plain symbols are skipped anyway if they occur
1915 before the type, so such things are not necessary to mention here.
1916 Mentioning them here is necessary only if they can occur in other
1917 places, or if they are followed by a construct that must be skipped
1918 over \(like the parens in the \"__attribute__\" and \"__declspec\"
1919 examples above). In the last case, they alse need to be present on
1920 one of `c-type-list-kwds', `c-ref-list-kwds',
1921 `c-colon-type-list-kwds', `c-paren-nontype-kwds', `c-paren-type-kwds',
1922 `c-<>-type-kwds', or `c-<>-arglist-kwds'."
1923 ;; NB: These are currently not recognized in all parts of a
1924 ;; declaration. Specifically, they aren't recognized in the middle
1925 ;; of multi-token types, inside declarators, and between the
1926 ;; identifier and the arglist paren of a function declaration.
1928 ;; FIXME: This ought to be user customizable since compiler stuff
1929 ;; like this usually is wrapped in project specific macros. (It'd
1930 ;; of course be even better if we could cope without knowing this.)
1931 t nil
1932 (c c++) '(;; GCC extension.
1933 "__attribute__"
1934 ;; MSVC extension.
1935 "__declspec"))
1937 (c-lang-defconst c-decl-hangon-key
1938 ;; Adorned regexp matching `c-decl-hangon-kwds'.
1939 t (c-make-keywords-re t (c-lang-const c-decl-hangon-kwds)))
1940 (c-lang-defvar c-decl-hangon-key (c-lang-const c-decl-hangon-key))
1942 (c-lang-defconst c-prefix-spec-kwds
1943 ;; All keywords that can occur in the preamble of a declaration.
1944 ;; They typically occur before the type, but they are also matched
1945 ;; after presumptive types since we often can't be sure that
1946 ;; something is a type or just some sort of macro in front of the
1947 ;; declaration. They might be ambiguous with types or type
1948 ;; prefixes.
1949 t (cl-delete-duplicates (append (c-lang-const c-class-decl-kwds)
1950 (c-lang-const c-brace-list-decl-kwds)
1951 (c-lang-const c-other-block-decl-kwds)
1952 (c-lang-const c-typedef-decl-kwds)
1953 (c-lang-const c-typeless-decl-kwds)
1954 (c-lang-const c-modifier-kwds)
1955 (c-lang-const c-other-decl-kwds)
1956 (c-lang-const c-decl-start-kwds)
1957 (c-lang-const c-decl-hangon-kwds))
1958 :test 'string-equal))
1960 (c-lang-defconst c-prefix-spec-kwds-re
1961 ;; Adorned regexp of `c-prefix-spec-kwds'.
1962 t (c-make-keywords-re t (c-lang-const c-prefix-spec-kwds)))
1964 (c-lang-defvar c-prefix-spec-kwds-re (c-lang-const c-prefix-spec-kwds-re))
1966 (c-lang-defconst c-specifier-key
1967 ;; Adorned regexp of the keywords in `c-prefix-spec-kwds' that aren't
1968 ;; ambiguous with types or type prefixes. These are the keywords (like
1969 ;; extern, namespace, but NOT template) that can modify a declaration.
1970 t (c-make-keywords-re t
1971 (set-difference (c-lang-const c-prefix-spec-kwds)
1972 (append (c-lang-const c-type-start-kwds)
1973 (c-lang-const c-<>-arglist-kwds))
1974 :test 'string-equal)))
1975 (c-lang-defvar c-specifier-key (c-lang-const c-specifier-key))
1977 (c-lang-defconst c-postfix-spec-kwds
1978 ;; Keywords that can occur after argument list of a function header
1979 ;; declaration, i.e. in the "K&R region".
1980 t (append (c-lang-const c-postfix-decl-spec-kwds)
1981 (c-lang-const c-decl-hangon-kwds)))
1983 (c-lang-defconst c-not-decl-init-keywords
1984 ;; Adorned regexp matching all keywords that can't appear at the
1985 ;; start of a declaration.
1986 t (c-make-keywords-re t
1987 (set-difference (c-lang-const c-keywords)
1988 (append (c-lang-const c-type-start-kwds)
1989 (c-lang-const c-prefix-spec-kwds))
1990 :test 'string-equal)))
1991 (c-lang-defvar c-not-decl-init-keywords
1992 (c-lang-const c-not-decl-init-keywords))
1994 (c-lang-defconst c-not-primitive-type-keywords
1995 "List of all keywords apart from primitive types (like \"int\")."
1996 t (set-difference (c-lang-const c-keywords)
1997 (c-lang-const c-primitive-type-kwds)
1998 :test 'string-equal)
1999 ;; The "more" for C++ is the QT keyword (as in "more slots:").
2000 ;; This variable is intended for use in c-beginning-of-statement-1.
2001 c++ (append (c-lang-const c-not-primitive-type-keywords) '("more")))
2003 (c-lang-defconst c-not-primitive-type-keywords-regexp
2004 t (c-make-keywords-re t
2005 (c-lang-const c-not-primitive-type-keywords)))
2006 (c-lang-defvar c-not-primitive-type-keywords-regexp
2007 (c-lang-const c-not-primitive-type-keywords-regexp))
2009 (c-lang-defconst c-protection-kwds
2010 "Access protection label keywords in classes."
2011 t nil
2012 c++ '("private" "protected" "public")
2013 objc '("@private" "@protected" "@public"))
2015 (c-lang-defconst c-block-decls-with-vars
2016 "Keywords introducing declarations that can contain a block which
2017 might be followed by variable declarations, e.g. like \"foo\" in
2018 \"class Foo { ... } foo;\". So if there is a block in a declaration
2019 like that, it ends with the following ';' and not right away.
2021 The keywords on list are assumed to also be present on one of the
2022 `*-decl-kwds' lists."
2023 t nil
2024 (c objc) '("struct" "union" "enum" "typedef")
2025 c++ '("class" "struct" "union" "enum" "typedef"))
2027 (c-lang-defconst c-opt-block-decls-with-vars-key
2028 ;; Regexp matching the `c-block-decls-with-vars' keywords, or nil in
2029 ;; languages without such constructs.
2030 t (and (c-lang-const c-block-decls-with-vars)
2031 (c-make-keywords-re t (c-lang-const c-block-decls-with-vars))))
2032 (c-lang-defvar c-opt-block-decls-with-vars-key
2033 (c-lang-const c-opt-block-decls-with-vars-key))
2035 (c-lang-defconst c-postfix-decl-spec-kwds
2036 "Keywords introducing extra declaration specifiers in the region
2037 between the header and the body \(i.e. the \"K&R-region\") in
2038 declarations."
2039 t nil
2040 java '("extends" "implements" "throws")
2041 idl '("context" "getraises" "manages" "primarykey" "raises" "setraises"
2042 "supports"
2043 ;; In CORBA PSDL:
2044 "as" "const" "implements" "of" "ref"))
2046 (c-lang-defconst c-postfix-decl-spec-key
2047 ;; Regexp matching the keywords in `c-postfix-decl-spec-kwds'.
2048 t (c-make-keywords-re t (c-lang-const c-postfix-decl-spec-kwds)))
2049 (c-lang-defvar c-postfix-decl-spec-key
2050 (c-lang-const c-postfix-decl-spec-key))
2052 (c-lang-defconst c-nonsymbol-sexp-kwds
2053 "Keywords that may be followed by a nonsymbol sexp before whatever
2054 construct it's part of continues."
2055 t nil
2056 (c c++ objc) '("extern"))
2058 (c-lang-defconst c-type-list-kwds
2059 "Keywords that may be followed by a comma separated list of type
2060 identifiers, where each optionally can be prefixed by keywords. (Can
2061 also be used for the special case when the list can contain only one
2062 element.)
2064 Assumed to be mutually exclusive with `c-ref-list-kwds'. There's no
2065 reason to put keywords on this list if they are on `c-type-prefix-kwds'.
2066 There's also no reason to add keywords that prefixes a normal
2067 declaration consisting of a type followed by a declarator (list), so
2068 the keywords on `c-modifier-kwds' should normally not be listed here
2069 either.
2071 Note: Use `c-typeless-decl-kwds' for keywords followed by a function
2072 or variable identifier (that's being defined)."
2073 t nil
2074 c++ '("operator")
2075 objc '("@class")
2076 java '("import" "new" "extends" "super" "implements" "throws")
2077 idl '("manages" "native" "primarykey" "supports"
2078 ;; In CORBA PSDL:
2079 "as" "implements" "of" "scope")
2080 pike '("inherit"))
2082 (c-lang-defconst c-ref-list-kwds
2083 "Keywords that may be followed by a comma separated list of
2084 reference (i.e. namespace/scope/module) identifiers, where each
2085 optionally can be prefixed by keywords. (Can also be used for the
2086 special case when the list can contain only one element.) Assumed to
2087 be mutually exclusive with `c-type-list-kwds'.
2089 Note: Use `c-typeless-decl-kwds' for keywords followed by a function
2090 or variable identifier (that's being defined)."
2091 t nil
2092 c++ '("namespace")
2093 java '("package")
2094 idl '("import" "module"
2095 ;; In CORBA CIDL:
2096 "composition")
2097 pike '("import"))
2099 (c-lang-defconst c-colon-type-list-kwds
2100 "Keywords that may be followed (not necessarily directly) by a colon
2101 and then a comma separated list of type identifiers, where each
2102 optionally can be prefixed by keywords. (Can also be used for the
2103 special case when the list can contain only one element.)"
2104 t nil
2105 c++ '("class" "struct")
2106 idl '("component" "eventtype" "home" "interface" "valuetype"
2107 ;; In CORBA PSDL:
2108 "storagehome" "storagetype"))
2110 (c-lang-defconst c-colon-type-list-re
2111 "Regexp matched after the keywords in `c-colon-type-list-kwds' to skip
2112 forward to the colon. The end of the match is assumed to be directly
2113 after the colon, so the regexp should end with \":\". Must be a
2114 regexp if `c-colon-type-list-kwds' isn't nil."
2115 t (if (c-lang-const c-colon-type-list-kwds)
2116 ;; Disallow various common punctuation chars that can't come
2117 ;; before the ":" that starts the inherit list after "class"
2118 ;; or "struct" in C++. (Also used as default for other
2119 ;; languages.)
2120 "[^\]\[{}();,/#=:]*:"))
2121 (c-lang-defvar c-colon-type-list-re (c-lang-const c-colon-type-list-re))
2123 (c-lang-defconst c-paren-nontype-kwds
2124 "Keywords that may be followed by a parenthesis expression that doesn't
2125 contain type identifiers."
2126 t nil
2127 (c c++) '(;; GCC extension.
2128 "__attribute__"
2129 ;; MSVC extension.
2130 "__declspec"))
2132 (c-lang-defconst c-paren-type-kwds
2133 "Keywords that may be followed by a parenthesis expression containing
2134 type identifiers separated by arbitrary tokens."
2135 t nil
2136 c++ '("throw")
2137 objc '("@defs")
2138 idl '("switch")
2139 pike '("array" "function" "int" "mapping" "multiset" "object" "program"))
2141 (c-lang-defconst c-paren-any-kwds
2142 t (cl-delete-duplicates (append (c-lang-const c-paren-nontype-kwds)
2143 (c-lang-const c-paren-type-kwds))
2144 :test 'string-equal))
2146 (c-lang-defconst c-<>-type-kwds
2147 "Keywords that may be followed by an angle bracket expression
2148 containing type identifiers separated by \",\". The difference from
2149 `c-<>-arglist-kwds' is that unknown names are taken to be types and
2150 not other identifiers. `c-recognize-<>-arglists' is assumed to be set
2151 if this isn't nil."
2152 t nil
2153 objc '("id")
2154 idl '("sequence"
2155 ;; In CORBA PSDL:
2156 "ref"))
2158 (c-lang-defconst c-<>-arglist-kwds
2159 "Keywords that can be followed by a C++ style template arglist; see
2160 `c-recognize-<>-arglists' for details. That language constant is
2161 assumed to be set if this isn't nil."
2162 t nil
2163 c++ '("template")
2164 idl '("fixed" "string" "wstring"))
2166 (c-lang-defconst c-<>-sexp-kwds
2167 ;; All keywords that can be followed by an angle bracket sexp.
2168 t (cl-delete-duplicates (append (c-lang-const c-<>-type-kwds)
2169 (c-lang-const c-<>-arglist-kwds))
2170 :test 'string-equal))
2172 (c-lang-defconst c-opt-<>-sexp-key
2173 ;; Adorned regexp matching keywords that can be followed by an angle
2174 ;; bracket sexp. Always set when `c-recognize-<>-arglists' is.
2175 t (c-make-keywords-re t (c-lang-const c-<>-sexp-kwds)))
2176 (c-lang-defvar c-opt-<>-sexp-key (c-lang-const c-opt-<>-sexp-key))
2178 (c-lang-defconst c-brace-id-list-kwds
2179 "Keywords that may be followed by a brace block containing a comma
2180 separated list of identifier definitions, i.e. like the list of
2181 identifiers that follows the type in a normal declaration."
2182 t (c-lang-const c-brace-list-decl-kwds))
2184 (c-lang-defconst c-block-stmt-1-kwds
2185 "Statement keywords followed directly by a substatement."
2186 t '("do" "else")
2187 c++ '("do" "else" "try")
2188 objc '("do" "else" "@finally" "@try")
2189 java '("do" "else" "finally" "try")
2190 idl nil)
2192 (c-lang-defconst c-block-stmt-1-key
2193 ;; Regexp matching the start of any statement followed directly by a
2194 ;; substatement (doesn't match a bare block, however).
2195 t (c-make-keywords-re t (c-lang-const c-block-stmt-1-kwds)))
2196 (c-lang-defvar c-block-stmt-1-key (c-lang-const c-block-stmt-1-key))
2198 (c-lang-defconst c-block-stmt-1-2-kwds
2199 "Statement keywords optionally followed by a paren sexp.
2200 Keywords here should also be in `c-block-stmt-1-kwds'."
2201 t nil
2202 java '("try"))
2204 (c-lang-defconst c-block-stmt-1-2-key
2205 ;; Regexp matching the start of a statement which may be followed by a
2206 ;; paren sexp and will then be followed by a substatement.
2207 t (c-make-keywords-re t (c-lang-const c-block-stmt-1-2-kwds)))
2208 (c-lang-defvar c-block-stmt-1-2-key (c-lang-const c-block-stmt-1-2-key))
2210 (c-lang-defconst c-block-stmt-2-kwds
2211 "Statement keywords followed by a paren sexp and then by a substatement."
2212 t '("for" "if" "switch" "while")
2213 c++ '("for" "if" "switch" "while" "catch")
2214 objc '("for" "if" "switch" "while" "@catch" "@synchronized")
2215 java '("for" "if" "switch" "while" "catch" "synchronized")
2216 idl nil
2217 pike '("for" "if" "switch" "while" "foreach")
2218 awk '("for" "if" "while"))
2220 (c-lang-defconst c-block-stmt-2-key
2221 ;; Regexp matching the start of any statement followed by a paren sexp
2222 ;; and then by a substatement.
2223 t (c-make-keywords-re t (c-lang-const c-block-stmt-2-kwds)))
2224 (c-lang-defvar c-block-stmt-2-key (c-lang-const c-block-stmt-2-key))
2226 (c-lang-defconst c-block-stmt-kwds
2227 ;; Union of `c-block-stmt-1-kwds' and `c-block-stmt-2-kwds'.
2228 t (cl-delete-duplicates (append (c-lang-const c-block-stmt-1-kwds)
2229 (c-lang-const c-block-stmt-2-kwds))
2230 :test 'string-equal))
2232 (c-lang-defconst c-opt-block-stmt-key
2233 ;; Regexp matching the start of any statement that has a
2234 ;; substatement (except a bare block). Nil in languages that
2235 ;; don't have such constructs.
2236 t (if (or (c-lang-const c-block-stmt-1-kwds)
2237 (c-lang-const c-block-stmt-2-kwds))
2238 (c-make-keywords-re t
2239 (append (c-lang-const c-block-stmt-1-kwds)
2240 (c-lang-const c-block-stmt-2-kwds)))))
2241 (c-lang-defvar c-opt-block-stmt-key (c-lang-const c-opt-block-stmt-key))
2243 (c-lang-defconst c-simple-stmt-kwds
2244 "Statement keywords followed by an expression or nothing."
2245 t '("break" "continue" "goto" "return")
2246 objc '("break" "continue" "goto" "return" "@throw")
2247 ;; Note: `goto' is not valid in Java, but the keyword is still reserved.
2248 java '("break" "continue" "goto" "return" "throw")
2249 idl nil
2250 pike '("break" "continue" "return")
2251 awk '(;; Not sure about "delete", "exit", "getline", etc. ; ACM 2002/5/30
2252 "break" "continue" "return" "delete" "exit" "getline" "next"
2253 "nextfile" "print" "printf"))
2255 (c-lang-defconst c-simple-stmt-key
2256 ;; Adorned regexp matching `c-simple-stmt-kwds'.
2257 t (c-make-keywords-re t (c-lang-const c-simple-stmt-kwds)))
2258 (c-lang-defvar c-simple-stmt-key (c-lang-const c-simple-stmt-key))
2260 (c-lang-defconst c-paren-stmt-kwds
2261 "Statement keywords followed by a parenthesis expression that
2262 nevertheless contains a list separated with ';' and not ','."
2263 t '("for")
2264 idl nil)
2266 (c-lang-defconst c-paren-stmt-key
2267 ;; Adorned regexp matching `c-paren-stmt-kwds'.
2268 t (c-make-keywords-re t (c-lang-const c-paren-stmt-kwds)))
2269 (c-lang-defvar c-paren-stmt-key (c-lang-const c-paren-stmt-key))
2271 (c-lang-defconst c-asm-stmt-kwds
2272 "Statement keywords followed by an assembler expression."
2273 t nil
2274 (c c++) '("asm" "__asm__")) ;; Not standard, but common.
2276 (c-lang-defconst c-opt-asm-stmt-key
2277 ;; Regexp matching the start of an assembler statement. Nil in
2278 ;; languages that don't support that.
2279 t (if (c-lang-const c-asm-stmt-kwds)
2280 (c-make-keywords-re t (c-lang-const c-asm-stmt-kwds))))
2281 (c-lang-defvar c-opt-asm-stmt-key (c-lang-const c-opt-asm-stmt-key))
2283 (c-lang-defconst c-case-kwds
2284 "The keyword\(s) which introduce a \"case\" like construct.
2285 This construct is \"<keyword> <expression> :\"."
2286 t '("case")
2287 awk nil)
2289 (c-lang-defconst c-case-kwds-regexp
2290 ;; Adorned regexp matching any "case"-like keyword.
2291 t (c-make-keywords-re t (c-lang-const c-case-kwds)))
2292 (c-lang-defvar c-case-kwds-regexp (c-lang-const c-case-kwds-regexp))
2294 (c-lang-defconst c-label-kwds
2295 "Keywords introducing colon terminated labels in blocks."
2296 t '("case" "default"))
2298 (c-lang-defconst c-label-kwds-regexp
2299 ;; Adorned regexp matching any keyword that introduces a label.
2300 t (c-make-keywords-re t (c-lang-const c-label-kwds)))
2301 (c-lang-defvar c-label-kwds-regexp (c-lang-const c-label-kwds-regexp))
2303 (c-lang-defconst c-before-label-kwds
2304 "Keywords that might be followed by a label identifier."
2305 t '("goto")
2306 (java pike) (append '("break" "continue")
2307 (c-lang-const c-before-label-kwds))
2308 idl nil
2309 awk nil)
2311 (c-lang-defconst c-constant-kwds
2312 "Keywords for constants."
2313 t nil
2314 (c c++) '("NULL" ;; Not a keyword, but practically works as one.
2315 "false" "true") ; Defined in C99.
2316 objc '("nil" "Nil" "YES" "NO" "NS_DURING" "NS_HANDLER" "NS_ENDHANDLER")
2317 idl '("TRUE" "FALSE")
2318 java '("true" "false" "null") ; technically "literals", not keywords
2319 pike '("UNDEFINED")) ;; Not a keyword, but practically works as one.
2321 (c-lang-defconst c-primary-expr-kwds
2322 "Keywords besides constants and operators that start primary expressions."
2323 t nil
2324 c++ '("operator" "this")
2325 objc '("super" "self")
2326 java '("this")
2327 pike '("this")) ;; Not really a keyword, but practically works as one.
2329 (c-lang-defconst c-expr-kwds
2330 ;; Keywords that can occur anywhere in expressions. Built from
2331 ;; `c-primary-expr-kwds' and all keyword operators in `c-operators'.
2332 t (cl-delete-duplicates
2333 (append (c-lang-const c-primary-expr-kwds)
2334 (c-filter-ops (c-lang-const c-operator-list)
2336 "\\`\\(\\w\\|\\s_\\)+\\'"))
2337 :test 'string-equal))
2339 (c-lang-defconst c-lambda-kwds
2340 "Keywords that start lambda constructs, i.e. function definitions in
2341 expressions."
2342 t nil
2343 pike '("lambda"))
2345 (c-lang-defconst c-inexpr-block-kwds
2346 "Keywords that start constructs followed by statement blocks which can
2347 be used in expressions \(the gcc extension for this in C and C++ is
2348 handled separately by `c-recognize-paren-inexpr-blocks')."
2349 t nil
2350 pike '("catch" "gauge"))
2352 (c-lang-defconst c-inexpr-class-kwds
2353 "Keywords that can start classes inside expressions."
2354 t nil
2355 java '("new")
2356 pike '("class"))
2358 (c-lang-defconst c-inexpr-brace-list-kwds
2359 "Keywords that can start brace list blocks inside expressions.
2360 Note that Java specific rules are currently applied to tell this from
2361 `c-inexpr-class-kwds'."
2362 t nil
2363 java '("new"))
2365 (c-lang-defconst c-opt-inexpr-brace-list-key
2366 ;; Regexp matching the start of a brace list in an expression, or
2367 ;; nil in languages that don't have such things. This should not
2368 ;; match brace lists recognized through `c-special-brace-lists'.
2369 t (and (c-lang-const c-inexpr-brace-list-kwds)
2370 (c-make-keywords-re t (c-lang-const c-inexpr-brace-list-kwds))))
2371 (c-lang-defvar c-opt-inexpr-brace-list-key
2372 (c-lang-const c-opt-inexpr-brace-list-key))
2374 (c-lang-defconst c-decl-block-key
2375 ;; Regexp matching keywords in any construct that contain another
2376 ;; declaration level, i.e. that isn't followed by a function block
2377 ;; or brace list. When the first submatch matches, it's an
2378 ;; unambiguous construct, otherwise it's an ambiguous match that
2379 ;; might also be the return type of a function declaration.
2380 t (let* ((decl-kwds (append (c-lang-const c-class-decl-kwds)
2381 (c-lang-const c-other-block-decl-kwds)
2382 (c-lang-const c-inexpr-class-kwds)))
2383 (unambiguous (set-difference decl-kwds
2384 (c-lang-const c-type-start-kwds)
2385 :test 'string-equal))
2386 (ambiguous (intersection decl-kwds
2387 (c-lang-const c-type-start-kwds)
2388 :test 'string-equal)))
2389 (if ambiguous
2390 (concat (c-make-keywords-re t unambiguous)
2391 "\\|"
2392 (c-make-keywords-re t ambiguous))
2393 (c-make-keywords-re t unambiguous))))
2394 (c-lang-defvar c-decl-block-key (c-lang-const c-decl-block-key))
2396 (c-lang-defconst c-bitfield-kwds
2397 "Keywords that can introduce bitfields."
2398 t nil
2399 (c c++ objc) '("char" "int" "long" "signed" "unsigned"))
2401 (c-lang-defconst c-opt-bitfield-key
2402 ;; Regexp matching the start of a bitfield (not uniquely), or nil in
2403 ;; languages without bitfield support.
2404 t nil
2405 (c c++) (c-make-keywords-re t (c-lang-const c-bitfield-kwds)))
2406 (c-lang-defvar c-opt-bitfield-key (c-lang-const c-opt-bitfield-key))
2408 (c-lang-defconst c-other-kwds
2409 "Keywords not accounted for by any other `*-kwds' language constant."
2410 t nil
2411 idl '("truncatable"
2412 ;; In CORBA CIDL: (These are declaration keywords that never
2413 ;; can start a declaration.)
2414 "entity" "process" "service" "session" "storage"))
2417 ;;; Constants built from keywords.
2419 ;; Note: No `*-kwds' language constants may be defined below this point.
2421 (eval-and-compile
2422 (defconst c-kwds-lang-consts
2423 ;; List of all the language constants that contain keyword lists.
2424 (let (list)
2425 (mapatoms (lambda (sym)
2426 (when (and (boundp sym)
2427 (string-match "-kwds\\'" (symbol-name sym)))
2428 ;; Make the list of globally interned symbols
2429 ;; instead of ones interned in `c-lang-constants'.
2430 (setq list (cons (intern (symbol-name sym)) list))))
2431 c-lang-constants)
2432 list)))
2434 (c-lang-defconst c-keywords
2435 ;; All keywords as a list.
2436 t (cl-delete-duplicates
2437 (c-lang-defconst-eval-immediately
2438 `(append ,@(mapcar (lambda (kwds-lang-const)
2439 `(c-lang-const ,kwds-lang-const))
2440 c-kwds-lang-consts)
2441 nil))
2442 :test 'string-equal))
2444 (c-lang-defconst c-keywords-regexp
2445 ;; All keywords as an adorned regexp.
2446 t (c-make-keywords-re t (c-lang-const c-keywords)))
2447 (c-lang-defvar c-keywords-regexp (c-lang-const c-keywords-regexp))
2449 (c-lang-defconst c-keyword-member-alist
2450 ;; An alist with all the keywords in the cars. The cdr for each
2451 ;; keyword is a list of the symbols for the `*-kwds' lists that
2452 ;; contains it.
2453 t (let ((kwd-list-alist
2454 (c-lang-defconst-eval-immediately
2455 `(list ,@(mapcar (lambda (kwds-lang-const)
2456 `(cons ',kwds-lang-const
2457 (c-lang-const ,kwds-lang-const)))
2458 c-kwds-lang-consts))))
2459 lang-const kwd-list kwd
2460 result-alist elem)
2461 (while kwd-list-alist
2462 (setq lang-const (caar kwd-list-alist)
2463 kwd-list (cdar kwd-list-alist)
2464 kwd-list-alist (cdr kwd-list-alist))
2465 (while kwd-list
2466 (setq kwd (car kwd-list)
2467 kwd-list (cdr kwd-list))
2468 (unless (setq elem (assoc kwd result-alist))
2469 (setq result-alist (cons (setq elem (list kwd)) result-alist)))
2470 (unless (memq lang-const (cdr elem))
2471 (setcdr elem (cons lang-const (cdr elem))))))
2472 result-alist))
2474 (c-lang-defvar c-keywords-obarray
2475 ;; An obarray containing all keywords as symbols. The property list
2476 ;; of each symbol has a non-nil entry for the specific `*-kwds'
2477 ;; lists it's a member of.
2479 ;; E.g. to see whether the string str contains a keyword on
2480 ;; `c-class-decl-kwds', one can do like this:
2481 ;; (get (intern-soft str c-keyword-obarray) 'c-class-decl-kwds)
2482 ;; Which preferably is written using the associated functions in
2483 ;; cc-engine:
2484 ;; (c-keyword-member (c-keyword-sym str) 'c-class-decl-kwds)
2486 ;; The obarray is not stored directly as a language constant since
2487 ;; the printed representation for obarrays used in .elc files isn't
2488 ;; complete.
2490 (let* ((alist (c-lang-const c-keyword-member-alist))
2491 kwd lang-const-list
2492 (obarray (make-vector (* (length alist) 2) 0)))
2493 (while alist
2494 (setq kwd (caar alist)
2495 lang-const-list (cdar alist)
2496 alist (cdr alist))
2497 (setplist (intern kwd obarray)
2498 ;; Emacs has an odd bug that causes `mapcan' to fail
2499 ;; with unintelligible errors. (XEmacs works.)
2500 ;;(mapcan (lambda (lang-const)
2501 ;; (list lang-const t))
2502 ;; lang-const-list)
2503 (apply 'nconc (mapcar (lambda (lang-const)
2504 (list lang-const t))
2505 lang-const-list))))
2506 obarray))
2508 (c-lang-defconst c-regular-keywords-regexp
2509 ;; Adorned regexp matching all keywords that should be fontified
2510 ;; with the keywords face. I.e. that aren't types or constants.
2511 t (c-make-keywords-re t
2512 (set-difference (c-lang-const c-keywords)
2513 (append (c-lang-const c-primitive-type-kwds)
2514 (c-lang-const c-constant-kwds))
2515 :test 'string-equal)))
2516 (c-lang-defvar c-regular-keywords-regexp
2517 (c-lang-const c-regular-keywords-regexp))
2519 (c-lang-defconst c-primary-expr-regexp
2520 ;; Regexp matching the start of any primary expression, i.e. any
2521 ;; literal, symbol, prefix operator, and '('. It doesn't need to
2522 ;; exclude keywords; they are excluded afterwards unless the second
2523 ;; submatch matches. If the first but not the second submatch
2524 ;; matches then it is an ambiguous primary expression; it could also
2525 ;; be a match of e.g. an infix operator. (The case with ambiguous
2526 ;; keyword operators isn't handled.)
2528 t (let* ((prefix-ops
2529 (c-filter-ops (c-lang-const c-operators)
2530 '(prefix)
2531 (lambda (op)
2532 ;; Filter out the special case prefix
2533 ;; operators that are close parens.
2534 (not (string-match "\\s)" op)))))
2536 (nonkeyword-prefix-ops
2537 (c-filter-ops prefix-ops
2539 "\\`\\(\\s.\\|\\s(\\|\\s)\\)+\\'"))
2541 (in-or-postfix-ops
2542 (c-filter-ops (c-lang-const c-operators)
2543 '(postfix
2544 postfix-if-paren
2545 left-assoc
2546 right-assoc
2547 right-assoc-sequence)
2550 (unambiguous-prefix-ops (set-difference nonkeyword-prefix-ops
2551 in-or-postfix-ops
2552 :test 'string-equal))
2553 (ambiguous-prefix-ops (intersection nonkeyword-prefix-ops
2554 in-or-postfix-ops
2555 :test 'string-equal)))
2557 (concat
2558 "\\("
2559 ;; Take out all symbol class operators from `prefix-ops' and make the
2560 ;; first submatch from them together with `c-primary-expr-kwds'.
2561 (c-make-keywords-re t
2562 (append (c-lang-const c-primary-expr-kwds)
2563 (set-difference prefix-ops nonkeyword-prefix-ops
2564 :test 'string-equal)))
2566 "\\|"
2567 ;; Match all ambiguous operators.
2568 (c-make-keywords-re nil
2569 (intersection nonkeyword-prefix-ops in-or-postfix-ops
2570 :test 'string-equal))
2571 "\\)"
2573 "\\|"
2574 ;; Now match all other symbols.
2575 (c-lang-const c-symbol-start)
2577 "\\|"
2578 ;; The chars that can start integer and floating point
2579 ;; constants.
2580 "\\.?[0-9]"
2582 "\\|"
2583 ;; The unambiguous operators from `prefix-ops'.
2584 (c-make-keywords-re nil
2585 (set-difference nonkeyword-prefix-ops in-or-postfix-ops
2586 :test 'string-equal))
2588 "\\|"
2589 ;; Match string and character literals.
2590 "\\s\""
2591 (if (memq 'gen-string-delim c-emacs-features)
2592 "\\|\\s|"
2593 ""))))
2594 (c-lang-defvar c-primary-expr-regexp (c-lang-const c-primary-expr-regexp))
2597 ;;; Additional constants for parser-level constructs.
2599 (c-lang-defconst c-decl-start-colon-kwd-re
2600 "Regexp matching a keyword that is followed by a colon, where
2601 the whole construct can precede a declaration.
2602 E.g. \"public:\" in C++."
2603 t "\\<\\>"
2604 c++ (c-make-keywords-re t (c-lang-const c-protection-kwds)))
2605 (c-lang-defvar c-decl-start-colon-kwd-re
2606 (c-lang-const c-decl-start-colon-kwd-re))
2608 (c-lang-defconst c-decl-prefix-re
2609 "Regexp matching something that might precede a declaration, cast or
2610 label, such as the last token of a preceding statement or declaration.
2611 This is used in the common situation where a declaration or cast
2612 doesn't start with any specific token that can be searched for.
2614 The regexp should not match bob; that is done implicitly. It can't
2615 require a match longer than one token. The end of the token is taken
2616 to be at the end of the first submatch, which is assumed to always
2617 match. It's undefined whether identifier syntax (see
2618 `c-identifier-syntax-table') is in effect or not. This regexp is
2619 assumed to be a superset of `c-label-prefix-re' if
2620 `c-recognize-colon-labels' is set.
2622 Besides this, `c-decl-start-kwds' is used to find declarations.
2624 Note: This variable together with `c-decl-start-re' and
2625 `c-decl-start-kwds' is only used to detect \"likely\"
2626 declaration/cast/label starts. I.e. they might produce more matches
2627 but should not miss anything (or else it's necessary to use text
2628 properties - see the next note). Wherever they match, the following
2629 construct is analyzed to see if it indeed is a declaration, cast or
2630 label. That analysis is not cheap, so it's important that not too
2631 many false matches are triggered.
2633 Note: If a declaration/cast/label start can't be detected with this
2634 variable, it's necessary to use the `c-type' text property with the
2635 value `c-decl-end' on the last char of the last token preceding the
2636 declaration. See the comment blurb at the start of cc-engine.el for
2637 more info."
2639 ;; We match a sequence of characters to skip over things like \"};\"
2640 ;; more quickly. We match ")" in C for K&R region declarations, and
2641 ;; in all languages except Java for when a cpp macro definition
2642 ;; begins with a declaration.
2643 t "\\([\{\}\(\);,]+\\)"
2644 java "\\([\{\}\(;,<]+\\)"
2645 ;; Match "<" in C++ to get the first argument in a template arglist.
2646 ;; In that case there's an additional check in `c-find-decl-spots'
2647 ;; that it got open paren syntax. Match ":" to aid in picking up
2648 ;; "public:", etc. This involves additional checks in
2649 ;; `c-find-decl-prefix-search' to prevent a match of identifiers
2650 ;; or labels.
2651 c++ "\\([\{\}\(\);:,<]+\\)"
2652 ;; Additionally match the protection directives in Objective-C.
2653 ;; Note that this doesn't cope with the longer directives, which we
2654 ;; would have to match from start to end since they don't end with
2655 ;; any easily recognized characters.
2656 objc (concat "\\([\{\}\(\);,]+\\|"
2657 (c-make-keywords-re nil (c-lang-const c-protection-kwds))
2658 "\\)")
2659 ;; Pike is like C but we also match "[" for multiple value
2660 ;; assignments and type casts.
2661 pike "\\([\{\}\(\)\[;,]+\\)")
2662 (c-lang-defvar c-decl-prefix-re (c-lang-const c-decl-prefix-re)
2663 'dont-doc)
2665 (c-lang-defconst c-decl-start-re
2666 "Regexp matching the start of any declaration, cast or label.
2667 It's used on the token after the one `c-decl-prefix-re' matched. This
2668 regexp should not try to match those constructs accurately as it's
2669 only used as a sieve to avoid spending more time checking other
2670 constructs."
2671 t (c-lang-const c-identifier-start))
2672 (c-lang-defvar c-decl-start-re (c-lang-const c-decl-start-re))
2674 (c-lang-defconst c-decl-prefix-or-start-re
2675 ;; Regexp matching something that might precede or start a
2676 ;; declaration, cast or label.
2678 ;; If the first submatch matches, it's taken to match the end of a
2679 ;; token that might precede such a construct, e.g. ';', '}' or '{'.
2680 ;; It's built from `c-decl-prefix-re'.
2682 ;; If the first submatch did not match, the match of the whole
2683 ;; regexp is taken to be at the first token in the declaration.
2684 ;; `c-decl-start-re' is not checked in this case.
2686 ;; Design note: The reason the same regexp is used to match both
2687 ;; tokens that precede declarations and start them is to avoid an
2688 ;; extra regexp search from the previous declaration spot in
2689 ;; `c-find-decl-spots'. Users of `c-find-decl-spots' also count on
2690 ;; that it finds all declaration/cast/label starts in approximately
2691 ;; linear order, so we can't do the searches in two separate passes.
2692 t (if (c-lang-const c-decl-start-kwds)
2693 (concat (c-lang-const c-decl-prefix-re)
2694 "\\|"
2695 (c-make-keywords-re t (c-lang-const c-decl-start-kwds)))
2696 (c-lang-const c-decl-prefix-re)))
2697 (c-lang-defvar c-decl-prefix-or-start-re
2698 (c-lang-const c-decl-prefix-or-start-re)
2699 'dont-doc)
2701 (c-lang-defconst c-cast-parens
2702 ;; List containing the paren characters that can open a cast, or nil in
2703 ;; languages without casts.
2704 t (c-filter-ops (c-lang-const c-operators)
2705 '(prefix)
2706 "\\`\\s\(\\'"
2707 (lambda (op) (elt op 0))))
2708 (c-lang-defvar c-cast-parens (c-lang-const c-cast-parens))
2710 (c-lang-defconst c-block-prefix-disallowed-chars
2711 "List of syntactically relevant characters that never can occur before
2712 the open brace in any construct that contains a brace block, e.g. in
2713 the \"class Foo: public Bar\" part of:
2715 class Foo: public Bar {int x();} a, *b;
2717 If parens can occur, the chars inside those aren't filtered with this
2718 list.
2720 '<' and '>' should be disallowed even if angle bracket arglists can
2721 occur. That since the search function needs to stop at them anyway to
2722 ensure they are given paren syntax.
2724 This is used to skip backward from the open brace to find the region
2725 in which to look for a construct like \"class\", \"enum\",
2726 \"namespace\" or whatever. That skipping should be as tight as
2727 possible for good performance."
2729 ;; Default to all chars that only occurs in nonsymbol tokens outside
2730 ;; identifiers.
2731 t (set-difference
2732 (c-lang-const c-nonsymbol-token-char-list)
2733 (c-filter-ops (append (c-lang-const c-identifier-ops)
2734 (list (cons nil
2735 (c-lang-const c-after-id-concat-ops))))
2738 (lambda (op)
2739 (let ((pos 0) res)
2740 (while (string-match "\\(\\s.\\|\\s(\\|\\s)\\)"
2741 op pos)
2742 (setq res (cons (aref op (match-beginning 1)) res)
2743 pos (match-end 0)))
2744 res))))
2746 ;; Allow cpp operations (where applicable).
2747 t (if (c-lang-const c-opt-cpp-prefix)
2748 (set-difference (c-lang-const c-block-prefix-disallowed-chars)
2749 '(?#))
2750 (c-lang-const c-block-prefix-disallowed-chars))
2752 ;; Allow ':' for inherit list starters.
2753 (c++ objc idl) (set-difference (c-lang-const c-block-prefix-disallowed-chars)
2754 '(?:))
2756 ;; Allow ',' for multiple inherits.
2757 (c++ java) (set-difference (c-lang-const c-block-prefix-disallowed-chars)
2758 '(?,))
2760 ;; Allow parentheses for anonymous inner classes in Java and class
2761 ;; initializer lists in Pike.
2762 (java pike) (set-difference (c-lang-const c-block-prefix-disallowed-chars)
2763 '(?\( ?\)))
2765 ;; Allow '"' for extern clauses (e.g. extern "C" {...}).
2766 (c c++ objc) (set-difference (c-lang-const c-block-prefix-disallowed-chars)
2767 '(?\" ?')))
2769 (c-lang-defconst c-block-prefix-charset
2770 ;; `c-block-prefix-disallowed-chars' as an inverted charset suitable
2771 ;; for `c-syntactic-skip-backward'.
2772 t (c-make-bare-char-alt (c-lang-const c-block-prefix-disallowed-chars) t))
2773 (c-lang-defvar c-block-prefix-charset (c-lang-const c-block-prefix-charset))
2775 (c-lang-defconst c-type-decl-prefix-key
2776 "Regexp matching the declarator operators that might precede the
2777 identifier in a declaration, e.g. the \"*\" in \"char *argv\". This
2778 regexp should match \"(\" if parentheses are valid in declarators.
2779 The end of the first submatch is taken as the end of the operator.
2780 Identifier syntax is in effect when this is matched \(see
2781 `c-identifier-syntax-table')."
2782 t (if (c-lang-const c-type-modifier-kwds)
2783 (concat (regexp-opt (c-lang-const c-type-modifier-kwds) t) "\\>")
2784 ;; Default to a regexp that never matches.
2785 "\\<\\>")
2786 ;; Check that there's no "=" afterwards to avoid matching tokens
2787 ;; like "*=".
2788 (c objc) (concat "\\("
2789 "[*\(]"
2790 "\\|"
2791 (c-lang-const c-type-decl-prefix-key)
2792 "\\)"
2793 "\\([^=]\\|$\\)")
2794 c++ (concat "\\("
2795 "[*\(&]"
2796 "\\|"
2797 (c-lang-const c-type-decl-prefix-key)
2798 "\\|"
2799 (concat "\\(" ; 3
2800 ;; If this matches there's special treatment in
2801 ;; `c-font-lock-declarators' and
2802 ;; `c-font-lock-declarations' that check for a
2803 ;; complete name followed by ":: *".
2804 (c-lang-const c-identifier-start)
2805 "\\)")
2806 "\\)"
2807 "\\([^=]\\|$\\)")
2808 pike "\\(\\*\\)\\([^=]\\|$\\)")
2809 (c-lang-defvar c-type-decl-prefix-key (c-lang-const c-type-decl-prefix-key)
2810 'dont-doc)
2812 (c-lang-defconst c-type-decl-suffix-key
2813 "Regexp matching the declarator operators that might follow after the
2814 identifier in a declaration, e.g. the \"[\" in \"char argv[]\". This
2815 regexp should match \")\" if parentheses are valid in declarators. If
2816 it matches an open paren of some kind, the type declaration check
2817 continues at the corresponding close paren, otherwise the end of the
2818 first submatch is taken as the end of the operator. Identifier syntax
2819 is in effect when this is matched (see `c-identifier-syntax-table')."
2820 ;; Default to a regexp that matches `c-type-modifier-kwds' and a
2821 ;; function argument list parenthesis.
2822 t (if (c-lang-const c-type-modifier-kwds)
2823 (concat "\\(\(\\|"
2824 (regexp-opt (c-lang-const c-type-modifier-kwds) t) "\\>"
2825 "\\)")
2826 "\\(\(\\)")
2827 (c c++ objc) (concat
2828 "\\("
2829 "[\)\[\(]"
2830 (if (c-lang-const c-type-modifier-kwds)
2831 (concat
2832 "\\|"
2833 ;; "throw" in `c-type-modifier-kwds' is followed
2834 ;; by a parenthesis list, but no extra measures
2835 ;; are necessary to handle that.
2836 (regexp-opt (c-lang-const c-type-modifier-kwds) t)
2837 "\\>")
2839 "\\)")
2840 java "\\([\[\(\)]\\)"
2841 idl "\\([\[\(]\\)")
2842 (c-lang-defvar c-type-decl-suffix-key (c-lang-const c-type-decl-suffix-key)
2843 'dont-doc)
2845 (c-lang-defconst c-after-suffixed-type-decl-key
2846 "This regexp is matched after a declarator expression where
2847 `c-type-decl-suffix-key' has matched. If it matches then the
2848 construct is taken as a declaration. It's typically used to match the
2849 beginning of a function body or whatever might occur after the
2850 function header in a function declaration or definition. It's
2851 undefined whether identifier syntax (see `c-identifier-syntax-table')
2852 is in effect or not.
2854 Note that it's used in cases like after \"foo (bar)\" so it should
2855 only match when it's certain that it's a declaration, e.g., \"{\" but
2856 not \",\" or \";\"."
2857 t "{"
2858 ;; If K&R style declarations should be recognized then one could
2859 ;; consider to match the start of any symbol since we want to match
2860 ;; the start of the first declaration in the "K&R region". That
2861 ;; could however produce false matches on code like "FOO(bar) x"
2862 ;; where FOO is a cpp macro, so it's better to leave it out and rely
2863 ;; on the other heuristics in that case.
2864 t (if (c-lang-const c-postfix-spec-kwds)
2865 ;; Add on the keywords in `c-postfix-spec-kwds'.
2866 (concat (c-lang-const c-after-suffixed-type-decl-key)
2867 "\\|"
2868 (c-make-keywords-re t (c-lang-const c-postfix-spec-kwds)))
2869 (c-lang-const c-after-suffixed-type-decl-key))
2870 ;; Also match the colon that starts a base class initializer list in
2871 ;; C++. That can be confused with a function call before the colon
2872 ;; in a ? : operator, but we count on that `c-decl-prefix-re' won't
2873 ;; match before such a thing (as a declaration-level construct;
2874 ;; matches inside arglist contexts are already excluded).
2875 c++ "[{:]")
2876 (c-lang-defvar c-after-suffixed-type-decl-key
2877 (c-lang-const c-after-suffixed-type-decl-key)
2878 'dont-doc)
2880 (c-lang-defconst c-after-suffixed-type-maybe-decl-key
2881 ;; Regexp that in addition to `c-after-suffixed-type-decl-key'
2882 ;; matches ";" and ",".
2883 t (concat "\\(" (c-lang-const c-after-suffixed-type-decl-key) "\\)"
2884 "\\|[;,]"))
2885 (c-lang-defvar c-after-suffixed-type-maybe-decl-key
2886 (c-lang-const c-after-suffixed-type-maybe-decl-key))
2888 (c-lang-defconst c-opt-type-concat-key
2889 "Regexp matching operators that concatenate types, e.g. the \"|\" in
2890 \"int|string\" in Pike. The end of the first submatch is taken as the
2891 end of the operator. nil in languages without such operators. It's
2892 undefined whether identifier syntax (see `c-identifier-syntax-table')
2893 is in effect or not."
2894 t nil
2895 pike "\\([|.&]\\)\\($\\|[^|.&]\\)")
2896 (c-lang-defvar c-opt-type-concat-key (c-lang-const c-opt-type-concat-key)
2897 'dont-doc)
2899 (c-lang-defconst c-opt-type-suffix-key
2900 "Regexp matching operators that might follow after a type, or nil in
2901 languages that don't have such operators. The end of the first
2902 submatch is taken as the end of the operator. This should not match
2903 things like C++ template arglists if `c-recognize-<>-arglists' is set.
2904 It's undefined whether identifier syntax (see `c-identifier-syntax-table')
2905 is in effect or not."
2906 t nil
2907 (c c++ objc pike) "\\(\\.\\.\\.\\)"
2908 java (concat "\\(\\[" (c-lang-const c-simple-ws) "*\\]\\|\\.\\.\\.\\)"))
2909 (c-lang-defvar c-opt-type-suffix-key (c-lang-const c-opt-type-suffix-key))
2911 (c-lang-defvar c-known-type-key
2912 ;; Regexp matching the known type identifiers. This is initialized
2913 ;; from the type keywords and `*-font-lock-extra-types'. The first
2914 ;; submatch is the one that matches the type. Note that this regexp
2915 ;; assumes that symbol constituents like '_' and '$' have word
2916 ;; syntax.
2917 (let* ((extra-types
2918 (when (boundp (c-mode-symbol "font-lock-extra-types"))
2919 (c-mode-var "font-lock-extra-types")))
2920 (regexp-strings
2921 (apply 'nconc
2922 (mapcar (lambda (re)
2923 (when (string-match "[][.*+?^$\\]" re)
2924 (list re)))
2925 extra-types)))
2926 (plain-strings
2927 (apply 'nconc
2928 (mapcar (lambda (re)
2929 (unless (string-match "[][.*+?^$\\]" re)
2930 (list re)))
2931 extra-types))))
2932 (concat "\\<\\("
2933 (c-concat-separated
2934 (append (list (c-make-keywords-re nil
2935 (append (c-lang-const c-primitive-type-kwds)
2936 plain-strings)))
2937 regexp-strings)
2938 "\\|")
2939 "\\)\\>")))
2941 (c-lang-defconst c-special-brace-lists
2942 "List of open- and close-chars that makes up a pike-style brace list,
2943 i.e. for a ([ ]) list there should be a cons (?\\[ . ?\\]) in this
2944 list."
2945 t nil
2946 pike '((?{ . ?}) (?\[ . ?\]) (?< . ?>)))
2947 (c-lang-defvar c-special-brace-lists (c-lang-const c-special-brace-lists))
2949 (c-lang-defconst c-recognize-knr-p
2950 "Non-nil means K&R style argument declarations are valid."
2951 t nil
2952 c t)
2953 (c-lang-defvar c-recognize-knr-p (c-lang-const c-recognize-knr-p))
2955 (c-lang-defconst c-recognize-typeless-decls
2956 "Non-nil means function declarations without return type should be
2957 recognized. That can introduce an ambiguity with parenthesized macro
2958 calls before a brace block. This setting does not affect declarations
2959 that are preceded by a declaration starting keyword, so
2960 e.g. `c-typeless-decl-kwds' may still be used when it's set to nil."
2961 t nil
2962 (c c++ objc java) t)
2963 (c-lang-defvar c-recognize-typeless-decls
2964 (c-lang-const c-recognize-typeless-decls))
2966 (c-lang-defconst c-recognize-<>-arglists
2967 "Non-nil means C++ style template arglists should be handled. More
2968 specifically, this means a comma separated list of types or
2969 expressions surrounded by \"<\" and \">\". It's always preceded by an
2970 identifier or one of the keywords on `c-<>-type-kwds' or
2971 `c-<>-arglist-kwds'. If there's an identifier before then the whole
2972 expression is considered to be a type."
2973 t (or (consp (c-lang-const c-<>-type-kwds))
2974 (consp (c-lang-const c-<>-arglist-kwds)))
2975 java t)
2976 (c-lang-defvar c-recognize-<>-arglists (c-lang-const c-recognize-<>-arglists))
2978 (c-lang-defconst c-enums-contain-decls
2979 "Non-nil means that an enum structure can contain declarations."
2980 t nil
2981 java t)
2982 (c-lang-defvar c-enums-contain-decls (c-lang-const c-enums-contain-decls))
2984 (c-lang-defconst c-recognize-paren-inits
2985 "Non-nil means that parenthesis style initializers exist,
2986 i.e. constructs like
2988 Foo bar (gnu);
2990 in addition to the more classic
2992 Foo bar = gnu;"
2993 t nil
2994 c++ t)
2995 (c-lang-defvar c-recognize-paren-inits (c-lang-const c-recognize-paren-inits))
2997 (c-lang-defconst c-recognize-paren-inexpr-blocks
2998 "Non-nil to recognize gcc style in-expression blocks,
2999 i.e. compound statements surrounded by parentheses inside expressions."
3000 t nil
3001 (c c++) t)
3002 (c-lang-defvar c-recognize-paren-inexpr-blocks
3003 (c-lang-const c-recognize-paren-inexpr-blocks))
3005 (c-lang-defconst c-opt-<>-arglist-start
3006 ;; Regexp matching the start of angle bracket arglists in languages
3007 ;; where `c-recognize-<>-arglists' is set. Does not exclude
3008 ;; keywords outside `c-<>-arglist-kwds'. The first submatch is
3009 ;; assumed to surround the preceding symbol. The whole match is
3010 ;; assumed to end directly after the opening "<".
3011 t (if (c-lang-const c-recognize-<>-arglists)
3012 (concat "\\("
3013 (c-lang-const c-symbol-key)
3014 "\\)"
3015 (c-lang-const c-syntactic-ws)
3016 "<")))
3017 (c-lang-defvar c-opt-<>-arglist-start (c-lang-const c-opt-<>-arglist-start))
3019 (c-lang-defconst c-opt-<>-arglist-start-in-paren
3020 ;; Regexp that in addition to `c-opt-<>-arglist-start' matches close
3021 ;; parens. The first submatch is assumed to surround
3022 ;; `c-opt-<>-arglist-start'.
3023 t (if (c-lang-const c-opt-<>-arglist-start)
3024 (concat "\\("
3025 (c-lang-const c-opt-<>-arglist-start)
3026 "\\)\\|\\s\)")))
3027 (c-lang-defvar c-opt-<>-arglist-start-in-paren
3028 (c-lang-const c-opt-<>-arglist-start-in-paren))
3030 (c-lang-defconst c-opt-postfix-decl-spec-key
3031 ;; Regexp matching the beginning of a declaration specifier in the
3032 ;; region between the header and the body of a declaration.
3034 ;; TODO: This is currently not used uniformly; c++-mode and
3035 ;; java-mode each have their own ways of using it.
3036 t nil
3037 c++ (concat ":?"
3038 (c-lang-const c-simple-ws) "*"
3039 "\\(virtual" (c-lang-const c-simple-ws) "+\\)?\\("
3040 (c-make-keywords-re nil (c-lang-const c-protection-kwds))
3041 "\\)" (c-lang-const c-simple-ws) "+"
3042 "\\(" (c-lang-const c-symbol-key) "\\)")
3043 java (c-make-keywords-re t (c-lang-const c-postfix-spec-kwds)))
3044 (c-lang-defvar c-opt-postfix-decl-spec-key
3045 (c-lang-const c-opt-postfix-decl-spec-key))
3047 (c-lang-defconst c-recognize-colon-labels
3048 "Non-nil if generic labels ending with \":\" should be recognized.
3049 That includes labels in code and access keys in classes. This does
3050 not apply to labels recognized by `c-label-kwds' and
3051 `c-opt-extra-label-key'."
3052 t nil
3053 (c c++ objc java pike) t)
3054 (c-lang-defvar c-recognize-colon-labels
3055 (c-lang-const c-recognize-colon-labels))
3057 (c-lang-defconst c-label-prefix-re
3058 "Regexp like `c-decl-prefix-re' that matches any token that can precede
3059 a generic colon label. Not used if `c-recognize-colon-labels' is
3060 nil."
3061 t "\\([{};]+\\)")
3062 (c-lang-defvar c-label-prefix-re
3063 (c-lang-const c-label-prefix-re))
3065 (c-lang-defconst c-nonlabel-token-key
3066 "Regexp matching things that can't occur in generic colon labels,
3067 neither in a statement nor in a declaration context. The regexp is
3068 tested at the beginning of every sexp in a suspected label,
3069 i.e. before \":\". Only used if `c-recognize-colon-labels' is set."
3070 t (concat
3071 ;; All keywords except `c-label-kwds' and `c-protection-kwds'.
3072 (c-make-keywords-re t
3073 (set-difference (c-lang-const c-keywords)
3074 (append (c-lang-const c-label-kwds)
3075 (c-lang-const c-protection-kwds))
3076 :test 'string-equal)))
3077 ;; Don't allow string literals, except in AWK. Character constants are OK.
3078 (c objc java pike idl) (concat "\"\\|"
3079 (c-lang-const c-nonlabel-token-key))
3080 ;; Also check for open parens in C++, to catch member init lists in
3081 ;; constructors. We normally allow it so that macros with arguments
3082 ;; work in labels.
3083 c++ (concat "\\s\(\\|\"\\|" (c-lang-const c-nonlabel-token-key)))
3084 (c-lang-defvar c-nonlabel-token-key (c-lang-const c-nonlabel-token-key))
3086 (c-lang-defconst c-nonlabel-token-2-key
3087 "Regexp matching things that can't occur two symbols before a colon in
3088 a label construct. This catches C++'s inheritance construct \"class foo
3089 : bar\". Only used if `c-recognize-colon-labels' is set."
3090 t "\\<\\>" ; matches nothing
3091 c++ (c-make-keywords-re t '("class")))
3092 (c-lang-defvar c-nonlabel-token-2-key (c-lang-const c-nonlabel-token-2-key))
3094 (c-lang-defconst c-opt-extra-label-key
3095 "Optional regexp matching labels.
3096 Normally, labels are detected according to `c-nonlabel-token-key',
3097 `c-decl-prefix-re' and `c-nonlabel-decl-prefix-re'. This regexp can
3098 be used if there are additional labels that aren't recognized that
3099 way."
3100 t nil
3101 objc (c-make-keywords-re t (c-lang-const c-protection-kwds)))
3102 (c-lang-defvar c-opt-extra-label-key (c-lang-const c-opt-extra-label-key))
3104 (c-lang-defconst c-opt-friend-key
3105 ;; Regexp describing friend declarations classes, or nil in
3106 ;; languages that don't have such things.
3108 ;; TODO: Ought to use `c-prefix-spec-kwds-re' or similar, and the
3109 ;; template skipping isn't done properly. This will disappear soon.
3110 t nil
3111 c++ (concat "friend" (c-lang-const c-simple-ws) "+"
3112 "\\|"
3113 (concat "template"
3114 (c-lang-const c-simple-ws) "*"
3115 "<.+>"
3116 (c-lang-const c-simple-ws) "*"
3117 "friend"
3118 (c-lang-const c-simple-ws) "+")))
3119 (c-lang-defvar c-opt-friend-key (c-lang-const c-opt-friend-key))
3121 (c-lang-defconst c-opt-method-key
3122 ;; Special regexp to match the start of Objective-C methods. The
3123 ;; first submatch is assumed to end after the + or - key.
3124 t nil
3125 objc (concat
3126 ;; TODO: Ought to use a better method than anchoring on bol.
3127 "^\\s *"
3128 "\\([+-]\\)"
3129 (c-lang-const c-simple-ws) "*"
3130 (concat "\\(" ; Return type.
3131 "([^\)]*)"
3132 (c-lang-const c-simple-ws) "*"
3133 "\\)?")
3134 "\\(" (c-lang-const c-symbol-key) "\\)"))
3135 (c-lang-defvar c-opt-method-key (c-lang-const c-opt-method-key))
3137 (c-lang-defconst c-type-decl-end-used
3138 ;; Must be set in buffers where the `c-type' text property might be
3139 ;; used with the value `c-decl-end'.
3141 ;; `c-decl-end' is used to mark the ends of labels and access keys
3142 ;; to make interactive refontification work better.
3143 t (or (c-lang-const c-recognize-colon-labels)
3144 (and (c-lang-const c-label-kwds) t))
3145 ;; `c-decl-end' is used to mark the end of the @-style directives in
3146 ;; Objective-C.
3147 objc t)
3148 (c-lang-defvar c-type-decl-end-used (c-lang-const c-type-decl-end-used))
3151 ;;; Wrap up the `c-lang-defvar' system.
3153 ;; Compile in the list of language variables that has been collected
3154 ;; with the `c-lang-defvar' and `c-lang-setvar' macros. Note that the
3155 ;; first element of each is nil.
3156 (defconst c-lang-variable-inits (cc-eval-when-compile c-lang-variable-inits))
3157 (defconst c-emacs-variable-inits (cc-eval-when-compile c-emacs-variable-inits))
3159 ;; Make the `c-lang-setvar' variables buffer local in the current buffer.
3160 ;; These are typically standard emacs variables such as `comment-start'.
3161 (defmacro c-make-emacs-variables-local ()
3162 `(progn
3163 ,@(mapcar (lambda (init)
3164 `(make-local-variable ',(car init)))
3165 (cdr c-emacs-variable-inits))))
3167 (defun c-make-init-lang-vars-fun (mode)
3168 "Create a function that initializes all the language dependent variables
3169 for the given mode.
3171 This function should be evaluated at compile time, so that the
3172 function it returns is byte compiled with all the evaluated results
3173 from the language constants. Use the `c-init-language-vars' macro to
3174 accomplish that conveniently."
3176 (if (and (not load-in-progress)
3177 (boundp 'byte-compile-dest-file)
3178 (stringp byte-compile-dest-file))
3180 ;; No need to byte compile this lambda since the byte compiler is
3181 ;; smart enough to detect the `funcall' construct in the
3182 ;; `c-init-language-vars' macro below and compile it all straight
3183 ;; into the function that contains `c-init-language-vars'.
3184 `(lambda ()
3186 ;; This let sets up the context for `c-mode-var' and similar
3187 ;; that could be in the result from `macroexpand-all'.
3188 (let ((c-buffer-is-cc-mode ',mode)
3189 current-var source-eval)
3190 (c-make-emacs-variables-local)
3191 (condition-case err
3193 (if (eq c-version-sym ',c-version-sym)
3194 (setq ,@(let ((c-buffer-is-cc-mode mode)
3195 (c-lang-const-expansion 'immediate))
3196 ;; `c-lang-const' will expand to the evaluated
3197 ;; constant immediately in `macroexpand-all'
3198 ;; below.
3199 (cl-mapcan
3200 (lambda (init)
3201 `(current-var ',(car init)
3202 ,(car init) ,(macroexpand-all
3203 (elt init 1))))
3204 ;; Note: The following `append' copies the
3205 ;; first argument. That list is small, so
3206 ;; this doesn't matter too much.
3207 (append (cdr c-emacs-variable-inits)
3208 (cdr c-lang-variable-inits)))))
3210 ;; This diagnostic message isn't useful for end
3211 ;; users, so it's disabled.
3212 ;;(unless (get ',mode 'c-has-warned-lang-consts)
3213 ;; (message ,(concat "%s compiled with CC Mode %s "
3214 ;; "but loaded with %s - evaluating "
3215 ;; "language constants from source")
3216 ;; ',mode ,c-version c-version)
3217 ;; (put ',mode 'c-has-warned-lang-consts t))
3219 (setq source-eval t)
3220 (let ((init ',(append (cdr c-emacs-variable-inits)
3221 (cdr c-lang-variable-inits))))
3222 (while init
3223 (setq current-var (caar init))
3224 (set (caar init) (eval (cadar init)))
3225 (setq init (cdr init)))))
3227 (error
3228 (if current-var
3229 (message "Eval error in the `c-lang-defvar' or `c-lang-setvar' for `%s'%s: %S"
3230 current-var
3231 (if source-eval
3232 (format "\
3233 (fallback source eval - %s compiled with CC Mode %s but loaded with %s)"
3234 ',mode ,c-version c-version)
3236 err)
3237 (signal (car err) (cdr err)))))))
3239 ;; Being evaluated from source. Always use the dynamic method to
3240 ;; work well when `c-lang-defvar's in this file are reevaluated
3241 ;; interactively.
3242 `(lambda ()
3243 (require 'cc-langs)
3244 (let ((c-buffer-is-cc-mode ',mode)
3245 (init (append (cdr c-emacs-variable-inits)
3246 (cdr c-lang-variable-inits)))
3247 current-var)
3248 (c-make-emacs-variables-local)
3249 (condition-case err
3251 (while init
3252 (setq current-var (caar init))
3253 (set (caar init) (eval (cadar init)))
3254 (setq init (cdr init)))
3256 (error
3257 (if current-var
3258 (message
3259 "Eval error in the `c-lang-defvar' or `c-lang-setver' for `%s' (source eval): %S"
3260 current-var err)
3261 (signal (car err) (cdr err)))))))
3264 (defmacro c-init-language-vars (mode)
3265 "Initialize all the language dependent variables for the given mode.
3266 This macro is expanded at compile time to a form tailored for the mode
3267 in question, so MODE must be a constant. Therefore MODE is not
3268 evaluated and should not be quoted."
3269 `(funcall ,(c-make-init-lang-vars-fun mode)))
3272 (cc-provide 'cc-langs)
3274 ;;; cc-langs.el ends here