mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-04 11:00:45 -08:00
Don't allow lazy highlight from recursive minibuffers
See bug#59918. * lisp/isearch.el (minibuffer-lazy-highlight-setup): Don't activate when starting a recursive minibuffer.
This commit is contained in:
parent
4ef8b9f544
commit
4980ed7a6d
1 changed files with 1 additions and 1 deletions
|
|
@ -4435,7 +4435,7 @@ CASE-FOLD: The value of `isearch-case-fold' to use for lazy
|
|||
highlighting.
|
||||
LAX-WHITESPACE: The value of `isearch-lax-whitespace' and
|
||||
`isearch-regexp-lax-whitespace' to use for lazy highlighting."
|
||||
(if (not highlight)
|
||||
(if (or (not highlight) (minibufferp))
|
||||
#'ignore
|
||||
(let ((unwind (make-symbol "minibuffer-lazy-highlight--unwind"))
|
||||
(after-change (make-symbol "minibuffer-lazy-highlight--after-change"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue