diff options
| author | Tom Tromey | 1999-07-18 05:21:33 +0000 |
|---|---|---|
| committer | Tom Tromey | 1999-07-18 05:21:33 +0000 |
| commit | 4744889106fd3c93ed44df6aa22eae705cbf5955 (patch) | |
| tree | 142684231dd9f3105e421000ab4c6a7e7555cce9 | |
| parent | 7d2be63757fad305ba3e125017a4c849e12a6073 (diff) | |
| download | emacs-4744889106fd3c93ed44df6aa22eae705cbf5955.tar.gz emacs-4744889106fd3c93ed44df6aa22eae705cbf5955.zip | |
(tcl-proc-list): Reverted; already had `body'.
| -rw-r--r-- | lisp/progmodes/tcl.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el index bc62086b20d..a0fc5cab99a 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.53 $ | 9 | ;; Version: $Revision: 1.54 $ |
| 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: 1999/03/29 07:35:55 $|$Revision: 1.53 $|~/modes/tcl.el.Z| | 54 | ;; $Date: 1999/07/18 05:19:57 $|$Revision: 1.54 $|~/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 |
| @@ -65,6 +65,9 @@ | |||
| 65 | 65 | ||
| 66 | ;; Change log: | 66 | ;; Change log: |
| 67 | ;; $Log: tcl.el,v $ | 67 | ;; $Log: tcl.el,v $ |
| 68 | ;; Revision 1.54 1999/07/18 05:19:57 tromey | ||
| 69 | ;; (tcl-proc-list): Added `body'. | ||
| 70 | ;; | ||
| 68 | ;; Revision 1.53 1999/03/29 07:35:55 tromey | 71 | ;; Revision 1.53 1999/03/29 07:35:55 tromey |
| 69 | ;; (tcl-using-emacs-19-23): Recognize Emacs 20. | 72 | ;; (tcl-using-emacs-19-23): Recognize Emacs 20. |
| 70 | ;; | 73 | ;; |
| @@ -382,7 +385,7 @@ | |||
| 382 | (require 'imenu)) | 385 | (require 'imenu)) |
| 383 | ())) | 386 | ())) |
| 384 | 387 | ||
| 385 | (defconst tcl-version "$Revision: 1.53 $") | 388 | (defconst tcl-version "$Revision: 1.54 $") |
| 386 | (defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>") | 389 | (defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>") |
| 387 | 390 | ||
| 388 | ;; | 391 | ;; |
| @@ -665,7 +668,7 @@ Emacs 18 users must use `setq': | |||
| 665 | "Hook for customizing Inferior Tcl mode.") | 668 | "Hook for customizing Inferior Tcl mode.") |
| 666 | 669 | ||
| 667 | (defvar tcl-proc-list | 670 | (defvar tcl-proc-list |
| 668 | '("proc" "method" "itcl_class" "body" "configbody" "class" "body") | 671 | '("proc" "method" "itcl_class" "body" "configbody" "class") |
| 669 | "List of commands whose first argument defines something. | 672 | "List of commands whose first argument defines something. |
| 670 | This exists because some people (eg, me) use \"defvar\" et al. | 673 | This exists because some people (eg, me) use \"defvar\" et al. |
| 671 | Call `tcl-set-proc-regexp' and `tcl-set-font-lock-keywords' | 674 | Call `tcl-set-proc-regexp' and `tcl-set-font-lock-keywords' |