mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-05 07:01:11 -08:00
* lisp/isearch.el (isearch-exit): Don't call isearch-done twice (bug#20925).
This commit is contained in:
parent
ea399306a3
commit
3fa319bd84
1 changed files with 2 additions and 2 deletions
|
|
@ -1184,8 +1184,8 @@ nonincremental search instead via `isearch-edit-string'."
|
|||
(if (and search-nonincremental-instead
|
||||
(= 0 (length isearch-string)))
|
||||
(let ((isearch-nonincremental t))
|
||||
(isearch-edit-string)))
|
||||
(isearch-done)
|
||||
(isearch-edit-string)) ;; this calls isearch-done as well
|
||||
(isearch-done))
|
||||
(isearch-clean-overlays))
|
||||
|
||||
(defun isearch-fail-pos (&optional msg)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue