comparison 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
comparison
equal deleted inserted replaced
78457:46fd08fd44f3 78458:ab02dcd8b2b4
124 124
125 (defcustom tcl-indent-level 4 125 (defcustom tcl-indent-level 4
126 "*Indentation of Tcl statements with respect to containing block." 126 "*Indentation of Tcl statements with respect to containing block."
127 :type 'integer 127 :type 'integer
128 :group 'tcl) 128 :group 'tcl)
129 (put 'tcl-indent-level 'safe-local-variable 'integerp)
129 130
130 (defcustom tcl-continued-indent-level 4 131 (defcustom tcl-continued-indent-level 4
131 "*Indentation of continuation line relative to first line of command." 132 "*Indentation of continuation line relative to first line of command."
132 :type 'integer 133 :type 'integer
133 :group 'tcl) 134 :group 'tcl)
135 (put 'tcl-continued-indent-level 'safe-local-variable 'integerp)
134 136
135 (defcustom tcl-auto-newline nil 137 (defcustom tcl-auto-newline nil
136 "*Non-nil means automatically newline before and after braces you insert." 138 "*Non-nil means automatically newline before and after braces you insert."
137 :type 'boolean 139 :type 'boolean
138 :group 'tcl) 140 :group 'tcl)