diff options
| author | Stefan Monnier | 2021-04-10 18:07:37 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2021-04-10 18:07:37 -0400 |
| commit | ffd12743bd8ef6e10cf0d96bc1ae08992075cbf1 (patch) | |
| tree | 86ae10286620628cd94ce7927c2b2a9eccf2f9b6 | |
| parent | d6aa50f74c65c96846c774cb8f949387bf07a9ed (diff) | |
| download | emacs-ffd12743bd8ef6e10cf0d96bc1ae08992075cbf1.tar.gz emacs-ffd12743bd8ef6e10cf0d96bc1ae08992075cbf1.zip | |
* lisp/misearch.el (multi-isearch-read-buffers): Fix last change
These are not buffers but buffer names.
| -rw-r--r-- | lisp/misearch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/misearch.el b/lisp/misearch.el index 8b6238a8266..1f0dd315508 100644 --- a/lisp/misearch.el +++ b/lisp/misearch.el | |||
| @@ -238,7 +238,7 @@ set in `multi-isearch-buffers' or `multi-isearch-buffers-regexp'." | |||
| 238 | (while (not (string-equal | 238 | (while (not (string-equal |
| 239 | (setq buf (read-buffer (multi-occur--prompt) nil t)) | 239 | (setq buf (read-buffer (multi-occur--prompt) nil t)) |
| 240 | "")) | 240 | "")) |
| 241 | (cl-pushnew buf bufs) | 241 | (cl-pushnew buf bufs :test #'equal) |
| 242 | (setq ido-ignore-item-temp-list bufs)) | 242 | (setq ido-ignore-item-temp-list bufs)) |
| 243 | (nreverse bufs))) | 243 | (nreverse bufs))) |
| 244 | 244 | ||