diff options
author | Glenn Morris <rgm@gnu.org> | 2011-09-13 00:22:05 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-09-13 00:22:05 -0700 |
commit | b2cba41ecdc954c6dc01567e279c969aa9710239 (patch) | |
tree | 243b19ed880cf264565d85b043561d1932dbe95d /lisp/help.el | |
parent | e3ce671f377f6bb09576c90847724ea5a1e64fd5 (diff) | |
download | emacs-b2cba41ecdc954c6dc01567e279c969aa9710239.tar.gz |
* lisp/help.el (describe-key-briefly): Copy previous standard-output change.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |