aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Tromey1994-06-03 21:09:19 +0000
committerTom Tromey1994-06-03 21:09:19 +0000
commitefd7d762ec1140db32a6f54e3a6ef34d2490f03d (patch)
tree1e18306dfd68ea1b2f1372a7f1a903c0f0096822
parenta796569b5c0e05fcbecc3136f0e2c93c12256c5e (diff)
downloademacs-efd7d762ec1140db32a6f54e3a6ef34d2490f03d.tar.gz
emacs-efd7d762ec1140db32a6f54e3a6ef34d2490f03d.zip
Another menu fix.
-rw-r--r--lisp/progmodes/tcl.el15
1 files changed, 9 insertions, 6 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el
index 3156d63993f..5606c0afba8 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.17 $ 9;; Version: $Revision: 1.18 $
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: 1994/06/03 00:47:15 $|$Revision: 1.17 $|~/modes/tcl.el.Z| 54;; $Date: 1994/06/03 20:39:14 $|$Revision: 1.18 $|~/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.18 1994/06/03 20:39:14 tromey
69; Fixed menu bug.
70;
68; Revision 1.17 1994/06/03 00:47:15 tromey 71; Revision 1.17 1994/06/03 00:47:15 tromey
69; Fixed bug in bug-reporting code. 72; Fixed bug in bug-reporting code.
70; 73;
@@ -249,7 +252,7 @@
249 (require 'imenu)) 252 (require 'imenu))
250 ())) 253 ()))
251 254
252(defconst tcl-version "$Revision: 1.17 $") 255(defconst tcl-version "$Revision: 1.18 $")
253(defconst tcl-maintainer "Tom Tromey <tromey@busco.lanl.gov>") 256(defconst tcl-maintainer "Tom Tromey <tromey@busco.lanl.gov>")
254 257
255;; 258;;
@@ -378,11 +381,11 @@ quoted for Tcl.")
378 "----" 381 "----"
379 ["Show Tcl process buffer" inferior-tcl t] 382 ["Show Tcl process buffer" inferior-tcl t]
380 ["Send function to Tcl process" tcl-eval-defun 383 ["Send function to Tcl process" tcl-eval-defun
381 (and inferior-tcl (get-buffer inferior-tcl-buffer))] 384 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
382 ["Send region to Tcl process" tcl-eval-region 385 ["Send region to Tcl process" tcl-eval-region
383 (and inferior-tcl (get-buffer inferior-tcl-buffer))] 386 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
384 ["Send file to Tcl process" tcl-load-file 387 ["Send file to Tcl process" tcl-load-file
385 (and inferior-tcl (get-buffer inferior-tcl-buffer))] 388 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
386 ["Restart Tcl process with file" tcl-restart-with-file t] 389 ["Restart Tcl process with file" tcl-restart-with-file t]
387 "----" 390 "----"
388 ["Tcl help" tcl-help-on-word tcl-help-directory-list] 391 ["Tcl help" tcl-help-on-word tcl-help-directory-list]