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:
parent
c30f6da0da
commit
fc6decdfbc
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue