]> git.eshelyaron.com Git - emacs.git/commitdiff
* progmodes/sh-script.el (sh-basic-offset):
authorDan Nicolaescu <dann@ics.uci.edu>
Sat, 19 Jan 2008 18:32:34 +0000 (18:32 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sat, 19 Jan 2008 18:32:34 +0000 (18:32 +0000)
* progmodes/cc-vars.el (c-syntactic-indentation)
(c-syntactic-indentation-in-macros): Mark as safe.

lisp/ChangeLog
lisp/progmodes/cc-vars.el
lisp/progmodes/sh-script.el

index fbf675d8f7e33ef38c5af5aeba07a968e1cf7ba2..8f7c6e735043d8ddf947bc67f3dd95b0aea0e271 100644 (file)
@@ -1,3 +1,9 @@
+2008-01-19  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * progmodes/sh-script.el (sh-basic-offset):
+       * progmodes/cc-vars.el (c-syntactic-indentation)
+       (c-syntactic-indentation-in-macros): Mark as safe.
+
 2008-01-19  Juanma Barranquero  <lekktu@gmail.com>
 
        * blank-mode.el (blank-style, blank-chars, blank-hspace-regexp)
index 7596dc60b5f26c6fd4cd3d3ec71bf74c246a1724..425dddf16a0b51223716acd7fcd34e2ddbb223d5 100644 (file)
@@ -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.
index d81281dc4f2f83c25243182a666a28b710d86ea3..4fe9926af8d9962e8623999f6520793f0ca4c7a0 100644 (file)
@@ -1205,6 +1205,7 @@ Can be set to a number, or to nil which means leave it as is."
 This value is used for the `+' and `-' symbols in an indentation variable."
   :type 'integer
   :group 'sh-indentation)
+(put 'sh-basic-offset 'safe-local-variable 'integerp)
 
 (defcustom sh-indent-comment nil
   "*How a comment line is to be indented.