diff options
| author | Tom Tromey | 1994-05-03 01:23:42 +0000 |
|---|---|---|
| committer | Tom Tromey | 1994-05-03 01:23:42 +0000 |
| commit | 6d6c9987ca490e96ce2f48f0a0ee8435f7edd446 (patch) | |
| tree | 9fa51b240c9ec5627d857d9b55de0217cdde6ac1 | |
| parent | aab936ad6abe034ee0624186315449e234a2d32c (diff) | |
| download | emacs-6d6c9987ca490e96ce2f48f0a0ee8435f7edd446.tar.gz emacs-6d6c9987ca490e96ce2f48f0a0ee8435f7edd446.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/progmodes/tcl.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el index 9b850e0b4da..0ed1029bd49 100644 --- a/lisp/progmodes/tcl.el +++ b/lisp/progmodes/tcl.el | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | ;; Author: Tom Tromey <tromey@busco.lanl.gov> | 6 | ;; Author: Tom Tromey <tromey@busco.lanl.gov> |
| 7 | ;; Chris Lindblad <cjl@lcs.mit.edu> | 7 | ;; Chris Lindblad <cjl@lcs.mit.edu> |
| 8 | ;; Keywords: languages tcl modes | 8 | ;; Keywords: languages tcl modes |
| 9 | ;; Version: $Revision: 1.5 $ | 9 | ;; Version: $Revision: 1.6 $ |
| 10 | 10 | ||
| 11 | ;; This file is part of GNU Emacs. | 11 | ;; This file is part of GNU Emacs. |
| 12 | 12 | ||
| @@ -51,7 +51,7 @@ | |||
| 51 | ;; LCD Archive Entry: | 51 | ;; LCD Archive Entry: |
| 52 | ;; tcl|Tom Tromey|tromey@busco.lanl.gov| | 52 | ;; tcl|Tom Tromey|tromey@busco.lanl.gov| |
| 53 | ;; Major mode for editing Tcl| | 53 | ;; Major mode for editing Tcl| |
| 54 | ;; $Date: 1994/04/07 17:11:03 $|$Revision: 1.5 $|~/modes/tcl.el.Z| | 54 | ;; $Date: 1994/04/23 16:23:36 $|$Revision: 1.6 $|~/modes/tcl.el.Z| |
| 55 | 55 | ||
| 56 | ;; CUSTOMIZATION NOTES: | 56 | ;; CUSTOMIZATION NOTES: |
| 57 | ;; * tcl-proc-list can be used to customize a list of things that | 57 | ;; * tcl-proc-list can be used to customize a list of things that |
| @@ -64,7 +64,10 @@ | |||
| 64 | ;; according to context. | 64 | ;; according to context. |
| 65 | 65 | ||
| 66 | ;; Change log: | 66 | ;; Change log: |
| 67 | ;; $Log$ | 67 | ;; $Log: tcl.el,v $ |
| 68 | ; Revision 1.6 1994/04/23 16:23:36 tromey | ||
| 69 | ; Wrote tcl-indent-for-comment | ||
| 70 | ; | ||
| 68 | ;; | 71 | ;; |
| 69 | ;; 18-Mar-1994 Tom Tromey Fourth beta release. | 72 | ;; 18-Mar-1994 Tom Tromey Fourth beta release. |
| 70 | ;; Added {un,}comment-region to menu. Idea from | 73 | ;; Added {un,}comment-region to menu. Idea from |
| @@ -179,10 +182,11 @@ | |||
| 179 | ;; * Trailing \ will eat blank lines. Should deal with this. | 182 | ;; * Trailing \ will eat blank lines. Should deal with this. |
| 180 | ;; (this would help catch some potential bugs). | 183 | ;; (this would help catch some potential bugs). |
| 181 | ;; * Inferior should display in half the screen, not the whole screen. | 184 | ;; * Inferior should display in half the screen, not the whole screen. |
| 182 | ;; * M-; should do the right thing about putting a ";" at the end of a line. | ||
| 183 | ;; * Indentation should deal with "switch". | 185 | ;; * Indentation should deal with "switch". |
| 184 | ;; * Consider writing code to find help files automatically (for | 186 | ;; * Consider writing code to find help files automatically (for |
| 185 | ;; common cases). | 187 | ;; common cases). |
| 188 | ;; * M-; sometimes fails (try on "if [blah] then {") | ||
| 189 | ;; * `#' shouldn't insert `\#' in string. | ||
| 186 | 190 | ||
| 187 | 191 | ||
| 188 | 192 | ||