]> git.eshelyaron.com Git - emacs.git/commitdiff
Compile fixes.
authorTom Tromey <tromey@redhat.com>
Sun, 22 May 1994 20:14:59 +0000 (20:14 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 22 May 1994 20:14:59 +0000 (20:14 +0000)
lisp/progmodes/tcl.el

index 1a27e7bb1886bf5c618ec753f6fd5fd6a94a1543..bb67459b0114c79103b52511dd29585e6520cfcb 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.10 $
+;; Version: $Revision: 1.11 $
 
 ;; 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/22 20:02:03 $|$Revision: 1.10 $|~/modes/tcl.el.Z|
+;; $Date: 1994/05/22 20:12:44 $|$Revision: 1.11 $|~/modes/tcl.el.Z|
 
 ;; CUSTOMIZATION NOTES:
 ;; * tcl-proc-list can be used to customize a list of things that
 
 ;; Change log:
 ;; $Log: tcl.el,v $
+; Revision 1.11  1994/05/22  20:12:44  tromey
+; Fixed mark-defun for 19.23.
+; More menu fixes.
+;
 ; Revision 1.10  1994/05/22  20:02:03  tromey
 ; Fixed bug with M-;.
 ; Wrote bug-reporting code.
 
 (require 'comint)
 
-(defconst tcl-version "$Revision: 1.10 $")
+;; When compiling under GNU Emacs, load imenu during compilation.  If
+;; you have 19.22 or earlier, comment this out, or get imenu.
+(and (fboundp 'eval-when-compile)
+     (eval-when-compile
+       (if (and tcl-using-emacs-19
+               (not tcl-using-lemacs-19))
+          (require 'imenu))
+       ()))
+
+(defconst tcl-version "$Revision: 1.11 $")
 (defconst tcl-maintainer "Tom Tromey <tromey@busco.lanl.gov>")
 
 ;;
@@ -1220,15 +1233,6 @@ Returns nil if line starts inside a string, t if in a comment."
 ;; Interfaces to other packages.
 ;;
 
-;; When compiling under GNU Emacs, load imenu during compilation.  If
-;; you have 19.22 or earlier, comment this out, or get imenu.
-(and (fboundp 'eval-when-compile)
-     (eval-when-compile
-       (if (and tcl-using-emacs-19
-               (not tcl-using-lemacs-19))
-          (require 'imenu))
-       ()))
-
 (defun tcl-imenu-create-index-function ()
   "Generate alist of indices for imenu."
   (let ((re (concat tcl-proc-regexp "\\([^ \t\n{]+\\)"))