aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorTom Tromey <[email protected]>1994-10-11 02:01:27 +0000
committerTom Tromey <[email protected]>1994-10-11 02:01:27 +0000
commit513a6509024a9f78ab457cf6ffab96dd20ecaa0f (patch)
tree7999c636450a1a44f5ea252df73edcbc0d2f0524 /lisp
parentb76918533048ec846a04bce89f9f4241c767f09f (diff)
(tcl-mode): imenu-create-index-function made buffer local.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/tcl.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el
index 8495b09389..30bd22d05e 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.25 $
+;; Version: $Revision: 1.26 $
;; 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: 1994/08/22 15:56:24 $|$Revision: 1.25 $|~/modes/tcl.el.Z|
+;; $Date: 1994/09/01 18:06:24 $|$Revision: 1.26 $|~/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.26 1994/09/01 18:06:24 tromey
+;; Added filename completion in inferior tcl mode
+;;
;; Revision 1.25 1994/08/22 15:56:24 tromey
;; tcl-load-file default to current buffer.
;;
@@ -276,7 +279,7 @@
(require 'imenu))
()))
-(defconst tcl-version "$Revision: 1.25 $")
+(defconst tcl-version "$Revision: 1.26 $")
(defconst tcl-maintainer "Tom Tromey <[email protected]>")
;;
@@ -878,6 +881,7 @@ Commands:
(setq font-lock-keywords tcl-font-lock-keywords)
;; The following only really makes sense under GNU Emacs 19.
+ (make-local-variable 'imenu-create-index-function)
(setq imenu-create-index-function 'tcl-imenu-create-index-function)
(make-local-variable 'parse-sexp-ignore-comments)