diff --git a/lisp/isearch.el b/lisp/isearch.el index 75a80840d6..e3b0c34b4a 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -3479,7 +3479,7 @@ isearch-message-prefix ;; If currently failing, display no ellipsis. (or isearch-success (setq ellipsis nil)) (let ((m (concat (if isearch-success "" "failing ") - (if isearch-adjusted "pending " "") + (if (eq isearch-adjusted t) "pending " "") (if (and isearch-wrapped (not isearch-wrap-function) (if isearch-forward @@ -3586,7 +3586,7 @@ isearch-search-fun-default (let ((lax (and (not bound) (isearch--lax-regexp-function-p)))) (when lax - (setq isearch-adjusted t)) + (setq isearch-adjusted 'lax)) (if (functionp isearch-regexp-function) (funcall isearch-regexp-function string lax) (word-search-regexp string lax))))