summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1994-06-03 20:39:14 +0000
committerTom Tromey <tromey@redhat.com>1994-06-03 20:39:14 +0000
commit4032152f3e87932a1c031994bb461b3eb75b29c1 (patch)
tree00a7369e6c6bfa24561b9955137f52a644a4959e /lisp
parentd182dd502184a71bf0356a86ddde69b31213a37d (diff)
downloademacs-4032152f3e87932a1c031994bb461b3eb75b29c1.tar.gz
Fixed menu bug.
Diffstat (limited to 'lisp')
-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 9f78622c4f1..3156d63993f 100644
--- a/lisp/progmodes/tcl.el
+++ b/lisp/progmodes/tcl.el
@@ -6,7 +6,7 @@
;; Author: Tom Tromey <tromey@busco.lanl.gov>
;; Chris Lindblad <cjl@lcs.mit.edu>
;; Keywords: languages tcl modes
-;; Version: $Revision: 1.16 $
+;; Version: $Revision: 1.17 $
;; This file is part of GNU Emacs.
@@ -51,7 +51,7 @@
;; LCD Archive Entry:
;; tcl|Tom Tromey|tromey@busco.lanl.gov|
;; Major mode for editing Tcl|
-;; $Date: 1994/05/26 05:06:14 $|$Revision: 1.16 $|~/modes/tcl.el.Z|
+;; $Date: 1994/06/03 00:47:15 $|$Revision: 1.17 $|~/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.17 1994/06/03 00:47:15 tromey
+; Fixed bug in bug-reporting code.
+;
; Revision 1.16 1994/05/26 05:06:14 tromey
; Menu items now sensitive as appropriate.
;
@@ -246,7 +249,7 @@
(require 'imenu))
()))
-(defconst tcl-version "$Revision: 1.16 $")
+(defconst tcl-version "$Revision: 1.17 $")
(defconst tcl-maintainer "Tom Tromey <tromey@busco.lanl.gov>")
;;
@@ -375,11 +378,11 @@ quoted for Tcl.")
"----"
["Show Tcl process buffer" inferior-tcl t]
["Send function to Tcl process" tcl-eval-defun
- (get-buffer inferior-tcl-buffer)]
+ (and inferior-tcl (get-buffer inferior-tcl-buffer))]
["Send region to Tcl process" tcl-eval-region
- (get-buffer inferior-tcl-buffer)]
+ (and inferior-tcl (get-buffer inferior-tcl-buffer))]
["Send file to Tcl process" tcl-load-file
- (get-buffer inferior-tcl-buffer)]
+ (and inferior-tcl (get-buffer inferior-tcl-buffer))]
["Restart Tcl process with file" tcl-restart-with-file t]
"----"
["Tcl help" tcl-help-on-word tcl-help-directory-list]