emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 03bb7a8: Avoid clearing echo-area message by auto


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-26 03bb7a8: Avoid clearing echo-area message by auto-save-visited-file-name
Date: Mon, 26 Nov 2018 12:28:48 -0500 (EST)

branch: emacs-26
commit 03bb7a8da9d16dd3dbd5a3ce56adb449e808bf2a
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Avoid clearing echo-area message by auto-save-visited-file-name
    
    * lisp/emacs-lisp/map-ynp.el (map-y-or-n-p): Record the
    previous echo-area message, if any, and restore it before
    exiting.  (Bug#33490)
---
 lisp/emacs-lisp/map-ynp.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/map-ynp.el b/lisp/emacs-lisp/map-ynp.el
index 8260af5..93235bd 100644
--- a/lisp/emacs-lisp/map-ynp.el
+++ b/lisp/emacs-lisp/map-ynp.el
@@ -79,6 +79,7 @@ are meaningful here.
 
 Returns the number of actions taken."
   (let* ((actions 0)
+         (msg (current-message))
         user-keys mouse-event map prompt char elt def
         ;; Non-nil means we should use mouse menus to ask.
         use-menus
@@ -250,9 +251,10 @@ the current %s and exit."
       (if delayed-switch-frame
          (setq unread-command-events
                (cons delayed-switch-frame unread-command-events))))
-    ;; Clear the last prompt from the minibuffer.
+    ;; Clear the last prompt from the minibuffer, and restore the
+    ;; previous echo-area message, if any.
     (let ((message-log-max nil))
-      (message ""))
+      (message (or msg "")))
     ;; Return the number of actions that were taken.
     actions))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]