From: Juri Linkov Date: Tue, 14 Jun 2022 16:35:02 +0000 (+0300) Subject: * lisp/replace.el (read-regexp): Use minibuffer-message in the minibuffer. X-Git-Tag: emacs-29.0.90~1910^2~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=175bc8e5a53740432c844b5aae1981d4f47c96f7;p=emacs.git * lisp/replace.el (read-regexp): Use minibuffer-message in the minibuffer. --- diff --git a/lisp/replace.el b/lisp/replace.el index c9d41d3fa39..c5c24c7a365 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -968,10 +968,11 @@ respect this or not; see `read-regexp-case-fold-search'.)" 'inhibit-fold)))) 'inhibit-fold 'fold)) - (message "Case folding is now %s" - (if (eq case-fold 'fold) - "on" - "off")))) + (minibuffer-message + "Case folding is now %s" + (if (eq case-fold 'fold) + "on" + "off")))) nil (or history 'regexp-history) suggestions t)) (result (if (equal input "") ;; Return the default value when the user enters