From: Glenn Morris Date: Tue, 13 Sep 2011 07:22:05 +0000 (-0700) Subject: * lisp/help.el (describe-key-briefly): Copy previous standard-output change. X-Git-Tag: emacs-pretest-24.0.90~104^2~66 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b2cba41ecdc954c6dc01567e279c969aa9710239;p=emacs.git * lisp/help.el (describe-key-briefly): Copy previous standard-output change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c041ef45639..5cb76a1394a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-09-13 Glenn Morris + + * help.el (describe-key-briefly): Copy previous standard-output change. + 2011-09-13 PJ Weisberg (tiny change) * help.el (where-is): Respect non-standard standard-output. (Bug#9030) diff --git a/lisp/help.el b/lisp/help.el index 0c5ebea1b04..ca8f76515cf 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -625,7 +625,7 @@ temporarily enables it to allow getting help on disabled items and buttons." (aref key 1) (aref key 0))) (modifiers (event-modifiers event)) - (standard-output (if insert (current-buffer) t)) + (standard-output (if insert (current-buffer) standard-output)) (mouse-msg (if (or (memq 'click modifiers) (memq 'down modifiers) (memq 'drag modifiers)) " at that spot" "")) (defn (key-binding key t))