]> git.eshelyaron.com Git - emacs.git/commitdiff
Another menu fix.
authorTom Tromey <tromey@redhat.com>
Fri, 3 Jun 1994 21:09:19 +0000 (21:09 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 3 Jun 1994 21:09:19 +0000 (21:09 +0000)
lisp/progmodes/tcl.el

index 3156d63993fb55a72ae695ae23a13a1507c5f9b4..5606c0afba87ff9c5b9566b8f95c6c07defcfea0 100644 (file)
@@ -6,7 +6,7 @@
 ;; Author: Tom Tromey <tromey@busco.lanl.gov>
 ;;    Chris Lindblad <cjl@lcs.mit.edu>
 ;; Keywords: languages tcl modes
-;; Version: $Revision: 1.17 $
+;; Version: $Revision: 1.18 $
 
 ;; 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/06/03 00:47:15 $|$Revision: 1.17 $|~/modes/tcl.el.Z|
+;; $Date: 1994/06/03 20:39:14 $|$Revision: 1.18 $|~/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.18  1994/06/03  20:39:14  tromey
+; Fixed menu bug.
+;
 ; Revision 1.17  1994/06/03  00:47:15  tromey
 ; Fixed bug in bug-reporting code.
 ;
           (require 'imenu))
        ()))
 
-(defconst tcl-version "$Revision: 1.17 $")
+(defconst tcl-version "$Revision: 1.18 $")
 (defconst tcl-maintainer "Tom Tromey <tromey@busco.lanl.gov>")
 
 ;;
@@ -378,11 +381,11 @@ quoted for Tcl.")
     "----"
     ["Show Tcl process buffer" inferior-tcl t]
     ["Send function to Tcl process" tcl-eval-defun
-     (and inferior-tcl (get-buffer inferior-tcl-buffer))]
+     (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
     ["Send region to Tcl process" tcl-eval-region
-     (and inferior-tcl (get-buffer inferior-tcl-buffer))]
+     (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
     ["Send file to Tcl process" tcl-load-file
-     (and inferior-tcl (get-buffer inferior-tcl-buffer))]
+     (and inferior-tcl-buffer (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]