diff options
| author | Tom Tromey | 1994-06-03 20:39:14 +0000 |
|---|---|---|
| committer | Tom Tromey | 1994-06-03 20:39:14 +0000 |
| commit | a796569b5c0e05fcbecc3136f0e2c93c12256c5e (patch) | |
| tree | 820d26d4fe3b23b064b74e994d29bc215c0722ac | |
| parent | 8a7cdf3af14e2334a3c46b12fbf911a1c341df2e (diff) | |
| download | emacs-a796569b5c0e05fcbecc3136f0e2c93c12256c5e.tar.gz emacs-a796569b5c0e05fcbecc3136f0e2c93c12256c5e.zip | |
Fixed menu bug.
| -rw-r--r-- | lisp/progmodes/tcl.el | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el index 9f78622c4f1..3156d63993f 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.16 $ | 9 | ;; Version: $Revision: 1.17 $ |
| 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/05/26 05:06:14 $|$Revision: 1.16 $|~/modes/tcl.el.Z| | 54 | ;; $Date: 1994/06/03 00:47:15 $|$Revision: 1.17 $|~/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.17 1994/06/03 00:47:15 tromey | ||
| 69 | ; Fixed bug in bug-reporting code. | ||
| 70 | ; | ||
| 68 | ; Revision 1.16 1994/05/26 05:06:14 tromey | 71 | ; Revision 1.16 1994/05/26 05:06:14 tromey |
| 69 | ; Menu items now sensitive as appropriate. | 72 | ; Menu items now sensitive as appropriate. |
| 70 | ; | 73 | ; |
| @@ -246,7 +249,7 @@ | |||
| 246 | (require 'imenu)) | 249 | (require 'imenu)) |
| 247 | ())) | 250 | ())) |
| 248 | 251 | ||
| 249 | (defconst tcl-version "$Revision: 1.16 $") | 252 | (defconst tcl-version "$Revision: 1.17 $") |
| 250 | (defconst tcl-maintainer "Tom Tromey <tromey@busco.lanl.gov>") | 253 | (defconst tcl-maintainer "Tom Tromey <tromey@busco.lanl.gov>") |
| 251 | 254 | ||
| 252 | ;; | 255 | ;; |
| @@ -375,11 +378,11 @@ quoted for Tcl.") | |||
| 375 | "----" | 378 | "----" |
| 376 | ["Show Tcl process buffer" inferior-tcl t] | 379 | ["Show Tcl process buffer" inferior-tcl t] |
| 377 | ["Send function to Tcl process" tcl-eval-defun | 380 | ["Send function to Tcl process" tcl-eval-defun |
| 378 | (get-buffer inferior-tcl-buffer)] | 381 | (and inferior-tcl (get-buffer inferior-tcl-buffer))] |
| 379 | ["Send region to Tcl process" tcl-eval-region | 382 | ["Send region to Tcl process" tcl-eval-region |
| 380 | (get-buffer inferior-tcl-buffer)] | 383 | (and inferior-tcl (get-buffer inferior-tcl-buffer))] |
| 381 | ["Send file to Tcl process" tcl-load-file | 384 | ["Send file to Tcl process" tcl-load-file |
| 382 | (get-buffer inferior-tcl-buffer)] | 385 | (and inferior-tcl (get-buffer inferior-tcl-buffer))] |
| 383 | ["Restart Tcl process with file" tcl-restart-with-file t] | 386 | ["Restart Tcl process with file" tcl-restart-with-file t] |
| 384 | "----" | 387 | "----" |
| 385 | ["Tcl help" tcl-help-on-word tcl-help-directory-list] | 388 | ["Tcl help" tcl-help-on-word tcl-help-directory-list] |