diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/tcl.el | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 147d95e2c54..8d25f687b2b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-08-07 Tom Tromey <tromey@redhat.com> | ||
| 2 | |||
| 3 | * progmodes/tcl.el (tcl-indent-level, tcl-continued-indent-level): | ||
| 4 | Add safe-local-variable property. | ||
| 5 | |||
| 1 | 2007-08-07 Chong Yidong <cyd@stupidchicken.com> | 6 | 2007-08-07 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * image-mode.el (image-toggle-display): Use image-refresh. | 8 | * image-mode.el (image-toggle-display): Use image-refresh. |
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." |