diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2015-06-28 04:38:11 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2015-06-28 04:38:11 +0300 |
commit | bbf63ee00a3c263e3190320bc389bf0b72a5a9d5 (patch) | |
tree | 3bba555736ac373d5c5a628b139b8f0d838195d1 /lisp/progmodes/grep.el | |
parent | a1dde6b50fb8601b2a3ac333cc43569622a18500 (diff) | |
download | emacs-bbf63ee00a3c263e3190320bc389bf0b72a5a9d5.tar.gz emacs-bbf63ee00a3c263e3190320bc389bf0b72a5a9d5.tar.bz2 emacs-bbf63ee00a3c263e3190320bc389bf0b72a5a9d5.zip |
Bind grep-highlight-matches around the rgrep call
* lisp/progmodes/grep.el (zrgrep): Bind grep-highlight-matches
around the rgrep call (bug#20728).
Diffstat (limited to 'lisp/progmodes/grep.el')
-rw-r--r-- | lisp/progmodes/grep.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 639d8d93652..3240ee8a0db 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -1089,9 +1089,6 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'." (grep-find-template nil) (grep-find-command nil) (grep-host-defaults-alist nil) - ;; Set `grep-highlight-matches' to `always' - ;; since `zgrep' puts filters in the grep output. - (grep-highlight-matches 'always) ;; Use for `grep-read-files' (grep-files-aliases '(("all" . "* .*") ("gz" . "*.gz")))) @@ -1109,7 +1106,10 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'." nil default-directory t)) (confirm (equal current-prefix-arg '(4)))) (list regexp files dir confirm grep-find-template))))))) - (let ((grep-find-template template)) + (let ((grep-find-template template) + ;; Set `grep-highlight-matches' to `always' + ;; since `zgrep' puts filters in the grep output. + (grep-highlight-matches 'always)) (rgrep regexp files dir confirm))) ;;;###autoload |