Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / progmodes / cc-vars.el
CommitLineData
785eecbb
RS
1;;; cc-vars.el --- user customization variables for CC Mode
2
92ab3834 3;; Copyright (C) 1985, 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4e643dd2 4;; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
d7a0267c 5;; Free Software Foundation, Inc.
785eecbb 6
e309f66c
AM
7;; Authors: 2002- Alan Mackenzie
8;; 1998- Martin Stjernholm
d9e94c22 9;; 1992-1999 Barry A. Warsaw
785eecbb
RS
10;; 1987 Dave Detlefs and Stewart Clamen
11;; 1985 Richard M. Stallman
0ec8351b 12;; Maintainer: bug-cc-mode@gnu.org
785eecbb 13;; Created: 22-Apr-1997 (split from cc-mode.el)
541aeedf 14;; Version: See cc-mode.el
785eecbb
RS
15;; Keywords: c languages oop
16
17;; This file is part of GNU Emacs.
18
b1fc2b50 19;; GNU Emacs is free software: you can redistribute it and/or modify
785eecbb 20;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
21;; the Free Software Foundation, either version 3 of the License, or
22;; (at your option) any later version.
785eecbb
RS
23
24;; GNU Emacs is distributed in the hope that it will be useful,
25;; but WITHOUT ANY WARRANTY; without even the implied warranty of
26;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27;; GNU General Public License for more details.
28
29;; You should have received a copy of the GNU General Public License
b1fc2b50 30;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
785eecbb 31
3afbc435
PJ
32;;; Commentary:
33
34;;; Code:
35
0ec8351b 36(eval-when-compile
51f606de 37 (let ((load-path
130c507e
GM
38 (if (and (boundp 'byte-compile-dest-file)
39 (stringp byte-compile-dest-file))
40 (cons (file-name-directory byte-compile-dest-file) load-path)
51f606de 41 load-path)))
d9e94c22 42 (load "cc-bytecomp" nil t)))
130c507e
GM
43
44(cc-require 'cc-defs)
45
46;; Silence the compiler.
0386b551
AM
47(cc-bytecomp-defun get-char-table) ; XEmacs
48
49(cc-eval-when-compile
50 (require 'custom)
51 (require 'widget))
51f606de 52
a66cd3ee
MS
53(cc-eval-when-compile
54 ;; Need the function form of `backquote', which isn't standardized
55 ;; between Emacsen. It's called `bq-process' in XEmacs, and
56 ;; `backquote-process' in Emacs. `backquote-process' returns a
57 ;; slightly more convoluted form, so let `bq-process' be the norm.
58 (if (fboundp 'backquote-process)
59 (cc-bytecomp-defmacro bq-process (form)
60 `(cdr (backquote-process ,form)))))
61
51f606de
GM
62\f
63;;; Helpers
64
d9e94c22 65;; This widget exists in newer versions of the Custom library
51f606de
GM
66(or (get 'other 'widget-type)
67 (define-widget 'other 'sexp
68 "Matches everything, but doesn't let the user edit the value.
69Useful as last item in a `choice' widget."
70 :tag "Other"
71 :format "%t%n"
72 :value 'other))
73
b4d0e517 74;; The next defun will supersede c-const-symbol.
3a3995f8
AM
75(eval-and-compile
76 (defun c-constant-symbol (sym len)
b4d0e517
AM
77 "Create an uneditable symbol for customization buffers.
78SYM is the name of the symbol, LEN the length of the field (in
79characters) the symbol will be displayed in. LEN must be big
80enough.
81
82This returns a (const ....) structure, suitable for embedding
83within a customization type."
84 (or (symbolp sym) (error "c-constant-symbol: %s is not a symbol" sym))
85 (let* ((name (symbol-name sym))
86 (l (length name))
87 (disp (concat name ":" (make-string (- len l 1) ?\ ))))
88 `(const
89 :size ,len
90 :format ,disp
3a3995f8 91 :value ,sym))))
b4d0e517 92
51f606de 93(define-widget 'c-const-symbol 'item
b4d0e517
AM
94 "An uneditable lisp symbol. This is obsolete -
95use c-constant-symbol instead."
51f606de
GM
96 :value nil
97 :tag "Symbol"
98 :format "%t: %v\n%d"
99 :match (lambda (widget value) (symbolp value))
100 :value-to-internal
101 (lambda (widget value)
102 (let ((s (if (symbolp value)
103 (symbol-name value)
104 value))
105 (l (widget-get widget :size)))
106 (if l
107 (setq s (concat s (make-string (- l (length s)) ?\ ))))
108 s))
109 :value-to-external
110 (lambda (widget value)
111 (if (stringp value)
112 (intern (progn
113 (string-match "\\`[^ ]*" value)
114 (match-string 0 value)))
115 value)))
116
a66cd3ee
MS
117(define-widget 'c-integer-or-nil 'sexp
118 "An integer or the value nil."
119 :value nil
120 :tag "Optional integer"
121 :match (lambda (widget value) (or (integerp value) (null value))))
122
d9e94c22
MS
123(define-widget 'c-symbol-list 'sexp
124 "A single symbol or a list of symbols."
125 :tag "Symbols separated by spaces"
126 :validate 'widget-field-validate
127 :match
128 (lambda (widget value)
129 (or (symbolp value)
130 (catch 'ok
131 (while (listp value)
132 (unless (symbolp (car value))
133 (throw 'ok nil))
134 (setq value (cdr value)))
135 (null value))))
136 :value-to-internal
137 (lambda (widget value)
138 (cond ((null value)
139 "")
140 ((symbolp value)
141 (symbol-name value))
142 ((consp value)
143 (mapconcat (lambda (symbol)
144 (symbol-name symbol))
145 value
146 " "))
147 (t
148 value)))
149 :value-to-external
150 (lambda (widget value)
151 (if (stringp value)
152 (let (list end)
153 (while (string-match "\\S +" value end)
154 (setq list (cons (intern (match-string 0 value)) list)
155 end (match-end 0)))
156 (if (and list (not (cdr list)))
157 (car list)
158 (nreverse list)))
159 value)))
160
51f606de 161(defvar c-style-variables
a66cd3ee
MS
162 '(c-basic-offset c-comment-only-line-offset c-indent-comment-alist
163 c-indent-comments-syntactically-p c-block-comment-prefix
d9e94c22
MS
164 c-comment-prefix-regexp c-doc-comment-style c-cleanup-list
165 c-hanging-braces-alist c-hanging-colons-alist
166 c-hanging-semi&comma-criteria c-backslash-column c-backslash-max-column
167 c-special-indent-hook c-label-minimum-indentation c-offsets-alist)
51f606de
GM
168 "List of the style variables.")
169
a66cd3ee
MS
170(defvar c-fallback-style nil)
171
172(defsubst c-set-stylevar-fallback (name val)
173 (put name 'c-stylevar-fallback val)
174 (setq c-fallback-style (cons (cons name val) c-fallback-style)))
175
51f606de 176(defmacro defcustom-c-stylevar (name val doc &rest args)
6e4fcd29
GM
177 "Define a style variable NAME with VAL and DOC.
178More precisely, convert the given `:type FOO', mined out of ARGS,
179to an aggregate `:type (radio STYLE (PREAMBLE FOO))', append some
180some boilerplate documentation to DOC, arrange for the fallback
181value of NAME to be VAL, and call `custom-declare-variable' to
182do the rest of the work.
183
184STYLE stands for the choice where the value is taken from some
185style setting. PREAMBLE is optionally prepended to FOO; that is,
186if FOO contains :tag or :value, the respective two-element list
187component is ignored."
188 (declare (debug (symbolp form stringp &rest)))
189 (let* ((expanded-doc (concat doc "
51f606de
GM
190
191This is a style variable. Apart from the valid values described
6e4fcd29
GM
192above, it can be set to the symbol `set-from-style'. In that case,
193it takes its value from the style system (see `c-default-style' and
a66cd3ee 194`c-style-alist') when a CC Mode buffer is initialized. Otherwise,
51f606de 195the value set here overrides the style system (there is a variable
6e4fcd29
GM
196`c-old-style-variable-behavior' that changes this, though)."))
197 (typ (eval (plist-get args :type)))
198 (type (if (consp typ) typ (list typ)))
199 (head (car type))
200 (tail (cdr type))
201 (newt (append (unless (plist-get tail :tag)
202 '(:tag "Override style settings"))
203 (unless (plist-get tail :value)
204 `(:value ,(eval val)))
205 tail))
206 (aggregate `'(radio
207 (const :tag "Use style settings" set-from-style)
208 ,(cons head newt))))
209 `(progn
210 (c-set-stylevar-fallback ',name ,val)
211 (custom-declare-variable
212 ',name ''set-from-style
213 ,expanded-doc
214 ,@(plist-put args :type aggregate)))))
51f606de
GM
215
216(defun c-valid-offset (offset)
e7f767c2 217 "Return non-nil if OFFSET is a valid offset for a syntactic symbol.
51f606de
GM
218See `c-offsets-alist'."
219 (or (eq offset '+)
220 (eq offset '-)
221 (eq offset '++)
222 (eq offset '--)
223 (eq offset '*)
224 (eq offset '/)
225 (integerp offset)
226 (functionp offset)
0386b551 227 (and (symbolp offset) (boundp offset))
a66cd3ee
MS
228 (and (vectorp offset)
229 (= (length offset) 1)
230 (integerp (elt offset 0)))
0386b551
AM
231 (and (consp offset)
232 (not (eq (car offset) 'quote)) ; Detect misquoted lists.
233 (progn
234 (when (memq (car offset) '(first min max add))
235 (setq offset (cdr offset)))
236 (while (and (consp offset)
237 (c-valid-offset (car offset)))
238 (setq offset (cdr offset)))
239 (null offset)))))
51f606de
GM
240
241
785eecbb 242\f
51f606de
GM
243;;; User variables
244
785eecbb
RS
245(defcustom c-strict-syntax-p nil
246 "*If non-nil, all syntactic symbols must be found in `c-offsets-alist'.
247If the syntactic symbol for a particular line does not match a symbol
0ec8351b
BW
248in the offsets alist, or if no non-nil offset value can be determined
249for a symbol, an error is generated, otherwise no error is reported
51f606de
GM
250and the syntactic symbol is ignored.
251
252This variable is considered obsolete; it doesn't work well with lineup
253functions that return nil to support the feature of using lists on
254syntactic symbols in `c-offsets-alist'. Please keep it set to nil."
785eecbb
RS
255 :type 'boolean
256 :group 'c)
257
258(defcustom c-echo-syntactic-information-p nil
259 "*If non-nil, syntactic info is echoed when the line is indented."
260 :type 'boolean
261 :group 'c)
262
a66cd3ee
MS
263(defcustom c-report-syntactic-errors nil
264 "*If non-nil, certain syntactic errors are reported with a ding
265and a message, for example when an \"else\" is indented for which
266there's no corresponding \"if\".
267
268Note however that CC Mode doesn't make any special effort to check for
269syntactic errors; that's the job of the compiler. The reason it can
270report cases like the one above is that it can't find the correct
271anchoring position to indent the line in that case."
272 :type 'boolean
273 :group 'c)
274
51f606de 275(defcustom-c-stylevar c-basic-offset 4
e96f5cb7
GM
276 "*Amount of basic offset used by + and - symbols in `c-offsets-alist'.
277Also used as the indentation step when `c-syntactic-indentation' is
278nil."
785eecbb
RS
279 :type 'integer
280 :group 'c)
631c8020 281;;;###autoload(put 'c-basic-offset 'safe-local-variable 'integerp)
785eecbb
RS
282
283(defcustom c-tab-always-indent t
284 "*Controls the operation of the TAB key.
2a15eb73
MS
285If t, hitting TAB always just indents the current line. If nil, hitting
286TAB indents the current line if point is at the left margin or in the
287line's indentation, otherwise it inserts a `real' tab character \(see
288note\). If some other value (not nil or t), then tab is inserted only
289within literals \(comments and strings), but the line is always
290reindented.
785eecbb
RS
291
292Note: The value of `indent-tabs-mode' will determine whether a real
51f606de 293tab character will be inserted, or the equivalent number of spaces.
785eecbb
RS
294When inserting a tab, actually the function stored in the variable
295`c-insert-tab-function' is called.
296
297Note: indentation of lines containing only comments is also controlled
298by the `c-comment-only-line-offset' variable."
299 :type '(radio
a66cd3ee
MS
300 (const :tag "TAB key always indents, never inserts TAB" t)
301 (const :tag "TAB key indents in left margin, otherwise inserts TAB" nil)
302 (other :tag "TAB key inserts TAB in literals, otherwise indents" other))
785eecbb
RS
303 :group 'c)
304
305(defcustom c-insert-tab-function 'insert-tab
e96f5cb7 306 "*Function used when inserting a tab for \\[c-indent-command].
785eecbb
RS
307Only used when `c-tab-always-indent' indicates a `real' tab character
308should be inserted. Value must be a function taking no arguments."
309 :type 'function
310 :group 'c)
311
e96f5cb7 312(defcustom c-syntactic-indentation t
130c507e 313 "*Whether the indentation should be controlled by the syntactic context.
e96f5cb7 314
a66cd3ee 315If t, the indentation functions indent according to the syntactic
e96f5cb7
GM
316context, using the style settings specified by `c-offsets-alist'.
317
318If nil, every line is just indented to the same level as the previous
a66cd3ee
MS
319one, and the \\[c-indent-command] command adjusts the indentation in
320steps specified by `c-basic-offset'. The indentation style has no
321effect in this mode, nor any of the indentation associated variables,
e96f5cb7
GM
322e.g. `c-special-indent-hook'."
323 :type 'boolean
324 :group 'c)
0386b551 325(make-variable-buffer-local 'c-syntactic-indentation)
fc9a9287 326(put 'c-syntactic-indentation 'safe-local-variable 'booleanp)
e96f5cb7 327
a66cd3ee
MS
328(defcustom c-syntactic-indentation-in-macros t
329 "*Enable syntactic analysis inside macros.
330If this is nil, all lines inside macro definitions are analyzed as
331`cpp-macro-cont'. Otherwise they are analyzed syntactically, just
332like normal code, and `cpp-define-intro' is used to create the
333additional indentation of the bodies of \"#define\" macros.
334
335Having this enabled simplifies editing of large multiline macros, but
336it might complicate editing if CC Mode doesn't recognize the context
337of the macro content. The default context inside the macro is the
338same as the top level, so if it contains \"bare\" statements they
339might be indented wrongly, although there are special cases that
d9e94c22 340handle this in most cases. If this problem occurs, it's usually
a66cd3ee
MS
341countered easily by surrounding the statements by a block \(or even
342better with the \"do { ... } while \(0)\" trick)."
343 :type 'boolean
344 :group 'c)
fc9a9287 345(put 'c-syntactic-indentation-in-macros 'safe-local-variable 'booleanp)
a66cd3ee 346
51f606de 347(defcustom-c-stylevar c-comment-only-line-offset 0
785eecbb
RS
348 "*Extra offset for line which contains only the start of a comment.
349Can contain an integer or a cons cell of the form:
350
351 (NON-ANCHORED-OFFSET . ANCHORED-OFFSET)
352
353Where NON-ANCHORED-OFFSET is the amount of offset given to
354non-column-zero anchored comment-only lines, and ANCHORED-OFFSET is
355the amount of offset to give column-zero anchored comment-only lines.
51f606de
GM
356Just an integer as value is equivalent to (<val> . -1000).
357
358Note that this variable only has effect when the `c-lineup-comment'
359lineup function is used on the `comment-intro' syntactic symbol (the
360default)."
361 :type '(choice (integer :tag "Non-anchored offset" 0)
785eecbb
RS
362 (cons :tag "Non-anchored & anchored offset"
363 :value (0 . 0)
785eecbb
RS
364 (integer :tag "Non-anchored offset")
365 (integer :tag "Anchored offset")))
366 :group 'c)
367
a66cd3ee
MS
368(defcustom-c-stylevar c-indent-comment-alist
369 '((anchored-comment . (column . 0))
370 (end-block . (space . 1))
371 (cpp-end-block . (space . 2)))
372 "*Specifies how \\[indent-for-comment] calculates the comment start column.
373This is an association list that contains entries of the form:
374
375 (LINE-TYPE . INDENT-SPEC)
376
377LINE-TYPE specifies a type of line as described below, and INDENT-SPEC
378says what \\[indent-for-comment] should do when used on that type of line.
379
380The recognized values for LINE-TYPE are:
381
382 empty-line -- The line is empty.
383 anchored-comment -- The line contains a comment that starts in column 0.
384 end-block -- The line contains a solitary block closing brace.
385 cpp-end-block -- The line contains a preprocessor directive that
386 closes a block, i.e. either \"#endif\" or \"#else\".
387 other -- The line does not match any other entry
388 currently on the list.
389
390An INDENT-SPEC is a cons cell of the form:
391
392 (ACTION . VALUE)
393
394ACTION says how \\[indent-for-comment] should align the comment, and
395VALUE is interpreted depending on ACTION. ACTION can be any of the
396following:
397
398 space -- Put VALUE spaces between the end of the line and the start
399 of the comment.
400 column -- Start the comment at the column VALUE. If the line is
401 longer than that, the comment is preceded by a single
402 space. If VALUE is nil, `comment-column' is used.
403 align -- Align the comment with one on the previous line, if there
404 is any. If the line is too long, the comment is preceded
405 by a single space. If there isn't a comment start on the
406 previous line, the behavior is specified by VALUE, which
407 in turn is interpreted as an INDENT-SPEC.
408
409If a LINE-TYPE is missing, then \\[indent-for-comment] indents the comment
410according to `comment-column'.
411
412Note that a non-nil value on `c-indent-comments-syntactically-p'
413overrides this variable, so empty lines are indentented syntactically
414in that case, i.e. as if \\[c-indent-command] was used instead."
415 :type
416 (let ((space '(cons :tag "space"
417 :format "%v"
418 :value (space . 1)
419 (const :format "space " space)
420 (integer :format "%v")))
421 (column '(cons :tag "column"
422 :format "%v"
423 (const :format "column " column)
424 (c-integer-or-nil :format "%v"))))
425 `(set ,@(mapcar
426 (lambda (elt)
427 `(cons :format "%v"
b4d0e517 428 ,(c-constant-symbol elt 20)
a66cd3ee
MS
429 (choice
430 :format "%[Choice%] %v"
431 :value (column . nil)
432 ,space
433 ,column
434 (cons :tag "align"
435 :format "%v"
436 (const :format "align " align)
437 (choice
438 :format "%[Choice%] %v"
439 :value (column . nil)
440 ,space
441 ,column)))))
442 '(empty-line anchored-comment end-block cpp-end-block other))))
443 :group 'c)
444
445(defcustom-c-stylevar c-indent-comments-syntactically-p nil
51f606de 446 "*Specifies how \\[indent-for-comment] should handle comment-only lines.
785eecbb 447When this variable is non-nil, comment-only lines are indented
51f606de
GM
448according to syntactic analysis via `c-offsets-alist'. Otherwise, the
449comment is indented as if it was preceded by code. Note that this
450variable does not affect how the normal line indentation treats
451comment-only lines."
785eecbb
RS
452 :type 'boolean
453 :group 'c)
454
130c507e
GM
455(make-obsolete-variable 'c-comment-continuation-stars
456 'c-block-comment-prefix)
457
458;; Although c-comment-continuation-stars is obsolete, we look at it in
459;; some places in CC Mode anyway, so make the compiler ignore it
460;; during our compilation.
d2f79585
TTN
461;; [This is unclean; better to use `symbol-value'. --ttn]
462;;(cc-bytecomp-obsolete-var c-comment-continuation-stars)
463;;(cc-bytecomp-defvar c-comment-continuation-stars)
130c507e 464
51f606de
GM
465(defcustom-c-stylevar c-block-comment-prefix
466 (if (boundp 'c-comment-continuation-stars)
d2f79585 467 (symbol-value 'c-comment-continuation-stars)
51f606de
GM
468 "* ")
469 "*Specifies the line prefix of continued C-style block comments.
d278ad4f
RS
470You should set this variable to the literal string that gets inserted
471at the front of continued block style comment lines. This should
51f606de
GM
472either be the empty string, or some characters without preceding
473spaces. To adjust the alignment under the comment starter, put an
474appropriate value on the `c' syntactic symbol (see the
475`c-offsets-alist' variable).
476
477It's only used when a one-line block comment is broken into two or
478more lines for the first time; otherwise the appropriate prefix is
479adapted from the comment. This variable is not used for C++ line
480style comments."
a66cd3ee 481 :type 'string
51f606de
GM
482 :group 'c)
483
130c507e
GM
484(defcustom-c-stylevar c-comment-prefix-regexp
485 '((pike-mode . "//+!?\\|\\**")
0386b551 486 (awk-mode . "#+")
130c507e 487 (other . "//+\\|\\**"))
51f606de
GM
488 "*Regexp to match the line prefix inside comments.
489This regexp is used to recognize the fill prefix inside comments for
490correct paragraph filling and other things.
491
130c507e
GM
492If this variable is a string, it will be used in all CC Mode major
493modes. It can also be an association list, to associate specific
494regexps to specific major modes. The symbol for the major mode is
495looked up in the association list, and its value is used as the line
496prefix regexp. If it's not found, then the symbol `other' is looked
497up and its value is used instead.
498
499The regexp should match the prefix used in both C++ style line
500comments and C style block comments, but it does not need to match a
501block comment starter. In other words, it should at least match
502\"//\" for line comments and the string in `c-block-comment-prefix',
503which is sometimes inserted by CC Mode inside block comments. It
504should not match any surrounding whitespace.
51f606de 505
a66cd3ee 506Note that CC Mode uses this variable to set many other variables that
d9e94c22 507handle the paragraph filling. That's done at mode initialization or
a66cd3ee
MS
508when you switch to a style which sets this variable. Thus, if you
509change it in some other way, e.g. interactively in a CC Mode buffer,
0923382c
MS
510you will need to do \\[c-setup-paragraph-variables] afterwards so that
511the other variables are updated with the new value.
a66cd3ee 512
0923382c
MS
513Note also that when CC Mode starts up, all variables are initialized
514before the mode hooks are run. It's therefore necessary to make a
515call to `c-setup-paragraph-variables' explicitly if you change this
516variable in a mode hook."
130c507e
GM
517 :type '(radio
518 (regexp :tag "Regexp for all modes")
519 (list
520 :tag "Mode-specific regexps"
521 (set
522 :inline t :format "%v"
523 (cons :format "%v"
524 (const :format "C " c-mode) (regexp :format "%v"))
525 (cons :format "%v"
526 (const :format "C++ " c++-mode) (regexp :format "%v"))
527 (cons :format "%v"
528 (const :format "ObjC " objc-mode) (regexp :format "%v"))
529 (cons :format "%v"
530 (const :format "Java " java-mode) (regexp :format "%v"))
531 (cons :format "%v"
532 (const :format "IDL " idl-mode) (regexp :format "%v"))
533 (cons :format "%v"
0386b551
AM
534 (const :format "Pike " pike-mode) (regexp :format "%v"))
535 (cons :format "%v"
536 (const :format "AWK " awk-mode) (regexp :format "%v")))
130c507e
GM
537 (cons :format " %v"
538 (const :format "Other " other) (regexp :format "%v"))))
d278ad4f
RS
539 :group 'c)
540
d9e94c22
MS
541(defcustom-c-stylevar c-doc-comment-style
542 '((java-mode . javadoc)
0386b551
AM
543 (pike-mode . autodoc)
544 (c-mode . gtkdoc))
d9e94c22
MS
545 "*Specifies documentation comment style(s) to recognize.
546This is primarily used to fontify doc comments and the markup within
547them, e.g. Javadoc comments.
548
549The value can be any of the following symbols for various known doc
550comment styles:
551
552 javadoc -- Javadoc style for \"/** ... */\" comments (default in Java mode).
553 autodoc -- Pike autodoc style for \"//! ...\" comments (default in Pike mode).
0386b551 554 gtkdoc -- GtkDoc style for \"/** ... **/\" comments (default in C mode).
d9e94c22
MS
555
556The value may also be a list of doc comment styles, in which case all
557of them are recognized simultaneously (presumably with markup cues
558that don't conflict).
559
560The value may also be an association list to specify different doc
561comment styles for different languages. The symbol for the major mode
562is then looked up in the alist, and the value of that element is
563interpreted as above if found. If it isn't found then the symbol
564`other' is looked up and its value is used instead.
565
566Note that CC Mode uses this variable to set other variables that
567handle fontification etc. That's done at mode initialization or when
568you switch to a style which sets this variable. Thus, if you change
569it in some other way, e.g. interactively in a CC Mode buffer, you will
570need to do \\[java-mode] (or whatever mode you're currently using) to
571reinitialize.
572
573Note also that when CC Mode starts up, the other variables are
574modified before the mode hooks are run. If you change this variable
575in a mode hook, you have to call `c-setup-doc-comment-style'
576afterwards to redo that work."
577 ;; Symbols other than those documented above may be used on this
578 ;; variable. If a variable exists that has that name with
579 ;; "-font-lock-keywords" appended, it's value is prepended to the
580 ;; font lock keywords list. If it's a function then it's called and
581 ;; the result is prepended.
582 :type '(radio
583 (c-symbol-list :tag "Doc style(s) in all modes")
584 (list
585 :tag "Mode-specific doc styles"
586 (set
587 :inline t :format "%v"
588 (cons :format "%v"
589 (const :format "C " c-mode)
590 (c-symbol-list :format "%v"))
591 (cons :format "%v"
592 (const :format "C++ " c++-mode)
593 (c-symbol-list :format "%v"))
594 (cons :format "%v"
595 (const :format "ObjC " objc-mode)
596 (c-symbol-list :format "%v"))
597 (cons :format "%v"
598 (const :format "Java " java-mode)
599 (c-symbol-list :format "%v"))
600 (cons :format "%v"
601 (const :format "IDL " idl-mode)
602 (c-symbol-list :format "%v"))
603 (cons :format "%v"
604 (const :format "Pike " pike-mode)
605 (c-symbol-list :format "%v"))
0386b551
AM
606 (cons :format "%v"
607 (const :format "AWK " awk-mode)
608 (c-symbol-list :format "%v"))
d9e94c22
MS
609 (cons :format "%v"
610 (const :format "Other " other)
611 (c-symbol-list :format "%v")))))
612 :group 'c)
613
51f606de
GM
614(defcustom c-ignore-auto-fill '(string cpp code)
615 "*List of contexts in which automatic filling never occurs.
616If Auto Fill mode is active, it will be temporarily disabled if point
617is in any context on this list. It's e.g. useful to enable Auto Fill
618in comments only, but not in strings or normal code. The valid
619contexts are:
620
621 string -- inside a string or character literal
622 c -- inside a C style block comment
623 c++ -- inside a C++ style line comment
624 cpp -- inside a preprocessor directive
625 code -- anywhere else, i.e. in normal code"
626 :type '(set
51f606de
GM
627 (const :tag "String literals" string)
628 (const :tag "C style block comments" c)
629 (const :tag "C++ style line comments" c++)
630 (const :tag "Preprocessor directives" cpp)
631 (const :tag "Normal code" code))
632 :group 'c)
633
634(defcustom-c-stylevar c-cleanup-list '(scope-operator)
785eecbb 635 "*List of various C/C++/ObjC constructs to \"clean up\".
130c507e 636The following clean ups only take place when the auto-newline feature
0386b551
AM
637is turned on, as evidenced by the `/la' appearing next to the mode
638name:
785eecbb 639
130c507e
GM
640 brace-else-brace -- Clean up \"} else {\" constructs by placing
641 entire construct on a single line. This clean
642 up only takes place when there is nothing but
785eecbb 643 white space between the braces and the `else'.
51f606de 644 Clean up occurs when the open brace after the
785eecbb 645 `else' is typed.
130c507e
GM
646 brace-elseif-brace -- Similar to brace-else-brace, but clean up
647 \"} else if (...) {\" constructs. Clean up
648 occurs after the open parenthesis and the open
649 brace.
650 brace-catch-brace -- Similar to brace-elseif-brace, but clean up
651 \"} catch (...) {\" constructs.
652 empty-defun-braces -- Clean up empty defun braces by placing the
785eecbb 653 braces on the same line. Clean up occurs when
0386b551 654 the defun closing brace is typed.
51c9af45
AM
655 one-liner-defun -- If the code inside a function body can fit in
656 a single line, then remove any newlines
657 between that line and the defun braces so that
658 the whole body becomes a single line.
0386b551
AM
659 `c-max-one-liner-length' gives the maximum
660 length allowed for the resulting line. Clean
661 up occurs when the closing brace is typed.
130c507e 662 defun-close-semi -- Clean up the terminating semi-colon on defuns
0386b551
AM
663 by placing the semi-colon on the same line as
664 the closing brace. Clean up occurs when the
665 semi-colon is typed.
130c507e 666 list-close-comma -- Clean up commas following braces in array
785eecbb 667 and aggregate initializers. Clean up occurs
0386b551 668 when the comma is typed.
130c507e 669 scope-operator -- Clean up double colons which may designate
0386b551
AM
670 a C++ scope operator split across multiple
671 lines. Note that certain C++ constructs can
672 generate ambiguous situations. This clean up
673 only takes place when there is nothing but
674 whitespace between colons. Clean up occurs
675 when the second colon is typed.
130c507e
GM
676
677The following clean ups always take place when they are on this list,
678regardless of the auto-newline feature, since they typically don't
679involve auto-newline inserted newlines:
680
681 space-before-funcall -- Insert exactly one space before the opening
682 parenthesis of a function call. Clean up
683 occurs when the opening parenthesis is typed.
684 compact-empty-funcall -- Clean up any space before the function call
0386b551 685 opening parenthesis if and only if the
130c507e
GM
686 argument list is empty. This is typically
687 useful together with `space-before-funcall' to
688 get the style \"foo (bar)\" and \"foo()\".
689 Clean up occurs when the closing parenthesis
0386b551
AM
690 is typed.
691 comment-close-slash -- When a slash is typed after the comment prefix
692 on a bare line in a c-style comment, the comment
693 is closed by cleaning up preceding space and
694 inserting a star if needed."
785eecbb 695 :type '(set
0386b551 696 (const :tag "Put \"} else {\" on one line (brace-else-brace)"
130c507e 697 brace-else-brace)
0386b551 698 (const :tag "Put \"} else if (...) {\" on one line (brace-elseif-brace)"
130c507e 699 brace-elseif-brace)
0386b551 700 (const :tag "Put \"} catch (...) {\" on one line (brace-catch-brace)"
130c507e 701 brace-catch-brace)
0386b551 702 (const :tag "Put empty defun braces on one line (empty-defun-braces)"
130c507e 703 empty-defun-braces)
0386b551
AM
704 (const :tag "Put short function bodies on one line (one-liner-defun)"
705 one-liner-defun)
706 (const :tag "Put \"};\" ending defuns on one line (defun-close-semi)"
130c507e 707 defun-close-semi)
0386b551 708 (const :tag "Put \"},\" in aggregates on one line (list-close-comma)"
130c507e 709 list-close-comma)
0386b551 710 (const :tag "Put C++ style \"::\" on one line (scope-operator)"
130c507e 711 scope-operator)
0386b551 712 (const :tag "Put a space before funcall parens, e.g. \"foo (bar)\" (space-before-funcall)"
130c507e 713 space-before-funcall)
0386b551
AM
714 (const :tag "Remove space before empty funcalls, e.g. \"foo()\" (compact-empty-funcall)"
715 compact-empty-funcall)
716 (const :tag "Make / on a bare line of a C-style comment close it (comment-close-slash)"
717 comment-close-slash))
785eecbb
RS
718 :group 'c)
719
51f606de
GM
720(defcustom-c-stylevar c-hanging-braces-alist '((brace-list-open)
721 (brace-entry-open)
d9e94c22 722 (statement-cont)
51f606de
GM
723 (substatement-open after)
724 (block-close . c-snug-do-while)
725 (extern-lang-open after)
d9e94c22
MS
726 (namespace-open after)
727 (module-open after)
728 (composition-open after)
51f606de 729 (inexpr-class-open after)
4fae8922
AM
730 (inexpr-class-close before)
731 (arglist-cont-nonempty))
51f606de
GM
732 "*Controls the insertion of newlines before and after braces
733when the auto-newline feature is active. This variable contains an
734association list with elements of the following form:
735\(SYNTACTIC-SYMBOL . ACTION).
785eecbb
RS
736
737When a brace (either opening or closing) is inserted, the syntactic
738context it defines is looked up in this list, and if found, the
739associated ACTION is used to determine where newlines are inserted.
740If the context is not found, the default is to insert a newline both
741before and after the brace.
742
d9e94c22
MS
743SYNTACTIC-SYMBOL can be statement-cont, brace-list-intro,
744inexpr-class-open, inexpr-class-close, and any of the *-open and
745*-close symbols. See `c-offsets-alist' for details, except for
746inexpr-class-open and inexpr-class-close, which doesn't have any
747corresponding symbols there. Those two symbols are used for the
748opening and closing braces, respectively, of anonymous inner classes
749in Java.
785eecbb
RS
750
751ACTION can be either a function symbol or a list containing any
752combination of the symbols `before' or `after'. If the list is empty,
753no newlines are inserted either before or after the brace.
754
755When ACTION is a function symbol, the function is called with a two
756arguments: the syntactic symbol for the brace and the buffer position
757at which the brace was inserted. The function must return a list as
758described in the preceding paragraph. Note that during the call to
759the function, the variable `c-syntactic-context' is set to the entire
760syntactic context for the brace line."
51f606de
GM
761 :type
762 `(set ,@(mapcar
763 (lambda (elt)
764 `(cons :format "%v"
b4d0e517 765 ,(c-constant-symbol elt 24)
51f606de 766 (choice :format "%[Choice%] %v"
a66cd3ee 767 :value (before after)
51f606de 768 (set :menu-tag "Before/after"
b4d0e517
AM
769 :format "Newline %v brace\n"
770 (const :format "%v, " before)
771 (const :format "%v " after))
51f606de 772 (function :menu-tag "Function"
b4d0e517 773 :format "Run function: %v"))))
51f606de
GM
774 '(defun-open defun-close
775 class-open class-close
776 inline-open inline-close
777 block-open block-close
d9e94c22 778 statement-cont substatement-open statement-case-open
51f606de
GM
779 brace-list-open brace-list-close
780 brace-list-intro brace-entry-open
d9e94c22 781 extern-lang-open extern-lang-close
51f606de 782 namespace-open namespace-close
d9e94c22
MS
783 module-open module-close
784 composition-open composition-close
4fae8922
AM
785 inexpr-class-open inexpr-class-close
786 arglist-cont-nonempty)))
51f606de
GM
787 :group 'c)
788
0386b551
AM
789(defcustom c-max-one-liner-length 80
790 "Maximum length of line that clean-up \"one-liner-defun\" will compact to.
791Zero or nil means no limit."
792 :type 'integer
793 :group 'c)
794
51f606de 795(defcustom-c-stylevar c-hanging-colons-alist nil
785eecbb
RS
796 "*Controls the insertion of newlines before and after certain colons.
797This variable contains an association list with elements of the
798following form: (SYNTACTIC-SYMBOL . ACTION).
799
800SYNTACTIC-SYMBOL can be any of: case-label, label, access-label,
801member-init-intro, or inher-intro.
802
803See the variable `c-hanging-braces-alist' for the semantics of this
804variable. Note however that making ACTION a function symbol is
805currently not supported for this variable."
51f606de
GM
806 :type
807 `(set ,@(mapcar
808 (lambda (elt)
809 `(cons :format "%v"
b4d0e517
AM
810 ,(c-constant-symbol elt 20)
811 (set :format "Newline %v colon\n"
812 (const :format "%v, " before)
51f606de
GM
813 (const :format "%v" after))))
814 '(case-label label access-label member-init-intro inher-intro)))
785eecbb
RS
815 :group 'c)
816
51f606de
GM
817(defcustom-c-stylevar c-hanging-semi&comma-criteria
818 '(c-semi&comma-inside-parenlist)
785eecbb
RS
819 "*List of functions that decide whether to insert a newline or not.
820The functions in this list are called, in order, whenever the
821auto-newline minor mode is activated (as evidenced by a `/a' or `/ah'
822string in the mode line), and a semicolon or comma is typed (see
823`c-electric-semi&comma'). Each function in this list is called with
824no arguments, and should return one of the following values:
825
826 nil -- no determination made, continue checking
827 'stop -- do not insert a newline, and stop checking
828 (anything else) -- insert a newline, and stop checking
829
830If every function in the list is called with no determination made,
831then no newline is inserted."
832 :type '(repeat function)
833 :group 'c)
834
51f606de 835(defcustom-c-stylevar c-backslash-column 48
a66cd3ee
MS
836 "*Minimum alignment column for line continuation backslashes.
837This is used by the functions that automatically insert or align the
838line continuation backslashes in multiline macros. If any line in the
839macro exceeds this column then the next tab stop from that line is
aeef2654 840used as alignment column instead. See also `c-backslash-max-column'."
785eecbb
RS
841 :type 'integer
842 :group 'c)
664a80e9 843;;;###autoload(put 'c-backslash-column 'safe-local-variable 'integerp)
785eecbb 844
a66cd3ee
MS
845(defcustom-c-stylevar c-backslash-max-column 72
846 "*Maximum alignment column for line continuation backslashes.
847This is used by the functions that automatically insert or align the
848line continuation backslashes in multiline macros. If any line in the
849macro exceeds this column then the backslashes for the other lines
850will be aligned at this column."
851 :type 'integer
852 :group 'c)
853
854(defcustom c-auto-align-backslashes t
855 "*Align automatically inserted line continuation backslashes.
856When line continuation backslashes are inserted automatically for line
857breaks in multiline macros, e.g. by \\[c-context-line-break], they are
858aligned with the other backslashes in the same macro if this flag is
859set. Otherwise the inserted backslashes are preceded by a single
860space."
861 :type 'boolean
785eecbb
RS
862 :group 'c)
863
864(defcustom c-backspace-function 'backward-delete-char-untabify
865 "*Function called by `c-electric-backspace' when deleting backwards."
866 :type 'function
867 :group 'c)
868
869(defcustom c-delete-function 'delete-char
d9e94c22 870 "*Function called by `c-electric-delete-forward' when deleting forwards."
785eecbb
RS
871 :type 'function
872 :group 'c)
873
e2c21e66 874(defcustom c-require-final-newline
0386b551 875 ;; C and C++ mandate that all nonempty files should end with a
e2c21e66 876 ;; newline. Objective-C refers to C for all things it doesn't
0386b551 877 ;; specify, so the same holds there. The other languages do not
e2c21e66
MS
878 ;; require it (at least not explicitly in a normative text).
879 '((c-mode . t)
880 (c++-mode . t)
881 (objc-mode . t))
0386b551
AM
882 "*Controls whether a final newline is ensured when the file is saved.
883The value is an association list that for each language mode specifies
884the value to give to `require-final-newline' at mode initialization;
885see that variable for details about the value. If a language isn't
886present on the association list, CC Mode won't touch
887`require-final-newline' in buffers for that language."
e2c21e66
MS
888 :type `(set (cons :format "%v"
889 (const :format "C " c-mode)
0386b551 890 (symbol :format "%v" :value ,require-final-newline))
e2c21e66
MS
891 (cons :format "%v"
892 (const :format "C++ " c++-mode)
0386b551 893 (symbol :format "%v" :value ,require-final-newline))
e2c21e66
MS
894 (cons :format "%v"
895 (const :format "ObjC " objc-mode)
0386b551 896 (symbol :format "%v" :value ,require-final-newline))
e2c21e66
MS
897 (cons :format "%v"
898 (const :format "Java " java-mode)
0386b551 899 (symbol :format "%v" :value ,require-final-newline))
e2c21e66
MS
900 (cons :format "%v"
901 (const :format "IDL " idl-mode)
0386b551 902 (symbol :format "%v" :value ,require-final-newline))
e2c21e66
MS
903 (cons :format "%v"
904 (const :format "Pike " pike-mode)
0386b551
AM
905 (symbol :format "%v" :value ,require-final-newline))
906 (cons :format "%v"
907 (const :format "AWK " awk-mode)
908 (symbol :format "%v" :value ,require-final-newline)))
980a8a00
MS
909 :group 'c)
910
785eecbb
RS
911(defcustom c-electric-pound-behavior nil
912 "*List of behaviors for electric pound insertion.
913Only currently supported behavior is `alignleft'."
a66cd3ee
MS
914 :type '(set (const alignleft))
915 :group 'c)
916
917(defcustom c-special-indent-hook nil
918 "*Hook for user defined special indentation adjustments.
c788945f
AM
919This hook gets called after each line is indented by the mode. It is only
920called if `c-syntactic-indentation' is non-nil."
a66cd3ee 921 :type 'hook
785eecbb
RS
922 :group 'c)
923
51f606de 924(defcustom-c-stylevar c-label-minimum-indentation 1
037558bf 925 "*Minimum indentation for lines inside code blocks.
785eecbb 926This variable typically only affects code using the `gnu' style, which
037558bf
MS
927mandates a minimum of one space in front of every line inside code
928blocks. Specifically, the function `c-gnu-impose-minimum' on your
929`c-special-indent-hook' is what enforces this."
785eecbb
RS
930 :type 'integer
931 :group 'c)
932
933(defcustom c-progress-interval 5
934 "*Interval used to update progress status during long re-indentation.
935If a number, percentage complete gets updated after each interval of
541aeedf
KH
936that many seconds. To inhibit all messages during indentation, set
937this variable to nil."
785eecbb
RS
938 :type 'integer
939 :group 'c)
940
0386b551
AM
941(defcustom c-default-style '((java-mode . "java") (awk-mode . "awk")
942 (other . "gnu"))
0ec8351b 943 "*Style which gets installed by default when a file is visited.
87f235fb
RS
944
945The value of this variable can be any style defined in
0ec8351b
BW
946`c-style-alist', including styles you add. The value can also be an
947association list of major mode symbols to style names.
948
949When the value is a string, all CC Mode major modes will install this
130c507e 950style by default.
0ec8351b 951
51f606de
GM
952When the value is an alist, the major mode symbol is looked up in it
953and the associated style is installed. If the major mode is not
954listed in the alist, then the symbol `other' is looked up in it, and
955if found, the style in that entry is used. If `other' is not found in
956the alist, then \"gnu\" style is used.
957
958The default style gets installed before your mode hooks run, so you
959can always override the use of `c-default-style' by making calls to
130c507e 960`c-set-style' in the appropriate mode hook."
51f606de 961 :type '(radio
130c507e
GM
962 (string :tag "Style in all modes")
963 (set :tag "Mode-specific styles"
964 (cons :format "%v"
965 (const :format "C " c-mode) (string :format "%v"))
966 (cons :format "%v"
967 (const :format "C++ " c++-mode) (string :format "%v"))
968 (cons :format "%v"
969 (const :format "ObjC " objc-mode) (string :format "%v"))
970 (cons :format "%v"
971 (const :format "Java " java-mode) (string :format "%v"))
972 (cons :format "%v"
973 (const :format "IDL " idl-mode) (string :format "%v"))
974 (cons :format "%v"
975 (const :format "Pike " pike-mode) (string :format "%v"))
0386b551
AM
976 (cons :format "%v"
977 (const :format "AWK " awk-mode) (string :format "%v"))
130c507e
GM
978 (cons :format "%v"
979 (const :format "Other " other) (string :format "%v"))))
51f606de
GM
980 :group 'c)
981
a66cd3ee
MS
982;; *) At the start of a statement or declaration means in more detail:
983;; At the closest preceding statement/declaration that starts at boi
984;; and doesn't have a label or comment at that position. If there's
985;; no such statement within the same block, then back up to the
986;; surrounding block or statement, add the appropriate
987;; statement-block-intro, defun-block-intro or substatement syntax
988;; symbol and continue searching.
989(c-set-stylevar-fallback 'c-offsets-alist
51f606de 990 '((string . c-lineup-dont-change)
0386b551 991 ;; Anchor pos: Beg of previous line.
51f606de 992 (c . c-lineup-C-comments)
0386b551 993 ;; Anchor pos: Beg of the comment.
51f606de 994 (defun-open . 0)
0386b551 995 ;; Anchor pos: When inside a class: Boi at the func decl start.
a66cd3ee
MS
996 ;; When at top level: Bol at the func decl start. When inside
997 ;; a code block (only possible in Pike): At the func decl
998 ;; start(*).
51f606de 999 (defun-close . 0)
0386b551
AM
1000 ;; Anchor pos: At the defun block open if it's at boi,
1001 ;; otherwise boi at the func decl start.
51f606de 1002 (defun-block-intro . +)
0386b551 1003 ;; Anchor pos: At the block open(*).
51f606de 1004 (class-open . 0)
0386b551 1005 ;; Anchor pos: Boi at the class decl start.
51f606de 1006 (class-close . 0)
0386b551 1007 ;; Anchor pos: Boi at the class decl start.
51f606de 1008 (inline-open . +)
0386b551
AM
1009 ;; Anchor pos: None for functions (inclass got the relpos
1010 ;; then), boi at the lambda start for lambdas.
51f606de 1011 (inline-close . 0)
0386b551
AM
1012 ;; Anchor pos: Inexpr functions: At the lambda block open if
1013 ;; it's at boi, else at the statement(*) at boi of the start of
1014 ;; the lambda construct. Otherwise: At the inline block open
1015 ;; if it's at boi, otherwise boi at the func decl start.
51f606de 1016 (func-decl-cont . +)
0386b551 1017 ;; Anchor pos: Boi at the func decl start.
51f606de 1018 (knr-argdecl-intro . +)
0386b551 1019 ;; Anchor pos: Boi at the topmost intro line.
51f606de 1020 (knr-argdecl . 0)
0386b551 1021 ;; Anchor pos: At the beginning of the first K&R argdecl.
51f606de 1022 (topmost-intro . 0)
0386b551 1023 ;; Anchor pos: Bol at the last line of previous construct.
a66cd3ee 1024 (topmost-intro-cont . c-lineup-topmost-intro-cont)
0386b551 1025 ;; Anchor pos: Boi at the topmost intro line.
51f606de 1026 (member-init-intro . +)
0386b551 1027 ;; Anchor pos: Boi at the func decl arglist open.
e96f5cb7 1028 (member-init-cont . c-lineup-multi-inher)
0386b551 1029 ;; Anchor pos: Beg of the first member init.
51f606de 1030 (inher-intro . +)
0386b551 1031 ;; Anchor pos: Boi at the class decl start.
51f606de 1032 (inher-cont . c-lineup-multi-inher)
0386b551 1033 ;; Anchor pos: Java: At the implements/extends keyword start.
51f606de
GM
1034 ;; Otherwise: At the inher start colon, or boi at the class
1035 ;; decl start if the first inherit clause hangs and it's not a
1036 ;; func-local inherit clause (when does that occur?).
1037 (block-open . 0)
0386b551
AM
1038 ;; Anchor pos: Inexpr statement: At the statement(*) at boi of
1039 ;; the start of the inexpr construct. Otherwise: None.
51f606de 1040 (block-close . 0)
0386b551
AM
1041 ;; Anchor pos: Inexpr statement: At the inexpr block open if
1042 ;; it's at boi, else at the statement(*) at boi of the start of
1043 ;; the inexpr construct. Block hanging on a case/default
1044 ;; label: At the closest preceding label that starts at boi.
1045 ;; Otherwise: At the block open(*).
51f606de 1046 (brace-list-open . 0)
0386b551 1047 ;; Anchor pos: Boi at the brace list decl start, but a starting
51f606de
GM
1048 ;; "typedef" token is ignored.
1049 (brace-list-close . 0)
0386b551 1050 ;; Anchor pos: At the brace list decl start(*).
51f606de 1051 (brace-list-intro . +)
0386b551 1052 ;; Anchor pos: At the brace list decl start(*).
51f606de 1053 (brace-list-entry . 0)
0386b551
AM
1054 ;; Anchor pos: At the first non-ws char after the open paren if
1055 ;; the first token is on the same line, otherwise boi at that
51f606de
GM
1056 ;; token.
1057 (brace-entry-open . 0)
0386b551 1058 ;; Anchor pos: Same as brace-list-entry.
51f606de 1059 (statement . 0)
0386b551 1060 ;; Anchor pos: After a `;' in the condition clause of a for
51f606de 1061 ;; statement: At the first token after the starting paren.
a66cd3ee 1062 ;; Otherwise: At the preceding statement(*).
51f606de 1063 (statement-cont . +)
0386b551
AM
1064 ;; Anchor pos: After the first token in the condition clause of
1065 ;; a for statement: At the first token after the starting
1066 ;; paren. Otherwise: At the containing statement(*).
51f606de 1067 (statement-block-intro . +)
0386b551
AM
1068 ;; Anchor pos: In inexpr statement block: At the inexpr block
1069 ;; open if it's at boi, else at the statement(*) at boi of the
1070 ;; start of the inexpr construct. In a block hanging on a
a66cd3ee
MS
1071 ;; case/default label: At the closest preceding label that
1072 ;; starts at boi. Otherwise: At the start of the containing
1073 ;; block(*).
51f606de 1074 (statement-case-intro . +)
0386b551 1075 ;; Anchor pos: At the case/default label(*).
51f606de 1076 (statement-case-open . 0)
0386b551 1077 ;; Anchor pos: At the case/default label(*).
51f606de 1078 (substatement . +)
0386b551 1079 ;; Anchor pos: At the containing statement(*).
51f606de 1080 (substatement-open . +)
0386b551 1081 ;; Anchor pos: At the containing statement(*).
a66cd3ee 1082 (substatement-label . 2)
0386b551 1083 ;; Anchor pos: At the containing statement(*).
51f606de 1084 (case-label . 0)
0386b551 1085 ;; Anchor pos: At the start of the switch block(*).
51f606de 1086 (access-label . -)
0386b551 1087 ;; Anchor pos: Same as inclass.
51f606de 1088 (label . 2)
0386b551 1089 ;; Anchor pos: At the start of the containing block(*).
51f606de 1090 (do-while-closure . 0)
0386b551 1091 ;; Anchor pos: At the corresponding while statement(*).
51f606de 1092 (else-clause . 0)
0386b551 1093 ;; Anchor pos: At the corresponding if statement(*).
51f606de 1094 (catch-clause . 0)
0386b551 1095 ;; Anchor pos: At the previous try or catch statement clause(*).
a66cd3ee 1096 (comment-intro . (c-lineup-knr-region-comment c-lineup-comment))
0386b551 1097 ;; Anchor pos: None.
51f606de 1098 (arglist-intro . +)
0386b551
AM
1099 ;; Anchor pos: At the containing statement(*).
1100 ;; 2nd pos: At the open paren.
a66cd3ee 1101 (arglist-cont . (c-lineup-gcc-asm-reg 0))
0386b551 1102 ;; Anchor pos: At the first token after the open paren.
a66cd3ee 1103 (arglist-cont-nonempty . (c-lineup-gcc-asm-reg c-lineup-arglist))
0386b551 1104 ;; Anchor pos: At the containing statement(*).
d9e94c22 1105 ;; 2nd pos: At the open paren.
51f606de 1106 (arglist-close . +)
0386b551 1107 ;; Anchor pos: At the containing statement(*).
d9e94c22 1108 ;; 2nd pos: At the open paren.
51f606de 1109 (stream-op . c-lineup-streamop)
0386b551 1110 ;; Anchor pos: Boi at the first stream op in the statement.
51f606de 1111 (inclass . +)
0386b551
AM
1112 ;; Anchor pos: At the class open brace if it's at boi,
1113 ;; otherwise boi at the class decl start.
130c507e 1114 (cpp-macro . [0])
0386b551 1115 ;; Anchor pos: None.
a66cd3ee 1116 (cpp-macro-cont . +)
0386b551 1117 ;; Anchor pos: At the macro start (always at boi).
a66cd3ee 1118 (cpp-define-intro . (c-lineup-cpp-define +))
0386b551 1119 ;; Anchor pos: None.
51f606de 1120 (friend . 0)
0386b551 1121 ;; Anchor pos: None.
130c507e 1122 (objc-method-intro . [0])
0386b551 1123 ;; Anchor pos: Boi.
51f606de 1124 (objc-method-args-cont . c-lineup-ObjC-method-args)
0386b551 1125 ;; Anchor pos: At the method start (always at boi).
51f606de 1126 (objc-method-call-cont . c-lineup-ObjC-method-call)
0386b551 1127 ;; Anchor pos: At the open bracket.
51f606de 1128 (extern-lang-open . 0)
51f606de 1129 (namespace-open . 0)
d9e94c22
MS
1130 (module-open . 0)
1131 (composition-open . 0)
0386b551 1132 ;; Anchor pos: Boi at the extern/namespace/etc keyword.
d9e94c22 1133 (extern-lang-close . 0)
51f606de 1134 (namespace-close . 0)
d9e94c22
MS
1135 (module-close . 0)
1136 (composition-close . 0)
0386b551 1137 ;; Anchor pos: Boi at the corresponding extern/namespace/etc keyword.
d9e94c22 1138 (inextern-lang . +)
51f606de 1139 (innamespace . +)
d9e94c22
MS
1140 (inmodule . +)
1141 (incomposition . +)
0386b551
AM
1142 ;; Anchor pos: At the extern/namespace/etc block open brace if
1143 ;; it's at boi, otherwise boi at the keyword.
51f606de 1144 (template-args-cont . (c-lineup-template-args +))
0386b551
AM
1145 ;; Anchor pos: Boi at the decl start. This might be changed;
1146 ;; the logical position is clearly the opening '<'.
51f606de 1147 (inlambda . c-lineup-inexpr-block)
0386b551 1148 ;; Anchor pos: None.
51f606de 1149 (lambda-intro-cont . +)
0386b551 1150 ;; Anchor pos: Boi at the lambda start.
a66cd3ee 1151 (inexpr-statement . +)
0386b551 1152 ;; Anchor pos: None.
51f606de 1153 (inexpr-class . +)
0386b551 1154 ;; Anchor pos: None.
51f606de
GM
1155 ))
1156(defcustom c-offsets-alist nil
1157 "Association list of syntactic element symbols and indentation offsets.
1158As described below, each cons cell in this list has the form:
1159
1160 (SYNTACTIC-SYMBOL . OFFSET)
1161
1162When a line is indented, CC Mode first determines the syntactic
1163context of it by generating a list of symbols called syntactic
0386b551
AM
1164elements. The global variable `c-syntactic-context' is bound to the
1165that list. Each element in the list is in turn a list where the first
1166element is a syntactic symbol which tells what kind of construct the
1167indentation point is located within. More elements in the syntactic
1168element lists are optional. If there is one more and it isn't nil,
1169then it's the anchor position for that construct.
1170
1171After generating the syntactic context for the line, CC Mode
1172calculates the absolute indentation: First the base indentation is
1173found by using the anchor position for the first syntactic element
1174that provides one. If none does, zero is used as base indentation.
1175Then CC Mode looks at each syntactic element in the context in turn.
1176It compares the car of the syntactic element against the
1177SYNTACTIC-SYMBOL's in `c-offsets-alist'. When it finds a match, it
1178adds OFFSET to the base indentation. The sum of this calculation is
51f606de
GM
1179the absolute offset for line being indented.
1180
1181If the syntactic element does not match any in the `c-offsets-alist',
130c507e
GM
1182the element is ignored.
1183
0386b551
AM
1184OFFSET can specify an offset in several different ways:
1185
1186 If OFFSET is nil then it's ignored.
1187
1188 If OFFSET is an integer then it's used as relative offset, i.e. it's
1189 added to the base indentation.
130c507e 1190
0386b551
AM
1191 If OFFSET is one of the symbols `+', `-', `++', `--', `*', or `/'
1192 then a positive or negative multiple of `c-basic-offset' is added to
1193 the base indentation; 1, -1, 2, -2, 0.5, and -0.5, respectively.
130c507e 1194
0386b551
AM
1195 If OFFSET is a symbol with a value binding then that value, which
1196 must be an integer, is used as relative offset.
130c507e 1197
12f5c601 1198 If OFFSET is a vector then its first element, which must be an
0386b551
AM
1199 integer, is used as an absolute indentation column. This overrides
1200 the previous base indentation and the relative offsets applied to
1201 it, and it becomes the new base indentation.
130c507e 1202
0386b551
AM
1203 If OFFSET is a function or a lambda expression then it's called with
1204 a single argument containing the cons of the syntactic symbol and
1205 the anchor position (or nil if there is none). The return value
1206 from the function is then reinterpreted as an offset specification.
130c507e 1207
0386b551
AM
1208 If OFFSET is a list then its elements are evaluated recursively as
1209 offset specifications. If the first element is any of the symbols
1210 below then it isn't evaluated but instead specifies how the
1211 remaining offsets in the list should be combined. If it's something
1212 else then the list is combined according the method `first'. The
1213 valid combination methods are:
1214
1215 `first' -- Use the first offset (that doesn't evaluate to nil).
1216 `min' -- Use the minimum of all the offsets. All must be either
1217 relative or absolute - they can't be mixed.
1218 `max' -- Use the maximum of all the offsets. All must be either
1219 relative or absolute - they can't be mixed.
1220 `add' -- Add all the evaluated offsets together. Exactly one of
1221 them may be absolute, in which case the result is
1222 absolute. Any relative offsets that preceded the
1223 absolute one in the list will be ignored in that case.
51f606de
GM
1224
1225`c-offsets-alist' is a style variable. This means that the offsets on
1226this variable are normally taken from the style system in CC Mode
a66cd3ee 1227\(see `c-default-style' and `c-style-alist'). However, any offsets
51f606de
GM
1228put explicitly on this list will override the style system when a CC
1229Mode buffer is initialized \(there is a variable
1230`c-old-style-variable-behavior' that changes this, though).
1231
1232Here is the current list of valid syntactic element symbols:
1233
1234 string -- Inside multi-line string.
1235 c -- Inside a multi-line C style block comment.
1236 defun-open -- Brace that opens a function definition.
1237 defun-close -- Brace that closes a function definition.
1238 defun-block-intro -- The first line in a top-level defun.
1239 class-open -- Brace that opens a class definition.
1240 class-close -- Brace that closes a class definition.
1241 inline-open -- Brace that opens an in-class inline method.
1242 inline-close -- Brace that closes an in-class inline method.
1243 func-decl-cont -- The region between a function definition's
1244 argument list and the function opening brace
1245 (excluding K&R argument declarations). In C, you
1246 cannot put anything but whitespace and comments
1247 between them; in C++ and Java, throws declarations
1248 and other things can appear in this context.
1249 knr-argdecl-intro -- First line of a K&R C argument declaration.
1250 knr-argdecl -- Subsequent lines in a K&R C argument declaration.
1251 topmost-intro -- The first line in a topmost construct definition.
1252 topmost-intro-cont -- Topmost definition continuation lines.
1253 member-init-intro -- First line in a member initialization list.
1254 member-init-cont -- Subsequent member initialization list lines.
1255 inher-intro -- First line of a multiple inheritance list.
1256 inher-cont -- Subsequent multiple inheritance lines.
1257 block-open -- Statement block open brace.
1258 block-close -- Statement block close brace.
1259 brace-list-open -- Open brace of an enum or static array list.
1260 brace-list-close -- Close brace of an enum or static array list.
1261 brace-list-intro -- First line in an enum or static array list.
1262 brace-list-entry -- Subsequent lines in an enum or static array list.
1263 brace-entry-open -- Subsequent lines in an enum or static array
1264 list that start with an open brace.
1265 statement -- A C (or like) statement.
1266 statement-cont -- A continuation of a C (or like) statement.
1267 statement-block-intro -- The first line in a new statement block.
1268 statement-case-intro -- The first line in a case \"block\".
1269 statement-case-open -- The first line in a case block starting with brace.
1270 substatement -- The first line after an if/while/for/do/else.
1271 substatement-open -- The brace that opens a substatement block.
a66cd3ee
MS
1272 substatement-label -- Labelled line after an if/while/for/do/else.
1273 case-label -- A \"case\" or \"default\" label.
51f606de
GM
1274 access-label -- C++ private/protected/public access label.
1275 label -- Any ordinary label.
a66cd3ee
MS
1276 do-while-closure -- The \"while\" that ends a do/while construct.
1277 else-clause -- The \"else\" of an if/else construct.
1278 catch-clause -- The \"catch\" or \"finally\" of a try/catch construct.
51f606de
GM
1279 comment-intro -- A line containing only a comment introduction.
1280 arglist-intro -- The first line in an argument list.
1281 arglist-cont -- Subsequent argument list lines when no
1282 arguments follow on the same line as the
1283 arglist opening paren.
1284 arglist-cont-nonempty -- Subsequent argument list lines when at
1285 least one argument follows on the same
1286 line as the arglist opening paren.
1287 arglist-close -- The solo close paren of an argument list.
1288 stream-op -- Lines continuing a stream operator construct.
1289 inclass -- The construct is nested inside a class definition.
1290 Used together with e.g. `topmost-intro'.
1291 cpp-macro -- The start of a C preprocessor macro definition.
a66cd3ee 1292 cpp-macro-cont -- Inside a multi-line C preprocessor macro definition.
51f606de
GM
1293 friend -- A C++ friend declaration.
1294 objc-method-intro -- The first line of an Objective-C method definition.
1295 objc-method-args-cont -- Lines continuing an Objective-C method definition.
1296 objc-method-call-cont -- Lines continuing an Objective-C method call.
d9e94c22
MS
1297 extern-lang-open -- Brace that opens an \"extern\" block.
1298 extern-lang-close -- Brace that closes an \"extern\" block.
51f606de 1299 inextern-lang -- Analogous to the `inclass' syntactic symbol,
d9e94c22
MS
1300 but used inside \"extern\" blocks.
1301 namespace-open, namespace-close, innamespace
1302 -- Similar to the three `extern-lang' symbols, but for
1303 C++ \"namespace\" blocks.
1304 module-open, module-close, inmodule
1305 -- Similar to the three `extern-lang' symbols, but for
1306 CORBA IDL \"module\" blocks.
1307 composition-open, composition-close, incomposition
1308 -- Similar to the three `extern-lang' symbols, but for
1309 CORBA CIDL \"composition\" blocks.
51f606de
GM
1310 template-args-cont -- C++ template argument list continuations.
1311 inlambda -- In the header or body of a lambda function.
1312 lambda-intro-cont -- Continuation of the header of a lambda function.
1313 inexpr-statement -- The statement is inside an expression.
1314 inexpr-class -- The class is inside an expression. Used e.g. for
1315 Java anonymous classes."
1316 :type
1317 `(set :format "%{%t%}:
1318 Override style setting
1319 | Syntax Offset
1320%v"
1321 ,@(mapcar
1322 (lambda (elt)
1323 `(cons :format "%v"
1324 :value ,elt
b4d0e517 1325 ,(c-constant-symbol (car elt) 25)
51f606de
GM
1326 (sexp :format "%v"
1327 :validate
1328 (lambda (widget)
1329 (unless (c-valid-offset (widget-value widget))
1330 (widget-put widget :error "Invalid offset")
1331 widget)))))
1332 (get 'c-offsets-alist 'c-stylevar-fallback)))
785eecbb
RS
1333 :group 'c)
1334
037558bf
MS
1335;; The syntactic symbols that can occur inside code blocks. Used by
1336;; `c-gnu-impose-minimum'.
1337(defconst c-inside-block-syms
1338 '(defun-block-intro block-open block-close statement statement-cont
1339 statement-block-intro statement-case-intro statement-case-open
1340 substatement substatement-open substatement-label case-label label
1341 do-while-closure else-clause catch-clause inlambda))
1342
e96f5cb7 1343(defcustom c-style-variables-are-local-p t
785eecbb
RS
1344 "*Whether style variables should be buffer local by default.
1345If non-nil, then all indentation style related variables will be made
1346buffer local by default. If nil, they will remain global. Variables
1347are made buffer local when this file is loaded, and once buffer
1348localized, they cannot be made global again.
1349
d9e94c22
MS
1350This variable must be set appropriately before CC Mode is loaded.
1351
785eecbb 1352The list of variables to buffer localize are:
785eecbb 1353 c-basic-offset
785eecbb 1354 c-comment-only-line-offset
d9e94c22
MS
1355 c-indent-comment-alist
1356 c-indent-comments-syntactically-p
51f606de
GM
1357 c-block-comment-prefix
1358 c-comment-prefix-regexp
d9e94c22 1359 c-doc-comment-style
785eecbb
RS
1360 c-cleanup-list
1361 c-hanging-braces-alist
1362 c-hanging-colons-alist
51f606de 1363 c-hanging-semi&comma-criteria
785eecbb 1364 c-backslash-column
d9e94c22 1365 c-backslash-max-column
785eecbb 1366 c-label-minimum-indentation
d9e94c22 1367 c-offsets-alist
785eecbb
RS
1368 c-special-indent-hook
1369 c-indentation-style"
1370 :type 'boolean
1371 :group 'c)
1372
1373(defcustom c-mode-hook nil
1374 "*Hook called by `c-mode'."
51f606de 1375 :type 'hook
785eecbb
RS
1376 :group 'c)
1377
1378(defcustom c++-mode-hook nil
1379 "*Hook called by `c++-mode'."
1380 :type 'hook
1381 :group 'c)
1382
1383(defcustom objc-mode-hook nil
1384 "*Hook called by `objc-mode'."
1385 :type 'hook
1386 :group 'c)
1387
1388(defcustom java-mode-hook nil
1389 "*Hook called by `java-mode'."
1390 :type 'hook
1391 :group 'c)
1392
253011b3
RS
1393(defcustom idl-mode-hook nil
1394 "*Hook called by `idl-mode'."
1395 :type 'hook
1396 :group 'c)
1397
51f606de
GM
1398(defcustom pike-mode-hook nil
1399 "*Hook called by `pike-mode'."
1400 :type 'hook
1401 :group 'c)
1402
0386b551
AM
1403(defcustom awk-mode-hook nil
1404 "*Hook called by `awk-mode'."
1405 :type 'hook
1406 :group 'c)
1407
785eecbb
RS
1408(defcustom c-mode-common-hook nil
1409 "*Hook called by all CC Mode modes for common initializations."
d9e94c22 1410 :type 'hook
785eecbb
RS
1411 :group 'c)
1412
253011b3
RS
1413(defcustom c-initialization-hook nil
1414 "*Hook called when the CC Mode package gets initialized.
1415This hook is only run once per Emacs session and can be used as a
1416`load-hook' or in place of using `eval-after-load'."
1417 :type 'hook
1418 :group 'c)
1419
0ec8351b 1420(defcustom c-enable-xemacs-performance-kludge-p nil
87f235fb
RS
1421 "*Enables a XEmacs only hack that may improve speed for some coding styles.
1422For styles that hang top-level opening braces (as is common with JDK
1423Java coding styles) this can improve performance between 3 and 60
1424times for core indentation functions (e.g. `c-parse-state'). For
1425styles that conform to the Emacs recommendation of putting these
0ec8351b 1426braces in column zero, this can degrade performance about as much.
a66cd3ee
MS
1427This variable only has effect in XEmacs."
1428 :type 'boolean
1429 :group 'c)
785eecbb 1430
a66cd3ee 1431(defvar c-old-style-variable-behavior nil
51f606de
GM
1432 "*Enables the old style variable behavior when non-nil.
1433
1434Normally the values of the style variables will override the style
1435settings specified by the variables `c-default-style' and
a66cd3ee 1436`c-style-alist'. However, in CC Mode 5.25 and earlier, it was the
51f606de
GM
1437other way around, meaning that changes made to the style variables
1438from e.g. Customize would not take effect unless special precautions
1439were taken. That was confusing, especially for novice users.
1440
1441It's believed that despite this change, the new behavior will still
1442produce the same results for most old CC Mode configurations, since
1443all style variables are per default set in a special non-override
1444state. Set this variable only if your configuration has stopped
1445working due to this change.")
1446
d9e94c22 1447(define-widget 'c-extra-types-widget 'radio
a02a0f3d 1448 "Internal CC Mode widget for the `*-font-lock-extra-types' variables."
d9e94c22
MS
1449 :args '((const :tag "none" nil)
1450 (repeat :tag "types" regexp)))
1451
0386b551
AM
1452(defun c-make-font-lock-extra-types-blurb (mode1 mode2 example)
1453 (concat "\
d9e94c22
MS
1454*List of extra types (aside from the type keywords) to recognize in "
1455mode1 " mode.
1456Each list item should be a regexp matching a single identifier.
1457" example "
1458
0386b551
AM
1459Note that items on this list that don't include any regexp special
1460characters are automatically optimized using `regexp-opt', so you
1461should not use `regexp-opt' explicitly to build regexps here.
1462
d9e94c22
MS
1463On decoration level 3 (and higher, where applicable), a method is used
1464that finds most types and declarations by syntax alone. This variable
1465is still used as a first step, but other types are recognized
1466correctly anyway in most cases. Therefore this variable should be
1467fairly restrictive and not contain patterns that are uncertain.
1468
1469Note that this variable is only consulted when the major mode is
1470initialized. If you change it later you have to reinitialize CC Mode
1471by doing \\[" mode2 "].
1472
1473Despite the name, this variable is not only used for font locking but
0386b551 1474also elsewhere in CC Mode to tell types from other identifiers."))
d9e94c22
MS
1475
1476;; Note: Most of the variables below are also defined in font-lock.el
0386b551 1477;; in older versions of Emacs, so depending on the load order we might
d9e94c22
MS
1478;; not install the values below. There's no kludge to cope with this
1479;; (as opposed to the *-font-lock-keywords-* variables) since the old
a02a0f3d 1480;; values work fairly well anyway.
d9e94c22
MS
1481
1482(defcustom c-font-lock-extra-types
0386b551
AM
1483 '("\\sw+_t"
1484 ;; Defined in C99:
1485 "bool" "complex" "imaginary"
1486 ;; Standard library types (except those matched by the _t pattern):
1487 "FILE" "lconv" "tm" "va_list" "jmp_buf"
d9e94c22
MS
1488 ;; I do not appreciate the following very Emacs-specific luggage
1489 ;; in the default value, but otoh it can hardly get in the way for
1490 ;; other users, and removing it would cause unnecessary grief for
1491 ;; the old timers that are used to it. /mast
1492 "Lisp_Object")
1493 (c-make-font-lock-extra-types-blurb "C" "c-mode"
0386b551
AM
1494"For example, a value of (\"FILE\" \"\\\\sw+_t\") means the word \"FILE\"
1495and words ending in \"_t\" are treated as type names.")
d9e94c22
MS
1496 :type 'c-extra-types-widget
1497 :group 'c)
1498
1499(defcustom c++-font-lock-extra-types
1500 '("\\sw+_t"
0386b551
AM
1501 ;; C library types (except those matched by the _t pattern):
1502 "FILE" "lconv" "tm" "va_list" "jmp_buf"
1503 ;; Some standard C++ types that came from font-lock.el.
1504 ;; Experienced C++ users says there's no clear benefit in
1505 ;; extending this to all the types in the standard library, at
1506 ;; least not when they'll be recognized without "std::" too.
1507 "istream" "istreambuf"
1508 "ostream" "ostreambuf"
1509 "ifstream" "ofstream" "fstream"
1510 "strstream" "strstreambuf" "istrstream" "ostrstream"
1511 "ios"
d9e94c22
MS
1512 "string" "rope"
1513 "list" "slist"
1514 "deque" "vector" "bit_vector"
1515 "set" "multiset"
1516 "map" "multimap"
0386b551
AM
1517 "hash"
1518 "hash_set" "hash_multiset"
1519 "hash_map" "hash_multimap"
d9e94c22
MS
1520 "stack" "queue" "priority_queue"
1521 "type_info"
1522 "iterator" "const_iterator" "reverse_iterator" "const_reverse_iterator"
1523 "reference" "const_reference")
1524 (c-make-font-lock-extra-types-blurb "C++" "c++-mode"
0386b551 1525"For example, a value of (\"string\") means the word \"string\" is treated
d9e94c22
MS
1526as a type name.")
1527 :type 'c-extra-types-widget
1528 :group 'c)
1529
1530(defcustom objc-font-lock-extra-types
1531 (list (concat "[" c-upper "]\\sw*[" c-lower "]\\sw*"))
1532 (c-make-font-lock-extra-types-blurb "ObjC" "objc-mode" (concat
1533"For example, a value of (\"[" c-upper "]\\\\sw*[" c-lower "]\\\\sw*\") means
1534capitalized words are treated as type names (the requirement for a
1535lower case char is to avoid recognizing all-caps macro and constant
1536names)."))
1537 :type 'c-extra-types-widget
1538 :group 'c)
1539
1540(defcustom java-font-lock-extra-types
1541 (list (concat "[" c-upper "]\\sw*[" c-lower "]\\sw*"))
1542 (c-make-font-lock-extra-types-blurb "Java" "java-mode" (concat
1543"For example, a value of (\"[" c-upper "]\\\\sw*[" c-lower "]\\\\sw*\") means
1544capitalized words are treated as type names (the requirement for a
1545lower case char is to avoid recognizing all-caps constant names)."))
1546 :type 'c-extra-types-widget
1547 :group 'c)
1548
1549(defcustom idl-font-lock-extra-types nil
1550 (c-make-font-lock-extra-types-blurb "IDL" "idl-mode" "")
1551 :type 'c-extra-types-widget
1552 :group 'c)
1553
1554(defcustom pike-font-lock-extra-types
1555 (list (concat "[" c-upper "]\\sw*[" c-lower "]\\sw*"))
1556 (c-make-font-lock-extra-types-blurb "Pike" "pike-mode" (concat
1557"For example, a value of (\"[" c-upper "]\\\\sw*[" c-lower "]\\\\sw*\") means
1558capitalized words are treated as type names (the requirement for a
1559lower case char is to avoid recognizing all-caps macro and constant
1560names)."))
1561 :type 'c-extra-types-widget
1562 :group 'c)
51f606de 1563
785eecbb
RS
1564\f
1565;; Non-customizable variables, still part of the interface to CC Mode
1566(defvar c-file-style nil
1567 "Variable interface for setting style via File Local Variables.
1568In a file's Local Variable section, you can set this variable to a
1569string suitable for `c-set-style'. When the file is visited, CC Mode
1570will set the style of the file to this value automatically.
1571
1572Note that file style settings are applied before file offset settings
1573as designated in the variable `c-file-offsets'.")
51f606de 1574(make-variable-buffer-local 'c-file-style)
631c8020 1575;;;###autoload(put 'c-file-style 'safe-local-variable 'string-or-null-p)
785eecbb
RS
1576
1577(defvar c-file-offsets nil
1578 "Variable interface for setting offsets via File Local Variables.
1579In a file's Local Variable section, you can set this variable to an
1580association list similar to the values allowed in `c-offsets-alist'.
1581When the file is visited, CC Mode will institute these offset settings
1582automatically.
1583
1584Note that file offset settings are applied after file style settings
1585as designated in the variable `c-file-style'.")
51f606de 1586(make-variable-buffer-local 'c-file-offsets)
785eecbb 1587
0386b551
AM
1588;; It isn't possible to specify a doc-string without specifying an
1589;; initial value with `defvar', so the following two variables have been
1590;; given doc-strings by setting the property `variable-documentation'
1591;; directly. C-h v will read this documentation only for versions of GNU
1592;; Emacs from 22.1. It's really good not to have an initial value for
1593;; variables like these that always should be dynamically bound, so it's
1594;; worth the inconvenience.
d9e94c22
MS
1595
1596(cc-bytecomp-defvar c-syntactic-context)
1597(defvar c-syntactic-context)
0386b551
AM
1598(put 'c-syntactic-context 'variable-documentation
1599 "Variable containing the syntactic analysis list for a line of code.
1600
1601It is a list with one element for each syntactic symbol pertinent to the
1602line, for example \"((defun-block-intro 1) (comment-intro))\".
1603
1604It is dynamically bound when calling \(i) a brace hanging \"action
1605function\"; \(ii) a semicolon/comma hanging \"criteria function\"; \(iii) a
1606\"line-up function\"; \(iv) a c-special-indent-hook function. It is also
1607used internally by CC Mode.
1608
1609c-syntactic-context is always bound dynamically. It must NEVER be set
1610statically (e.g. with `setq').")
1611
d9e94c22
MS
1612
1613(cc-bytecomp-defvar c-syntactic-element)
1614(defvar c-syntactic-element)
0386b551
AM
1615(put 'c-syntactic-element 'variable-documentation
1616 "Variable containing the current syntactic element during calls to
1617the lineup functions. The value is one of the elements in the list in
1618`c-syntactic-context' and is a list with the symbol name in the first
1619position, followed by zero or more elements containing any additional
1620info associated with the syntactic symbol. There are accessor functions
1621`c-langelem-sym', `c-langelem-pos', `c-langelem-col', and
1622`c-langelem-2nd-pos' to access the list.
1623
1624Specifically, the element returned by `c-langelem-pos' is the anchor
1625position, or nil if there isn't any. See the comments in the
1626`c-offsets-alist' variable and the CC Mode manual for more detailed info
1627about the data each syntactic symbol provides.
1628
1629This is always bound dynamically. It should never be set
1630statically (e.g. with `setq').")
785eecbb 1631
51f606de 1632(defvar c-indentation-style nil
130c507e 1633 "Name of the currently installed style.
51c9af45
AM
1634Don't change this directly; call `c-set-style' instead, or set the variable
1635`c-file-style' in the file's Local Variable list.")
785eecbb 1636
130c507e
GM
1637(defvar c-current-comment-prefix nil
1638 "The current comment prefix regexp.
1639Set from `c-comment-prefix-regexp' at mode initialization.")
1640(make-variable-buffer-local 'c-current-comment-prefix)
d278ad4f 1641
0386b551
AM
1642;; N.B. The next three variables are initialized in
1643;; c-setup-paragraph-variables. Their initializations here are "just in
1644;; case". ACM, 2004/2/15. They are NOT buffer local (yet?).
1645(defvar c-string-par-start
1646;; (concat "\\(" (default-value 'paragraph-start) "\\)\\|[ \t]*\\\\$")
1647 "\f\\|[ \t]*\\\\?$"
1648 "Value of paragraph-start used when scanning strings.
1649It treats escaped EOLs as whitespace.")
1650
1651(defvar c-string-par-separate
1652 ;; (concat "\\(" (default-value 'paragraph-separate) "\\)\\|[ \t]*\\\\$")
1653 "[ \t\f]*\\\\?$"
1654 "Value of paragraph-separate used when scanning strings.
1655It treats escaped EOLs as whitespace.")
1656
1657(defvar c-sentence-end-with-esc-eol
1658 (concat "\\(\\(" (c-default-value-sentence-end) "\\)"
1659 ;; N.B.: "$" would be illegal when not enclosed like "\\($\\)".
1660 "\\|" "[.?!][]\"')}]* ?\\\\\\($\\)[ \t\n]*"
1661 "\\)")
1662 "Value used like sentence-end used when scanning strings.
1663It treats escaped EOLs as whitespace.")
1664
785eecbb 1665\f
130c507e 1666(cc-provide 'cc-vars)
3afbc435 1667
cbee283d 1668;; arch-tag: d62e9a55-c9fe-409b-b5b6-050b6aa202c9
785eecbb 1669;;; cc-vars.el ends here