aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2020-10-06 21:35:53 +0300
committerJuri Linkov2020-10-06 21:35:53 +0300
commitfc6decdfbcbeb3869158bc29c2ea453587f5ad38 (patch)
tree8e4cf8a601e9d6102aabef7a3a56dddde4620121
parentc30f6da0da0469f73fad205b134b1de82a1b1b65 (diff)
downloademacs-fc6decdfbcbeb3869158bc29c2ea453587f5ad38.tar.gz
emacs-fc6decdfbcbeb3869158bc29c2ea453587f5ad38.zip
Add check for bound and true 'ido-everywhere' in multi-occur--prompt
* lisp/replace.el (multi-occur--prompt): Check if 'ido-everywhere' is bound and true (bug#41633).
-rw-r--r--lisp/replace.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 2d17ec9097c..e363924501f 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -1576,7 +1576,8 @@ is not modified."
1576 (concat 1576 (concat
1577 "Next buffer to search " 1577 "Next buffer to search "
1578 (cond 1578 (cond
1579 ((eq read-buffer-function #'ido-read-buffer) 1579 ((or (eq read-buffer-function #'ido-read-buffer)
1580 (bound-and-true-p ido-everywhere))
1580 (substitute-command-keys 1581 (substitute-command-keys
1581 "(\\<ido-completion-map>\\[ido-select-text] to end): ")) 1582 "(\\<ido-completion-map>\\[ido-select-text] to end): "))
1582 ((bound-and-true-p fido-mode) 1583 ((bound-and-true-p fido-mode)