* lisp/help.el (where-is): Respect non-standard standard-output. (tiny change)

Fixes: debbugs:9030
This commit is contained in:
PJ Weisberg 2011-09-13 00:18:13 -07:00 committed by Glenn Morris
parent b75567193d
commit e3ce671f37
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-09-13 PJ Weisberg <pj@irregularexpressions.net> (tiny change)
* help.el (where-is): Respect non-standard standard-output. (Bug#9030)
2011-09-13 Glenn Morris <rgm@gnu.org>
* emacs-lisp/lisp-mode.el (lisp-indent-function):

View file

@ -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)