* lisp/progmodes/grep.el (grep-mode): Disable default
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 17 May 2011 18:14:30 +0000 (15:14 -0300)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 17 May 2011 18:14:30 +0000 (15:14 -0300)
compilation-directory-matcher setting.

Fixes: debbugs:8684

lisp/ChangeLog
lisp/progmodes/grep.el

index 7942766..1fc7cc8 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/grep.el (grep-mode): Disable default
+       compilation-directory-matcher setting (bug#8684).
+
 2011-05-17  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
index 143220a..3b819a1 100644 (file)
@@ -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)