diff options
| author | Juri Linkov | 2018-03-03 23:33:15 +0200 |
|---|---|---|
| committer | Juri Linkov | 2018-03-03 23:33:15 +0200 |
| commit | f0e5f220b69880f1f5c29b2e5515b2aa8a950f14 (patch) | |
| tree | beafe41a23bb6c0fd144d303d58018627d9dc335 | |
| parent | a0f71260f8d6685f307eb9ce92edaecc9f5f6fef (diff) | |
| download | emacs-f0e5f220b69880f1f5c29b2e5515b2aa8a950f14.tar.gz emacs-f0e5f220b69880f1f5c29b2e5515b2aa8a950f14.zip | |
* lisp/progmodes/grep.el (zrgrep):
Let-bind grep-use-null-filename-separator to nil (bug#30559).
| -rw-r--r-- | lisp/progmodes/grep.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 755c9c73d37..da09c900e58 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el | |||
| @@ -1185,6 +1185,8 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'." | |||
| 1185 | (grep-find-template nil) | 1185 | (grep-find-template nil) |
| 1186 | (grep-find-command nil) | 1186 | (grep-find-command nil) |
| 1187 | (grep-host-defaults-alist nil) | 1187 | (grep-host-defaults-alist nil) |
| 1188 | ;; `zgrep' doesn't support the `--null' option. | ||
| 1189 | (grep-use-null-filename-separator nil) | ||
| 1188 | ;; Use for `grep-read-files' | 1190 | ;; Use for `grep-read-files' |
| 1189 | (grep-files-aliases '(("all" . "* .*") | 1191 | (grep-files-aliases '(("all" . "* .*") |
| 1190 | ("gz" . "*.gz")))) | 1192 | ("gz" . "*.gz")))) |