1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

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).
This commit is contained in:
Juri Linkov 2020-10-06 21:35:53 +03:00
parent c30f6da0da
commit fc6decdfbc

View file

@ -1576,7 +1576,8 @@ is not modified."
(concat
"Next buffer to search "
(cond
((eq read-buffer-function #'ido-read-buffer)
((or (eq read-buffer-function #'ido-read-buffer)
(bound-and-true-p ido-everywhere))
(substitute-command-keys
"(\\<ido-completion-map>\\[ido-select-text] to end): "))
((bound-and-true-p fido-mode)