From: Stefan Monnier Date: Tue, 17 May 2011 18:14:30 +0000 (-0300) Subject: * lisp/progmodes/grep.el (grep-mode): Disable default X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~239^2~14^2^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1d99a745e284a3b378f11195ec6cfb63359c3de8;p=emacs.git * lisp/progmodes/grep.el (grep-mode): Disable default compilation-directory-matcher setting. Fixes: debbugs:8684 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 79427663988..1fc7cc88f8d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2011-05-17 Stefan Monnier + + * progmodes/grep.el (grep-mode): Disable default + compilation-directory-matcher setting (bug#8684). + 2011-05-17 Michael Albinus * net/tramp.el (tramp-handle-insert-file-contents): Use "dd" diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 143220ad28a..3b819a149b2 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -698,6 +698,7 @@ This function is called from `compilation-filter-hook'." grep-hit-face) (set (make-local-variable 'compilation-error-regexp-alist) grep-regexp-alist) + (set (make-local-variable 'compilation-directory-matcher) nil) (set (make-local-variable 'compilation-process-setup-function) 'grep-process-setup) (set (make-local-variable 'compilation-disable-input) t)