summaryrefslogtreecommitdiff
path: root/lisp/isearch.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-03-20 17:15:39 -0400
committerGlenn Morris <rgm@gnu.org>2018-03-20 17:15:39 -0400
commit20db48089b660a27c04d05b3d3931d5af65e404f (patch)
tree44167596a3e2f95b3701fad801914fd3ab0d7aa0 /lisp/isearch.el
parent16559146f9db1b36d5e8b6c92edb5bb36fafdb85 (diff)
downloademacs-20db48089b660a27c04d05b3d3931d5af65e404f.tar.gz
* lisp/isearch.el (isearch-pre-command-hook): Replace cl-lib function.
As a preloaded file, isearch.el cannot require cl-lib at runtime.
Diffstat (limited to 'lisp/isearch.el')
-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'."
(setq isearch-pre-move-point (point)))
;; Append control characters to the search string
((eq search-exit-option 'append)
- (when (cl-every #'characterp key)
+ (unless (memq nil (mapcar (lambda (k) (characterp k)) key))
(isearch-process-search-string key key))
(setq this-command 'ignore))
;; Other characters terminate the search and are then executed normally.