Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / progmodes / cc-styles.el
blobffe2336ad2344662e19110778e253577bcbf6cb6
1 ;;; cc-styles.el --- support for styles in CC Mode
3 ;; Copyright (C) 1985, 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation, Inc.
7 ;; Authors: 2004- Alan Mackenzie
8 ;; 1998- Martin Stjernholm
9 ;; 1992-1999 Barry A. Warsaw
10 ;; 1987 Dave Detlefs and Stewart Clamen
11 ;; 1985 Richard M. Stallman
12 ;; Maintainer: bug-cc-mode@gnu.org
13 ;; Created: 22-Apr-1997 (split from cc-mode.el)
14 ;; Version: See cc-mode.el
15 ;; Keywords: c languages oop
17 ;; This file is part of GNU Emacs.
19 ;; GNU Emacs is free software: you can redistribute it and/or modify
20 ;; it under the terms of the GNU General Public License as published by
21 ;; the Free Software Foundation, either version 3 of the License, or
22 ;; (at your option) any later version.
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.
29 ;; You should have received a copy of the GNU General Public License
30 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
32 ;;; Commentary:
34 ;;; Code:
36 (eval-when-compile
37 (let ((load-path
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)
41 load-path)))
42 (load "cc-bytecomp" nil t)))
44 (cc-require 'cc-defs)
45 (cc-require 'cc-vars)
46 (cc-require 'cc-align)
47 ;; cc-align is only indirectly required: Styles added with
48 ;; `c-add-style' often contains references to functions defined there.
50 ;; Silence the compiler.
51 (cc-bytecomp-defvar adaptive-fill-first-line-regexp) ; Emacs
52 (cc-bytecomp-obsolete-fun make-local-hook) ; Marked obsolete in Emacs 21.1.
55 (defvar c-style-alist
56 '(("gnu"
57 (c-basic-offset . 2)
58 (c-comment-only-line-offset . (0 . 0))
59 (c-hanging-braces-alist . ((substatement-open before after)
60 (arglist-cont-nonempty)))
61 (c-offsets-alist . ((statement-block-intro . +)
62 (knr-argdecl-intro . 5)
63 (substatement-open . +)
64 (substatement-label . 0)
65 (label . 0)
66 (statement-case-open . +)
67 (statement-cont . +)
68 (arglist-intro . c-lineup-arglist-intro-after-paren)
69 (arglist-close . c-lineup-arglist)
70 (inline-open . 0)
71 (brace-list-open . +)
72 (topmost-intro-cont
73 . (first c-lineup-topmost-intro-cont
74 c-lineup-gnu-DEFUN-intro-cont))))
75 (c-special-indent-hook . c-gnu-impose-minimum)
76 (c-block-comment-prefix . ""))
78 ("k&r"
79 (c-basic-offset . 5)
80 (c-comment-only-line-offset . 0)
81 (c-offsets-alist . ((statement-block-intro . +)
82 (knr-argdecl-intro . 0)
83 (substatement-open . 0)
84 (substatement-label . 0)
85 (label . 0)
86 (statement-cont . +))))
88 ("bsd"
89 (c-basic-offset . 8)
90 (c-comment-only-line-offset . 0)
91 (c-offsets-alist . ((statement-block-intro . +)
92 (knr-argdecl-intro . +)
93 (substatement-open . 0)
94 (substatement-label . 0)
95 (label . 0)
96 (statement-cont . +)
97 (inline-open . 0)
98 (inexpr-class . 0))))
100 ("stroustrup"
101 (c-basic-offset . 4)
102 (c-comment-only-line-offset . 0)
103 (c-offsets-alist . ((statement-block-intro . +)
104 (substatement-open . 0)
105 (substatement-label . 0)
106 (label . 0)
107 (statement-cont . +))))
109 ("whitesmith"
110 (c-basic-offset . 4)
111 (c-comment-only-line-offset . 0)
112 ;; It's obvious that the CC Mode way of choosing anchor positions
113 ;; doesn't fit this style at all. :P
114 (c-offsets-alist . ((defun-open . +)
115 (defun-close . c-lineup-whitesmith-in-block)
116 (defun-block-intro . (add c-lineup-whitesmith-in-block
117 c-indent-multi-line-block))
118 (class-open . +)
119 (class-close . +)
120 (inline-open . +)
121 (inline-close . c-lineup-whitesmith-in-block)
122 (knr-argdecl-intro . +)
123 (block-open . 0) ; Get indentation from `statement' instead.
124 (block-close . c-lineup-whitesmith-in-block)
125 (brace-list-open . +)
126 (brace-list-close . c-lineup-whitesmith-in-block)
127 (brace-list-intro . (add c-lineup-whitesmith-in-block
128 c-indent-multi-line-block))
129 (brace-list-entry . (add c-lineup-after-whitesmith-blocks
130 c-indent-multi-line-block))
131 (brace-entry-open . (add c-lineup-after-whitesmith-blocks
132 c-indent-multi-line-block))
133 (statement . (add c-lineup-after-whitesmith-blocks
134 c-indent-multi-line-block))
135 (statement-block-intro . (add c-lineup-whitesmith-in-block
136 c-indent-multi-line-block))
137 (substatement-open . +)
138 (substatement-label . +)
139 (label . 0)
140 (arglist-intro . (add c-lineup-whitesmith-in-block
141 c-indent-multi-line-block))
142 (arglist-cont . (add c-lineup-after-whitesmith-blocks
143 c-indent-multi-line-block))
144 (arglist-cont-nonempty . (add c-lineup-whitesmith-in-block
145 c-indent-multi-line-block))
146 (arglist-close . c-lineup-whitesmith-in-block)
147 (inclass . c-lineup-whitesmith-in-block)
148 (extern-lang-open . +)
149 (namespace-open . +)
150 (module-open . +)
151 (composition-open . +)
152 (extern-lang-close . +)
153 (namespace-close . +)
154 (module-close . +)
155 (composition-close . +)
156 (inextern-lang . c-lineup-whitesmith-in-block)
157 (innamespace . c-lineup-whitesmith-in-block)
158 (inmodule . c-lineup-whitesmith-in-block)
159 (incomposition . c-lineup-whitesmith-in-block)
160 (inexpr-class . 0))))
162 ("ellemtel"
163 (c-basic-offset . 3)
164 (c-comment-only-line-offset . 0)
165 (c-hanging-braces-alist . ((substatement-open before after)))
166 (c-offsets-alist . ((topmost-intro . 0)
167 (substatement . +)
168 (substatement-open . 0)
169 (case-label . +)
170 (access-label . -)
171 (inclass . ++)
172 (inline-open . 0)
173 (arglist-cont-nonempty))))
175 ("linux"
176 (c-basic-offset . 8)
177 (c-comment-only-line-offset . 0)
178 (c-hanging-braces-alist . ((brace-list-open)
179 (brace-entry-open)
180 (substatement-open after)
181 (block-close . c-snug-do-while)
182 (arglist-cont-nonempty)))
183 (c-cleanup-list . (brace-else-brace))
184 (c-offsets-alist . ((statement-block-intro . +)
185 (knr-argdecl-intro . 0)
186 (substatement-open . 0)
187 (substatement-label . 0)
188 (label . 0)
189 (statement-cont . +))))
191 ("python"
192 (indent-tabs-mode . t)
193 (fill-column . 78)
194 (c-basic-offset . 8)
195 (c-offsets-alist . ((substatement-open . 0)
196 (inextern-lang . 0)
197 (arglist-intro . +)
198 (knr-argdecl-intro . +)))
199 (c-hanging-braces-alist . ((brace-list-open)
200 (brace-list-intro)
201 (brace-list-close)
202 (brace-entry-open)
203 (substatement-open after)
204 (block-close . c-snug-do-while)
205 (arglist-cont-nonempty)))
206 (c-block-comment-prefix . ""))
208 ("java"
209 (c-basic-offset . 4)
210 (c-comment-only-line-offset . (0 . 0))
211 ;; the following preserves Javadoc starter lines
212 (c-offsets-alist . ((inline-open . 0)
213 (topmost-intro-cont . +)
214 (statement-block-intro . +)
215 (knr-argdecl-intro . 5)
216 (substatement-open . +)
217 (substatement-label . +)
218 (label . +)
219 (statement-case-open . +)
220 (statement-cont . +)
221 (arglist-intro . c-lineup-arglist-intro-after-paren)
222 (arglist-close . c-lineup-arglist)
223 (access-label . 0)
224 (inher-cont . c-lineup-java-inher)
225 (func-decl-cont . c-lineup-java-throws))))
227 ;; awk style exists primarily for auto-newline settings. Otherwise it's
228 ;; pretty much like k&r.
229 ("awk"
230 (c-basic-offset . 4)
231 (c-comment-only-line-offset . 0)
232 (c-hanging-braces-alist . ((defun-open after)
233 (defun-close . c-snug-1line-defun-close)
234 (substatement-open after)
235 (block-close . c-snug-do-while)
236 (arglist-cont-nonempty)))
237 (c-hanging-semi&comma-criteria . nil)
238 (c-cleanup-list . nil) ; You might want one-liner-defun here.
239 (c-offsets-alist . ((statement-block-intro . +)
240 (substatement-open . 0)
241 (statement-cont . +))))
244 "Styles of indentation.
245 Elements of this alist are of the form:
247 (STYLE-STRING [BASE-STYLE] (VARIABLE . VALUE) [(VARIABLE . VALUE) ...])
249 where STYLE-STRING is a short descriptive string used to select a
250 style, VARIABLE is any Emacs variable, and VALUE is the intended value
251 for that variable when using the selected style.
253 Optional BASE-STYLE if present, is a string and must follow
254 STYLE-STRING. BASE-STYLE names a style that this style inherits from.
255 By default, all styles inherit from the \"user\" style, which is
256 computed at run time. Style loops generate errors.
258 Two variables are treated specially. When VARIABLE is
259 `c-offsets-alist', the VALUE is a list containing elements of the
260 form:
262 (SYNTACTIC-SYMBOL . OFFSET)
264 as described in `c-offsets-alist'. These are passed directly to
265 `c-set-offset' so there is no need to set every syntactic symbol in
266 your style, only those that are different from the default.
268 When VARIABLE is `c-special-indent-hook', its VALUE is added to
269 `c-special-indent-hook' using `add-hook'. If VALUE is a list, each
270 element of the list is added with `add-hook'.
272 Do not change this variable directly. Use the function `c-add-style'
273 to add new styles or modify existing styles (it is not a good idea to
274 modify existing styles -- you should create a new style that inherits
275 the existing style).")
278 ;; Functions that manipulate styles
279 (defun c-set-style-1 (conscell dont-override)
280 ;; Set the style for one variable
281 (let ((attr (car conscell))
282 (val (cdr conscell)))
283 (cond
284 ;; first special variable
285 ((eq attr 'c-offsets-alist)
286 (let ((offsets (cond ((eq dont-override t)
287 c-offsets-alist)
288 (dont-override
289 (default-value 'c-offsets-alist)))))
290 (mapcar (lambda (langentry)
291 (let ((langelem (car langentry))
292 (offset (cdr langentry)))
293 (unless (assq langelem offsets)
294 (c-set-offset langelem offset))))
295 val)))
296 ;; second special variable
297 ((eq attr 'c-special-indent-hook)
298 ;; Maybe we should ignore dont-override here and always add new
299 ;; hooks?
300 (unless (cond ((eq dont-override t)
301 c-special-indent-hook)
302 (dont-override
303 (default-value 'c-special-indent-hook)))
304 (if (listp val)
305 (mapcar (lambda (func)
306 (add-hook 'c-special-indent-hook func t t))
307 val)
308 (add-hook 'c-special-indent-hook val t t))))
309 ;; all other variables
310 (t (when (or (not dont-override)
311 (not (memq attr c-style-variables))
312 (eq (if (eq dont-override t)
313 (symbol-value attr)
314 (default-value attr))
315 'set-from-style))
316 (set attr val)
317 ;; Must update a number of other variables if
318 ;; c-comment-prefix-regexp is set.
319 (if (eq attr 'c-comment-prefix-regexp)
320 (c-setup-paragraph-variables)))))))
322 (defun c-get-style-variables (style basestyles)
323 ;; Return all variables in a style by resolving inheritances.
324 (if (not style)
325 (copy-alist c-fallback-style)
326 (let ((vars (cdr (or (assoc (downcase style) c-style-alist)
327 (assoc (upcase style) c-style-alist)
328 (assoc style c-style-alist)
329 (progn
330 (c-benign-error "Undefined style: %s" style)
331 nil)))))
332 (let ((base (and (stringp (car-safe vars))
333 (prog1
334 (downcase (car vars))
335 (setq vars (cdr vars))))))
336 (if (memq base basestyles)
337 (c-benign-error "Style loop detected: %s in %s" base basestyles)
338 (nconc (c-get-style-variables base (cons base basestyles))
339 (copy-alist vars)))))))
341 (defvar c-set-style-history nil)
343 ;;;###autoload
344 (defun c-set-style (stylename &optional dont-override)
345 "Set the current buffer to use the style STYLENAME.
346 STYLENAME, a string, must be an existing CC Mode style - These are contained
347 in the variable `c-style-alist'.
349 The variable `c-indentation-style' will get set to STYLENAME.
351 \"Setting the style\" is done by setting CC Mode's \"style variables\" to the
352 values indicated by the pertinent entry in `c-style-alist'. Other variables
353 might get set too.
355 If DONT-OVERRIDE is neither nil nor t, style variables whose default values
356 have been set (more precisely, whose default values are not the symbol
357 `set-from-style') will not be changed. This avoids overriding global settings
358 done in ~/.emacs. It is useful to call c-set-style from a mode hook in this
359 way.
361 If DONT-OVERRIDE is t, style variables that already have values (i.e., whose
362 values are not the symbol `set-from-style') will not be overridden. CC Mode
363 calls c-set-style internally in this way whilst initializing a buffer; if
364 cc-set-style is called like this from anywhere else, it will usually behave as
365 a null operation."
366 (interactive
367 (list (let ((completion-ignore-case t)
368 (prompt (format "Which %s indentation style? "
369 mode-name)))
370 (completing-read prompt c-style-alist nil t nil
371 'c-set-style-history
372 c-indentation-style))))
373 (or c-buffer-is-cc-mode
374 (error "Buffer %s is not a CC Mode buffer (c-set-style)" (buffer-name)))
375 (or (stringp stylename)
376 (error "Argument to c-set-style was not a string"))
377 (c-initialize-builtin-style)
378 (let ((vars (c-get-style-variables stylename nil)))
379 (unless dont-override
380 ;; Since we always add to c-special-indent-hook we must reset it
381 ;; first, or else the hooks from the preceding style will
382 ;; remain. This is not necessary for c-offsets-alist, since
383 ;; c-get-style-variables contains every valid offset type in the
384 ;; fallback entry.
385 (setq c-special-indent-hook
386 (default-value 'c-special-indent-hook)))
387 (mapc (lambda (elem)
388 (c-set-style-1 elem dont-override))
389 ;; Need to go through the variables backwards when we
390 ;; don't override any settings.
391 (if (eq dont-override t) (nreverse vars) vars)))
392 (setq c-indentation-style stylename)
393 (c-keep-region-active))
395 ;;;###autoload
396 (defun c-add-style (style description &optional set-p)
397 "Adds a style to `c-style-alist', or updates an existing one.
398 STYLE is a string identifying the style to add or update. DESCRIPTION
399 is an association list describing the style and must be of the form:
401 ([BASESTYLE] (VARIABLE . VALUE) [(VARIABLE . VALUE) ...])
403 See the variable `c-style-alist' for the semantics of BASESTYLE,
404 VARIABLE and VALUE. This function also sets the current style to
405 STYLE using `c-set-style' if the optional SET-P flag is non-nil."
406 (interactive
407 (let ((stylename (completing-read "Style to add: " c-style-alist
408 nil nil nil 'c-set-style-history))
409 (descr (eval-minibuffer "Style description: ")))
410 (list stylename descr
411 (y-or-n-p "Set the style too? "))))
412 (setq style (downcase style))
413 (let ((s (assoc style c-style-alist)))
414 (if s
415 (setcdr s (copy-alist description)) ; replace
416 (setq c-style-alist (cons (cons style description) c-style-alist))))
417 (and set-p (c-set-style style)))
420 (defvar c-read-offset-history nil)
422 (defun c-read-offset (langelem)
423 ;; read new offset value for LANGELEM from minibuffer. return a
424 ;; valid value only
425 (let* ((oldoff (cdr-safe (or (assq langelem c-offsets-alist)
426 (assq langelem (get 'c-offsets-alist
427 'c-stylevar-fallback)))))
428 (symname (symbol-name langelem))
429 (defstr (format "(default %s): " oldoff))
430 (errmsg (concat "Offset must be int, func, var, vector, list, "
431 "or [+,-,++,--,*,/] "
432 defstr))
433 (prompt (concat symname " offset " defstr))
434 (keymap (make-sparse-keymap))
435 (minibuffer-completion-table obarray)
436 (minibuffer-completion-predicate 'fboundp)
437 offset input)
438 ;; In principle completing-read is used here, but SPC is unbound
439 ;; to make it less annoying to enter lists.
440 (set-keymap-parent keymap minibuffer-local-completion-map)
441 (define-key keymap " " 'self-insert-command)
442 (while (not offset)
443 (setq input (read-from-minibuffer prompt nil keymap t
444 'c-read-offset-history
445 (format "%s" oldoff)))
446 (if (c-valid-offset input)
447 (setq offset input)
448 ;; error, but don't signal one, keep trying
449 ;; to read an input value
450 (ding)
451 (setq prompt errmsg)))
452 offset))
454 ;;;###autoload
455 (defun c-set-offset (symbol offset &optional ignored)
456 "Change the value of a syntactic element symbol in `c-offsets-alist'.
457 SYMBOL is the syntactic element symbol to change and OFFSET is the new
458 offset for that syntactic element. The optional argument is not used
459 and exists only for compatibility reasons."
460 (interactive
461 (let* ((langelem
462 (intern (completing-read
463 (concat "Syntactic symbol to change"
464 (if current-prefix-arg " or add" "")
465 ": ")
466 (mapcar
467 #'(lambda (langelem)
468 (cons (format "%s" (car langelem)) nil))
469 (get 'c-offsets-alist 'c-stylevar-fallback))
470 nil (not current-prefix-arg)
471 ;; initial contents tries to be the last element
472 ;; on the syntactic analysis list for the current
473 ;; line
474 (and c-buffer-is-cc-mode
475 (c-save-buffer-state
476 ((syntax (c-guess-basic-syntax))
477 (len (length syntax))
478 (ic (format "%s" (car (nth (1- len) syntax)))))
479 (cons ic 0)))
481 (offset (c-read-offset langelem)))
482 (list langelem offset current-prefix-arg)))
483 ;; sanity check offset
484 (if (c-valid-offset offset)
485 (let ((entry (assq symbol c-offsets-alist)))
486 (if entry
487 (setcdr entry offset)
488 (if (assq symbol (get 'c-offsets-alist 'c-stylevar-fallback))
489 (setq c-offsets-alist (cons (cons symbol offset)
490 c-offsets-alist))
491 (c-benign-error "%s is not a valid syntactic symbol" symbol))))
492 (c-benign-error "Invalid indentation setting for symbol %s: %S"
493 symbol offset))
494 (c-keep-region-active))
497 (defun c-setup-paragraph-variables ()
498 "Fix things up for paragraph recognition and filling inside comments and
499 strings by incorporating the values of `c-comment-prefix-regexp',
500 `sentence-end', `paragraph-start' and `paragraph-separate' in the relevant
501 variables."
503 (interactive)
504 (or c-buffer-is-cc-mode
505 (error "Buffer %s is not a CC Mode buffer (c-setup-paragraph-variables)"
506 (buffer-name)))
507 ;; Set up the values for use in comments.
508 (setq c-current-comment-prefix
509 (if (listp c-comment-prefix-regexp)
510 (cdr-safe (or (assoc major-mode c-comment-prefix-regexp)
511 (assoc 'other c-comment-prefix-regexp)))
512 c-comment-prefix-regexp))
514 (let ((comment-line-prefix
515 (concat "[ \t]*\\(" c-current-comment-prefix "\\)[ \t]*")))
517 (setq paragraph-start (concat comment-line-prefix
518 c-paragraph-start
519 "\\|"
520 page-delimiter)
521 paragraph-separate (concat comment-line-prefix
522 c-paragraph-separate
523 "\\|"
524 page-delimiter)
525 paragraph-ignore-fill-prefix t
526 adaptive-fill-mode t
527 adaptive-fill-regexp
528 (concat comment-line-prefix
529 (if (default-value 'adaptive-fill-regexp)
530 (concat "\\("
531 (default-value 'adaptive-fill-regexp)
532 "\\)")
533 "")))
535 (when (boundp 'adaptive-fill-first-line-regexp)
536 ;; XEmacs adaptive fill mode doesn't have this.
537 (make-local-variable 'adaptive-fill-first-line-regexp)
538 (setq adaptive-fill-first-line-regexp
539 (concat "\\`" comment-line-prefix
540 ;; Maybe we should incorporate the old value here,
541 ;; but then we have to do all sorts of kludges to
542 ;; deal with the \` and \' it probably contains.
543 "\\'"))))
545 ;; Set up the values for use in strings. These are the default
546 ;; paragraph-start/separate values, enhanced to accept escaped EOLs as
547 ;; whitespace. Used in c-beginning/end-of-sentence-in-string in cc-cmds.
548 (setq c-string-par-start
549 ;;(concat "\\(" (default-value 'paragraph-start) "\\)\\|[ \t]*\\\\$"))
550 "\f\\|[ \t]*\\\\?$")
551 (setq c-string-par-separate
552 ;;(concat "\\(" (default-value 'paragraph-separate) "\\)\\|[ \t]*\\\\$"))
553 "[ \t\f]*\\\\?$")
554 (setq c-sentence-end-with-esc-eol
555 (concat "\\(\\(" (c-default-value-sentence-end) "\\)"
556 ;; N.B.: "$" would be invalid when not enclosed like "\\($\\)".
557 "\\|" "[.?!][]\"')}]* ?\\\\\\($\\)[ \t\n]*"
558 "\\)")))
561 ;; Helper for setting up Filladapt mode. It's not used by CC Mode itself.
563 (cc-bytecomp-defvar filladapt-token-table)
564 (cc-bytecomp-defvar filladapt-token-match-table)
565 (cc-bytecomp-defvar filladapt-token-conversion-table)
567 (defun c-setup-filladapt ()
568 "Convenience function to configure Kyle E. Jones' Filladapt mode for
569 CC Mode by making sure the proper entries are present on
570 `filladapt-token-table', `filladapt-token-match-table', and
571 `filladapt-token-conversion-table'. This is intended to be used on
572 `c-mode-common-hook' or similar."
573 ;; This function is intended to be used explicitly by the end user
574 ;; only.
576 ;; The default configuration already handles C++ comments, but we
577 ;; need to add handling of C block comments. A new filladapt token
578 ;; `c-comment' is added for that.
579 (let (p)
580 (setq p filladapt-token-table)
581 (while (and p (not (eq (car-safe (cdr-safe (car-safe p))) 'c-comment)))
582 (setq p (cdr-safe p)))
583 (if p
584 (setcar (car p) c-current-comment-prefix)
585 (setq filladapt-token-table
586 (append (list (car filladapt-token-table)
587 (list c-current-comment-prefix 'c-comment))
588 (cdr filladapt-token-table)))))
589 (unless (assq 'c-comment filladapt-token-match-table)
590 (setq filladapt-token-match-table
591 (append '((c-comment c-comment))
592 filladapt-token-match-table)))
593 (unless (assq 'c-comment filladapt-token-conversion-table)
594 (setq filladapt-token-conversion-table
595 (append '((c-comment . exact))
596 filladapt-token-conversion-table))))
599 (defun c-initialize-builtin-style ()
600 ;; Dynamically append the default value of most variables. This is
601 ;; crucial because future c-set-style calls will always reset the
602 ;; variables first to the `cc-mode' style before instituting the new
603 ;; style. Only do this once!
604 (unless (get 'c-initialize-builtin-style 'is-run)
605 (put 'c-initialize-builtin-style 'is-run t)
606 ;;(c-initialize-cc-mode)
607 (unless (assoc "user" c-style-alist)
608 (let ((vars c-style-variables) var val uservars)
609 (while vars
610 (setq var (car vars)
611 val (symbol-value var)
612 vars (cdr vars))
613 (cond ((eq var 'c-offsets-alist)
614 (or (null val)
615 (setq uservars (cons (cons 'c-offsets-alist val)
616 uservars))))
617 ((not (eq val 'set-from-style))
618 (setq uservars (cons (cons var val)
619 uservars)))))
620 (c-add-style "user" uservars)))
621 (unless (assoc "cc-mode" c-style-alist)
622 (c-add-style "cc-mode" '("user")))
623 (if c-style-variables-are-local-p
624 (c-make-styles-buffer-local))))
626 (defun c-make-styles-buffer-local (&optional this-buf-only-p)
627 "Make all CC Mode style variables buffer local.
628 If `this-buf-only-p' is non-nil, the style variables will be made
629 buffer local only in the current buffer. Otherwise they'll be made
630 permanently buffer local in any buffer that changes their values.
632 The buffer localness of the style variables are normally controlled
633 with the variable `c-style-variables-are-local-p', so there's seldom
634 any reason to call this function directly."
636 ;; style variables
637 (let ((func (if this-buf-only-p
638 'make-local-variable
639 'make-variable-buffer-local))
640 (varsyms (cons 'c-indentation-style (copy-alist c-style-variables))))
641 (delq 'c-special-indent-hook varsyms)
642 (mapc func varsyms)
643 ;; Hooks must be handled specially
644 (if this-buf-only-p
645 (make-local-hook 'c-special-indent-hook)
646 (with-no-warnings (make-variable-buffer-local 'c-special-indent-hook))
647 (setq c-style-variables-are-local-p t))
652 (cc-provide 'cc-styles)
654 ;; arch-tag: c764f61a-96ba-484a-a68f-101c0e9d5d2c
655 ;;; cc-styles.el ends here