aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorStefan Monnier2007-08-07 17:00:44 +0000
committerStefan Monnier2007-08-07 17:00:44 +0000
commitb14d552b33dcf0a2b85d91e7b385a07585a141b4 (patch)
treef7150f5a983533fbf3bf4b1f25579a4a5248fb8b /lisp/progmodes
parent2438b9e44fd33eb915fcef0a1da1aa6777c3a3b4 (diff)
downloademacs-b14d552b33dcf0a2b85d91e7b385a07585a141b4.tar.gz
emacs-b14d552b33dcf0a2b85d91e7b385a07585a141b4.zip
(tcl-indent-level, tcl-continued-indent-level): Add safe-local-variable prop.
Diffstat (limited to 'lisp/progmodes')
-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 @@
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."