aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/tcl.el
diff options
context:
space:
mode:
authorTom Tromey <[email protected]>1995-05-10 23:38:12 +0000
committerTom Tromey <[email protected]>1995-05-10 23:38:12 +0000
commit1305021dea3b2980a199d2b17f239cdc80e11087 (patch)
tree69197bdad398267ad3384961848d8aecefc30a18 /lisp/progmodes/tcl.el
parent60da020d006184bcc78a3bf0acbfc1bf183049ea (diff)
(tcl-add-fsf-menu): Use make-lucid-menu-keymap, not
"make-xemacs-menu-keymap".
Diffstat (limited to 'lisp/progmodes/tcl.el')
-rw-r--r--lisp/progmodes/tcl.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el
index f39e2d6da8..80cc015fdf 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.29 $
+;; Version: $Revision: 1.30 $
;; 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: 1995/05/09 21:36:53 $|$Revision: 1.29 $|~/modes/tcl.el.Z|
+;; $Date: 1995/05/10 18:22:21 $|$Revision: 1.30 $|~/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.30 1995/05/10 18:22:21 tromey
+;; Bug fix in menu code for XEmacs.
+;;
;; Revision 1.29 1995/05/09 21:36:53 tromey
;; Changed "Lucid Emacs" to "XEmacs".
;; Tcl's popup menu now added to existing one, courtesy
@@ -293,7 +296,7 @@
(require 'imenu))
()))
-(defconst tcl-version "$Revision: 1.29 $")
+(defconst tcl-version "$Revision: 1.30 $")
(defconst tcl-maintainer "Tom Tromey <[email protected]>")
;;
@@ -439,7 +442,7 @@ quoted for Tcl.")
(define-key map [menu-bar] (make-sparse-keymap))
;; This fails in Emacs 19.22 and earlier.
(require 'lmenu)
- (let ((menu (make-xemacs-menu-keymap "Tcl" (cdr tcl-xemacs-menu))))
+ (let ((menu (make-lucid-menu-keymap "Tcl" (cdr tcl-xemacs-menu))))
(define-key map [menu-bar tcl] (cons "Tcl" menu))
;; The following is intended to compute the key sequence
;; information for the menu. It doesn't work.