]> git.eshelyaron.com Git - emacs.git/commitdiff
(tcl-indent-level, tcl-continued-indent-level): Add safe-local-variable prop.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 7 Aug 2007 17:00:44 +0000 (17:00 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 7 Aug 2007 17:00:44 +0000 (17:00 +0000)
lisp/ChangeLog
lisp/progmodes/tcl.el

index 147d95e2c5425d72b4e694587232df768d872554..8d25f687b2b9edddd5862c5d72c38c35f938ce32 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-07  Tom Tromey  <tromey@redhat.com>
+
+       * progmodes/tcl.el (tcl-indent-level, tcl-continued-indent-level):
+       Add safe-local-variable property.
+
 2007-08-07  Chong Yidong  <cyd@stupidchicken.com>
 
        * image-mode.el (image-toggle-display): Use image-refresh.
index c7576a27114e0516d920967f37879c1b3e56a727..f9fd7beffd22230089a84e7e93ed917da19c7a88 100644 (file)
   "*Indentation of Tcl statements with respect to containing block."
   :type 'integer
   :group 'tcl)
+(put 'tcl-indent-level 'safe-local-variable 'integerp)
 
 (defcustom tcl-continued-indent-level 4
   "*Indentation of continuation line relative to first line of command."
   :type 'integer
   :group 'tcl)
+(put 'tcl-continued-indent-level 'safe-local-variable 'integerp)
 
 (defcustom tcl-auto-newline nil
   "*Non-nil means automatically newline before and after braces you insert."