aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Tromey1995-05-10 18:22:21 +0000
committerTom Tromey1995-05-10 18:22:21 +0000
commit60da020d006184bcc78a3bf0acbfc1bf183049ea (patch)
treec3ea309d15ad96334bf33c122d14aad8d0524ce5
parentbc77c95cdea2e5acd105613cb30fdff901f8a160 (diff)
downloademacs-60da020d006184bcc78a3bf0acbfc1bf183049ea.tar.gz
emacs-60da020d006184bcc78a3bf0acbfc1bf183049ea.zip
Bug fix in menu code for XEmacs.
-rw-r--r--lisp/progmodes/tcl.el13
1 files changed, 9 insertions, 4 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el
index 518aa7e781d..f39e2d6da87 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.28 $ 9;; Version: $Revision: 1.29 $
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: 1995/04/08 19:52:50 $|$Revision: 1.28 $|~/modes/tcl.el.Z| 54;; $Date: 1995/05/09 21:36:53 $|$Revision: 1.29 $|~/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,11 @@
65 65
66;; Change log: 66;; Change log:
67;; $Log: tcl.el,v $ 67;; $Log: tcl.el,v $
68;; Revision 1.29 1995/05/09 21:36:53 tromey
69;; Changed "Lucid Emacs" to "XEmacs".
70;; Tcl's popup menu now added to existing one, courtesy
71;; dfarmer@evolving.com (Doug Farmer)
72;;
68;; Revision 1.28 1995/04/08 19:52:50 tromey 73;; Revision 1.28 1995/04/08 19:52:50 tromey
69;; (tcl-outline-level): New function 74;; (tcl-outline-level): New function
70;; (tcl-mode): Added outline-handling stuff. 75;; (tcl-mode): Added outline-handling stuff.
@@ -288,7 +293,7 @@
288 (require 'imenu)) 293 (require 'imenu))
289 ())) 294 ()))
290 295
291(defconst tcl-version "$Revision: 1.28 $") 296(defconst tcl-version "$Revision: 1.29 $")
292(defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>") 297(defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>")
293 298
294;; 299;;
@@ -923,7 +928,7 @@ Commands:
923 (set-buffer-menubar (copy-sequence current-menubar)) 928 (set-buffer-menubar (copy-sequence current-menubar))
924 (add-menu nil "Tcl" tcl-lucid-menu))) 929 (add-menu nil "Tcl" tcl-lucid-menu)))
925 ;; Append Tcl menu to popup menu for XEmacs. 930 ;; Append Tcl menu to popup menu for XEmacs.
926 (if (and tcl-using-xemacs-19 (not (boundp 'mode-popup-menu))) 931 (if (and tcl-using-xemacs-19 (boundp 'mode-popup-menu))
927 (setq mode-popup-menu tcl-xemacs-menu)) 932 (setq mode-popup-menu tcl-xemacs-menu))
928 933
929 (run-hooks 'tcl-mode-hook)) 934 (run-hooks 'tcl-mode-hook))