From 175bc8e5a53740432c844b5aae1981d4f47c96f7 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Tue, 14 Jun 2022 19:35:02 +0300 Subject: [PATCH] * lisp/replace.el (read-regexp): Use minibuffer-message in the minibuffer. --- lisp/replace.el | 9 +++++---- 1 file 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 -- 2.39.5