diff lisp/progmodes/tcl.el @ 78458:ab02dcd8b2b4

(tcl-indent-level, tcl-continued-indent-level): Add safe-local-variable prop.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 07 Aug 2007 17:00:44 +0000
parents c1ec1c8a8d2e
children a1342e6e097a 424b655804ca
line wrap: on
line diff
--- a/lisp/progmodes/tcl.el	Tue Aug 07 16:47:29 2007 +0000
+++ b/lisp/progmodes/tcl.el	Tue Aug 07 17:00:44 2007 +0000
@@ -126,11 +126,13 @@
   "*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."