diff options
author | Miles Bader <miles@gnu.org> | 2008-01-22 23:53:46 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2008-01-22 23:53:46 +0000 |
commit | 1bad168e59601c1c843a38b2962e77b29f497f11 (patch) | |
tree | 26f29332811458573579bb0b807ff85a8d32b807 /lisp/progmodes/cc-vars.el | |
parent | 22f9eb9e4f09de5570ba5ede033b0a8f0973a0e9 (diff) | |
parent | 645b6388d5bae5304098c1e773694beffc3478e9 (diff) | |
download | emacs-1bad168e59601c1c843a38b2962e77b29f497f11.tar.gz emacs-1bad168e59601c1c843a38b2962e77b29f497f11.tar.bz2 emacs-1bad168e59601c1c843a38b2962e77b29f497f11.zip |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1006
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 8ee89170f19..c217e6e6871 100644 --- a/lisp/progmodes/cc-vars.el +++ b/lisp/progmodes/cc-vars.el @@ -325,6 +325,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. @@ -343,6 +344,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. |