diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-17 15:14:30 -0300 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-17 15:14:30 -0300 |
commit | 1d99a745e284a3b378f11195ec6cfb63359c3de8 (patch) | |
tree | d4f8de9efe49a8cadd72dcb2e7dd3f9692c0ba58 /lisp | |
parent | 7c1d9aa0bd508b0b3e0506bca7384dc41cfe7484 (diff) | |
download | emacs-1d99a745e284a3b378f11195ec6cfb63359c3de8.tar.gz |
* lisp/progmodes/grep.el (grep-mode): Disable default
compilation-directory-matcher setting.
Fixes: debbugs:8684
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/progmodes/grep.el | 1 |
2 files changed, 6 insertions, 0 deletions
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 <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" 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) |