From a3dfa2c01534577c075e890b7ebbc6b843ae38d0 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sun, 22 May 1994 05:26:51 +0000 Subject: [PATCH] Fixes for imenu. --- lisp/progmodes/tcl.el | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el index b86de1402b2..f6128a53b4a 100644 --- a/lisp/progmodes/tcl.el +++ b/lisp/progmodes/tcl.el @@ -6,7 +6,7 @@ ;; Author: Tom Tromey ;; Chris Lindblad ;; Keywords: languages tcl modes -;; Version: $Revision: 1.7 $ +;; Version: $Revision: 1.8 $ ;; 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/03 01:23:42 $|$Revision: 1.7 $|~/modes/tcl.el.Z| +;; $Date: 1994/05/22 03:38:07 $|$Revision: 1.8 $|~/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.8 1994/05/22 03:38:07 tromey +; Fixed menu support. +; ; Revision 1.7 1994/05/03 01:23:42 tromey ; *** empty log message *** ; @@ -767,6 +770,8 @@ Commands: (make-local-variable 'font-lock-keywords) (setq font-lock-keywords tcl-font-lock-keywords) + + ;; The following only really makes sense under GNU Emacs 19. (setq imenu-create-index-function 'tcl-imenu-create-index-function) (make-local-variable 'parse-sexp-ignore-comments) @@ -1203,7 +1208,13 @@ Returns nil if line starts inside a string, t if in a comment." ;; Interfaces to other packages. ;; -(autoload 'imenu-progress-message "imenu" "" nil 'macro) +;; When compiling under GNU Emacs, load imenu during compilation. If +;; you have 19.22 or earlier, comment this out, or get imenu. +(eval-when-compile + (if (and tcl-using-emacs + (not tcl-using-lemacs-19)) + (require 'imenu)) + ()) (defun tcl-imenu-create-index-function () "Generate alist of indices for imenu." -- 2.11.4.GIT