diff options
author | Tom Tromey <tromey@redhat.com> | 1999-07-18 05:21:33 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1999-07-18 05:21:33 +0000 |
commit | 4744889106fd3c93ed44df6aa22eae705cbf5955 (patch) | |
tree | 142684231dd9f3105e421000ab4c6a7e7555cce9 /lisp/progmodes | |
parent | 7d2be63757fad305ba3e125017a4c849e12a6073 (diff) | |
download | emacs-4744889106fd3c93ed44df6aa22eae705cbf5955.tar.gz |
(tcl-proc-list): Reverted; already had `body'.
Diffstat (limited to 'lisp/progmodes')
-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 @@ ;; Author: Tom Tromey <tromey@busco.lanl.gov> ;; Chris Lindblad <cjl@lcs.mit.edu> ;; Keywords: languages tcl modes -;; Version: $Revision: 1.53 $ +;; Version: $Revision: 1.54 $ ;; This file is part of GNU Emacs. @@ -51,7 +51,7 @@ ;; LCD Archive Entry: ;; tcl|Tom Tromey|tromey@busco.lanl.gov| ;; Major mode for editing Tcl| -;; $Date: 1999/03/29 07:35:55 $|$Revision: 1.53 $|~/modes/tcl.el.Z| +;; $Date: 1999/07/18 05:19:57 $|$Revision: 1.54 $|~/modes/tcl.el.Z| ;; CUSTOMIZATION NOTES: ;; * tcl-proc-list can be used to customize a list of things that @@ -65,6 +65,9 @@ ;; Change log: ;; $Log: tcl.el,v $ +;; Revision 1.54 1999/07/18 05:19:57 tromey +;; (tcl-proc-list): Added `body'. +;; ;; Revision 1.53 1999/03/29 07:35:55 tromey ;; (tcl-using-emacs-19-23): Recognize Emacs 20. ;; @@ -382,7 +385,7 @@ (require 'imenu)) ())) -(defconst tcl-version "$Revision: 1.53 $") +(defconst tcl-version "$Revision: 1.54 $") (defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>") ;; @@ -665,7 +668,7 @@ Emacs 18 users must use `setq': "Hook for customizing Inferior Tcl mode.") (defvar tcl-proc-list - '("proc" "method" "itcl_class" "body" "configbody" "class" "body") + '("proc" "method" "itcl_class" "body" "configbody" "class") "List of commands whose first argument defines something. This exists because some people (eg, me) use \"defvar\" et al. Call `tcl-set-proc-regexp' and `tcl-set-font-lock-keywords' |