(tcl-indent-level, tcl-continued-indent-level): Add safe-local-variable prop.

This commit is contained in:
Stefan Monnier 2007-08-07 17:00:44 +00:00
parent 2438b9e44f
commit b14d552b33
2 changed files with 7 additions and 0 deletions

View 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.

View file

@ -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."