* lisp/help.el (where-is): Respect non-standard standard-output. (tiny change)
Fixes: debbugs:9030
This commit is contained in:
parent
b75567193d
commit
e3ce671f37
2 changed files with 5 additions and 1 deletions
|
@ -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):
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue