diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/replace.el | 9 |
1 files changed, 5 insertions, 4 deletions
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 |