aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Tromey1995-05-11 22:12:49 +0000
committerTom Tromey1995-05-11 22:12:49 +0000
commit303f8496cb938324121cd79d115b66b0483411db (patch)
treedd9d8d865d4119cb2bc8075e70f7d75182595143
parent78809db739b070efbdf71d508f4c33a0ec4a13e5 (diff)
downloademacs-303f8496cb938324121cd79d115b66b0483411db.tar.gz
emacs-303f8496cb938324121cd79d115b66b0483411db.zip
(tcl-type-alist): Include entry for "proc".
-rw-r--r--lisp/progmodes/tcl.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el
index 80cc015fdff..6c7fe7d6575 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.30 $ 9;; Version: $Revision: 1.31 $
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: 1995/05/10 18:22:21 $|$Revision: 1.30 $|~/modes/tcl.el.Z| 54;; $Date: 1995/05/10 23:38:12 $|$Revision: 1.31 $|~/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,10 @@
65 65
66;; Change log: 66;; Change log:
67;; $Log: tcl.el,v $ 67;; $Log: tcl.el,v $
68;; Revision 1.31 1995/05/10 23:38:12 tromey
69;; (tcl-add-fsf-menu): Use make-lucid-menu-keymap, not
70;; "make-xemacs-menu-keymap".
71;;
68;; Revision 1.30 1995/05/10 18:22:21 tromey 72;; Revision 1.30 1995/05/10 18:22:21 tromey
69;; Bug fix in menu code for XEmacs. 73;; Bug fix in menu code for XEmacs.
70;; 74;;
@@ -296,7 +300,7 @@
296 (require 'imenu)) 300 (require 'imenu))
297 ())) 301 ()))
298 302
299(defconst tcl-version "$Revision: 1.30 $") 303(defconst tcl-version "$Revision: 1.31 $")
300(defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>") 304(defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>")
301 305
302;; 306;;
@@ -616,6 +620,7 @@ This variable is generally set from `tcl-proc-regexp',
616;; like 2 sexps. 620;; like 2 sexps.
617(defvar tcl-type-alist 621(defvar tcl-type-alist
618 '( 622 '(
623 ("proc" nil tcl-expr tcl-commands)
619 ("expr" tcl-expr) 624 ("expr" tcl-expr)
620 ("catch" tcl-commands) 625 ("catch" tcl-commands)
621 ("if" tcl-expr "then" tcl-commands) 626 ("if" tcl-expr "then" tcl-commands)