summaryrefslogtreecommitdiff
path: root/lisp/progmodes/tcl.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2007-08-07 17:00:44 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2007-08-07 17:00:44 +0000
commitb14d552b33dcf0a2b85d91e7b385a07585a141b4 (patch)
treef7150f5a983533fbf3bf4b1f25579a4a5248fb8b /lisp/progmodes/tcl.el
parent2438b9e44fd33eb915fcef0a1da1aa6777c3a3b4 (diff)
downloademacs-b14d552b33dcf0a2b85d91e7b385a07585a141b4.tar.gz
(tcl-indent-level, tcl-continued-indent-level): Add safe-local-variable prop.
Diffstat (limited to 'lisp/progmodes/tcl.el')
-rw-r--r--lisp/progmodes/tcl.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el
index c7576a27114..f9fd7beffd2 100644
--- a/lisp/progmodes/tcl.el
+++ b/lisp/progmodes/tcl.el
@@ -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."