diff options
author | PJ Weisberg <pj@irregularexpressions.net> | 2011-09-13 00:18:13 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-09-13 00:18:13 -0700 |
commit | e3ce671f377f6bb09576c90847724ea5a1e64fd5 (patch) | |
tree | 12655c4a997552e6dc645fa93c19012a1cefa186 /lisp/help.el | |
parent | b75567193d7ad56b4ff1e385bc94423621064dbd (diff) | |
download | emacs-e3ce671f377f6bb09576c90847724ea5a1e64fd5.tar.gz |
* lisp/help.el (where-is): Respect non-standard standard-output. (tiny change)
Fixes: debbugs:9030
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 3ed6f79275a..0c5ebea1b04 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -527,7 +527,7 @@ If INSERT (the prefix arg) is non-nil, insert the message in the buffer." (unless definition (error "No command")) (let ((func (indirect-function definition)) (defs nil) - (standard-output (if insert (current-buffer) t))) + (standard-output (if insert (current-buffer) standard-output))) ;; In DEFS, find all symbols that are aliases for DEFINITION. (mapatoms (lambda (symbol) (and (fboundp symbol) |