diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-01-19 18:32:34 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-01-19 18:32:34 +0000 |
commit | fc9a9287570dfefe8ca48134050b00b1bda6fa89 (patch) | |
tree | 7160c6d8c214914b0d9bcccd0d261523500b2955 /lisp/progmodes/cc-vars.el | |
parent | c041e2d1a31cd24b54651d1b9a993d26a0c4a021 (diff) | |
download | emacs-fc9a9287570dfefe8ca48134050b00b1bda6fa89.tar.gz |
* progmodes/sh-script.el (sh-basic-offset):
* progmodes/cc-vars.el (c-syntactic-indentation)
(c-syntactic-indentation-in-macros): Mark as safe.
Diffstat (limited to 'lisp/progmodes/cc-vars.el')
-rw-r--r-- | lisp/progmodes/cc-vars.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/cc-vars.el b/lisp/progmodes/cc-vars.el index 7596dc60b5f..425dddf16a0 100644 --- a/lisp/progmodes/cc-vars.el +++ b/lisp/progmodes/cc-vars.el @@ -315,6 +315,7 @@ e.g. `c-special-indent-hook'." :type 'boolean :group 'c) (make-variable-buffer-local 'c-syntactic-indentation) +(put 'c-syntactic-indentation 'safe-local-variable 'booleanp) (defcustom c-syntactic-indentation-in-macros t "*Enable syntactic analysis inside macros. @@ -333,6 +334,7 @@ countered easily by surrounding the statements by a block \(or even better with the \"do { ... } while \(0)\" trick)." :type 'boolean :group 'c) +(put 'c-syntactic-indentation-in-macros 'safe-local-variable 'booleanp) (defcustom-c-stylevar c-comment-only-line-offset 0 "*Extra offset for line which contains only the start of a comment. |