aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-02-02 04:20:36 +0000
committerRichard M. Stallman2006-02-02 04:20:36 +0000
commit689f439402b28c1bc9c31bf0d397df8ef04b5dd4 (patch)
tree8cada07b1191d1ea9196cbf17d55ade3fa4fcf3b
parent39d58fc0349c779b3b369154c140d0c7c1e843a2 (diff)
downloademacs-689f439402b28c1bc9c31bf0d397df8ef04b5dd4.tar.gz
emacs-689f439402b28c1bc9c31bf0d397df8ef04b5dd4.zip
(multi-occur-in-matching-buffers): Fix prev change.
-rw-r--r--lisp/replace.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 8a17104c599..92b4be7fd7b 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -1004,7 +1004,7 @@ See also `multi-occur'."
1004 (let* ((default (car regexp-history)) 1004 (let* ((default (car regexp-history))
1005 (input 1005 (input
1006 (read-from-minibuffer 1006 (read-from-minibuffer
1007 (if allbufs 1007 (if current-prefix-arg
1008 "List lines in buffers whose names match regexp: " 1008 "List lines in buffers whose names match regexp: "
1009 "List lines in buffers whose filenames match regexp: ") 1009 "List lines in buffers whose filenames match regexp: ")
1010 nil 1010 nil
@@ -1016,7 +1016,7 @@ See also `multi-occur'."
1016 input)) 1016 input))
1017 (occur-read-primary-args))) 1017 (occur-read-primary-args)))
1018 (when bufregexp 1018 (when bufregexp
1019 (occur-1 regexp nlines 1019 (occur-1 regexp nil
1020 (delq nil 1020 (delq nil
1021 (mapcar (lambda (buf) 1021 (mapcar (lambda (buf)
1022 (when (if allbufs 1022 (when (if allbufs