aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/tcl.el
diff options
context:
space:
mode:
authorTom Tromey <[email protected]>1995-06-27 20:12:00 +0000
committerTom Tromey <[email protected]>1995-06-27 20:12:00 +0000
commitfe8fa72dad8b4c45734b26b1ebab7f9c74ac4f40 (patch)
treec9c380d5f0e7a7d96d74ac3167bf91aa1094b8ae /lisp/progmodes/tcl.el
parenta7efef53dc63f360e31c586f302f99f2a7e65e71 (diff)
(tcl-type-alist): More itcl changes.
Diffstat (limited to 'lisp/progmodes/tcl.el')
-rw-r--r--lisp/progmodes/tcl.el12
1 files changed, 9 insertions, 3 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el
index dc53b8f433..abb6ca403f 100644
--- a/lisp/progmodes/tcl.el
+++ b/lisp/progmodes/tcl.el
@@ -6,7 +6,7 @@
;; Author: Tom Tromey <[email protected]>
;; Chris Lindblad <[email protected]>
;; Keywords: languages tcl modes
-;; Version: $Revision: 1.33 $
+;; Version: $Revision: 1.34 $
;; This file is part of GNU Emacs.
@@ -51,7 +51,7 @@
;; LCD Archive Entry:
;; tcl|Tom Tromey|[email protected]|
;; Major mode for editing Tcl|
-;; $Date: 1995/06/27 20:01:29 $|$Revision: 1.33 $|~/modes/tcl.el.Z|
+;; $Date: 1995/06/27 20:06:05 $|$Revision: 1.34 $|~/modes/tcl.el.Z|
;; CUSTOMIZATION NOTES:
;; * tcl-proc-list can be used to customize a list of things that
@@ -65,6 +65,10 @@
;; Change log:
;; $Log: tcl.el,v $
+;; Revision 1.34 1995/06/27 20:06:05 tromey
+;; More changes for itcl.
+;; Bug fixes for Emacs 19.29.
+;;
;; Revision 1.33 1995/06/27 20:01:29 tromey
;; (tcl-set-proc-regexp): Allow leading spaces.
;; (tcl-proc-list): Changes for itcl.
@@ -309,7 +313,7 @@
(require 'imenu))
()))
-(defconst tcl-version "$Revision: 1.33 $")
+(defconst tcl-version "$Revision: 1.34 $")
(defconst tcl-maintainer "Tom Tromey <[email protected]>")
;;
@@ -629,6 +633,8 @@ This variable is generally set from `tcl-proc-regexp',
'(
("proc" nil tcl-expr tcl-commands)
("method" nil tcl-expr tcl-commands)
+ ("destructor" tcl-commands)
+ ("constructor" tcl-commands)
("expr" tcl-expr)
("catch" tcl-commands)
("if" tcl-expr "then" tcl-commands)