emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r109914: Fix for invoking C-h c from


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109914: Fix for invoking C-h c from the minibuffer.
Date: Fri, 07 Sep 2012 13:00:32 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109914
fixes bug: http://debbugs.gnu.org/7014
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Fri 2012-09-07 13:00:32 +0800
message:
  Fix for invoking C-h c from the minibuffer.
  
  * help.el (describe-key-briefly): Allow the message to be seen
  when invoked from the minibuffer.
modified:
  lisp/ChangeLog
  lisp/help.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-09-07 04:36:20 +0000
+++ b/lisp/ChangeLog    2012-09-07 05:00:32 +0000
@@ -1,3 +1,8 @@
+2012-09-07  Chong Yidong  <address@hidden>
+
+       * help.el (describe-key-briefly): Allow the message to be seen
+       when invoked from the minibuffer (Bug#7014).
+
 2012-09-07  Dmitry Gutov  <address@hidden>
 
        * progmodes/ruby-mode.el (ruby-end-of-defun)

=== modified file 'lisp/help.el'
--- a/lisp/help.el      2012-09-05 09:22:20 +0000
+++ b/lisp/help.el      2012-09-07 05:00:32 +0000
@@ -585,6 +585,8 @@
             (setq saved-yank-menu (copy-sequence yank-menu))
             (menu-bar-update-yank-menu "(any string)" nil))
           (setq key (read-key-sequence "Describe key (or click or menu item): 
"))
+          ;; Clear the echo area message (Bug#7014).
+          (message nil)
           ;; If KEY is a down-event, read and discard the
           ;; corresponding up-event.  Note that there are also
           ;; down-events on scroll bars and mode lines: the actual


reply via email to

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