+2004-04-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
+
+ * progmodes/grep.el (grep-mode): Add eval-when-compile.
+
2004-04-20 Richard M. Stallman <rms@gnu.org>
* window.el (split-window-save-restore-data):
'grep-mode nil highlight-regexp)))
;;;###autoload (autoload 'grep-mode "grep" nil t)
-(define-compilation-mode grep-mode "Grep"
- "Sets `grep-last-buffer' and `compilation-window-height'."
- (setq grep-last-buffer (current-buffer))
- (set (make-local-variable 'compilation-error-face)
- grep-hit-face)
- (set (make-local-variable 'compilation-error-regexp-alist)
- grep-regexp-alist))
+(eval-when-compile
+ (define-compilation-mode grep-mode "Grep"
+ "Sets `grep-last-buffer' and `compilation-window-height'."
+ (setq grep-last-buffer (current-buffer))
+ (set (make-local-variable 'compilation-error-face)
+ grep-hit-face)
+ (set (make-local-variable 'compilation-error-regexp-alist)
+ grep-regexp-alist)))
;; This is a copy of find-tag-default from etags.el.
(defun grep-tag-default ()