emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104314: * lisp/progmodes/grep.el (gr


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104314: * lisp/progmodes/grep.el (grep-mode): Fix it for good!
Date: Sun, 22 May 2011 14:19:24 -0300
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104314
fixes bug(s): http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8684
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Sun 2011-05-22 14:19:24 -0300
message:
  * lisp/progmodes/grep.el (grep-mode): Fix it for good!
modified:
  lisp/ChangeLog
  lisp/progmodes/grep.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-05-22 00:04:49 +0000
+++ b/lisp/ChangeLog    2011-05-22 17:19:24 +0000
@@ -1,3 +1,7 @@
+2011-05-22  Stefan Monnier  <address@hidden>
+
+       * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
+
 2011-05-22  Glenn Morris  <address@hidden>
 
        * files.el (hack-local-variables-prop-line): Small simplifications.

=== modified file 'lisp/progmodes/grep.el'
--- a/lisp/progmodes/grep.el    2011-05-21 23:18:22 +0000
+++ b/lisp/progmodes/grep.el    2011-05-22 17:19:24 +0000
@@ -700,7 +700,7 @@
        grep-regexp-alist)
   ;; compilation-directory-matcher can't be nil, so we set it to a regexp that
   ;; can never match.
-  (set (make-local-variable 'compilation-directory-matcher) "\\`a\\`")
+  (set (make-local-variable 'compilation-directory-matcher) '("\\`a\\`"))
   (set (make-local-variable 'compilation-process-setup-function)
        'grep-process-setup)
   (set (make-local-variable 'compilation-disable-input) t)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]