aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Tromey1999-07-18 05:19:57 +0000
committerTom Tromey1999-07-18 05:19:57 +0000
commit7d2be63757fad305ba3e125017a4c849e12a6073 (patch)
treed2b32726b9100cd668ff4054a09eec52fabc47b3
parent08f0f5e9cd19326fb6951448e5ddda4d86b15145 (diff)
downloademacs-7d2be63757fad305ba3e125017a4c849e12a6073.tar.gz
emacs-7d2be63757fad305ba3e125017a4c849e12a6073.zip
(tcl-proc-list): Added `body'.
-rw-r--r--lisp/progmodes/tcl.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el
index 8f29da489c7..bc62086b20d 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.52 $ 9;; Version: $Revision: 1.53 $
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: 1998/07/02 17:47:49 $|$Revision: 1.52 $|~/modes/tcl.el.Z| 54;; $Date: 1999/03/29 07:35:55 $|$Revision: 1.53 $|~/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.53 1999/03/29 07:35:55 tromey
69;; (tcl-using-emacs-19-23): Recognize Emacs 20.
70;;
68;; Revision 1.52 1998/07/02 17:47:49 tromey 71;; Revision 1.52 1998/07/02 17:47:49 tromey
69;; Some itcl additions: 72;; Some itcl additions:
70;; (tcl-typeword-list): Added private, itk_option. 73;; (tcl-typeword-list): Added private, itk_option.
@@ -379,7 +382,7 @@
379 (require 'imenu)) 382 (require 'imenu))
380 ())) 383 ()))
381 384
382(defconst tcl-version "$Revision: 1.52 $") 385(defconst tcl-version "$Revision: 1.53 $")
383(defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>") 386(defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>")
384 387
385;; 388;;
@@ -662,7 +665,7 @@ Emacs 18 users must use `setq':
662 "Hook for customizing Inferior Tcl mode.") 665 "Hook for customizing Inferior Tcl mode.")
663 666
664(defvar tcl-proc-list 667(defvar tcl-proc-list
665 '("proc" "method" "itcl_class" "body" "configbody" "class") 668 '("proc" "method" "itcl_class" "body" "configbody" "class" "body")
666 "List of commands whose first argument defines something. 669 "List of commands whose first argument defines something.
667This exists because some people (eg, me) use \"defvar\" et al. 670This exists because some people (eg, me) use \"defvar\" et al.
668Call `tcl-set-proc-regexp' and `tcl-set-font-lock-keywords' 671Call `tcl-set-proc-regexp' and `tcl-set-font-lock-keywords'