aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/isearch.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 84b121af9ef..aa6acfd0c82 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -2441,7 +2441,7 @@ See more for options in `search-exit-option'."
2441 (setq isearch-pre-move-point (point))) 2441 (setq isearch-pre-move-point (point)))
2442 ;; Append control characters to the search string 2442 ;; Append control characters to the search string
2443 ((eq search-exit-option 'append) 2443 ((eq search-exit-option 'append)
2444 (when (cl-every #'characterp key) 2444 (unless (memq nil (mapcar (lambda (k) (characterp k)) key))
2445 (isearch-process-search-string key key)) 2445 (isearch-process-search-string key key))
2446 (setq this-command 'ignore)) 2446 (setq this-command 'ignore))
2447 ;; Other characters terminate the search and are then executed normally. 2447 ;; Other characters terminate the search and are then executed normally.