diff options
| author | PJ Weisberg | 2011-09-13 00:18:13 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-09-13 00:18:13 -0700 |
| commit | e3ce671f377f6bb09576c90847724ea5a1e64fd5 (patch) | |
| tree | 12655c4a997552e6dc645fa93c19012a1cefa186 | |
| parent | b75567193d7ad56b4ff1e385bc94423621064dbd (diff) | |
| download | emacs-e3ce671f377f6bb09576c90847724ea5a1e64fd5.tar.gz emacs-e3ce671f377f6bb09576c90847724ea5a1e64fd5.zip | |
* lisp/help.el (where-is): Respect non-standard standard-output. (tiny change)
Fixes: debbugs:9030
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/help.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 91368fe5304..c041ef45639 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-09-13 PJ Weisberg <pj@irregularexpressions.net> (tiny change) | ||
| 2 | |||
| 3 | * help.el (where-is): Respect non-standard standard-output. (Bug#9030) | ||
| 4 | |||
| 1 | 2011-09-13 Glenn Morris <rgm@gnu.org> | 5 | 2011-09-13 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp/lisp-mode.el (lisp-indent-function): | 7 | * emacs-lisp/lisp-mode.el (lisp-indent-function): |
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." | |||
| 527 | (unless definition (error "No command")) | 527 | (unless definition (error "No command")) |
| 528 | (let ((func (indirect-function definition)) | 528 | (let ((func (indirect-function definition)) |
| 529 | (defs nil) | 529 | (defs nil) |
| 530 | (standard-output (if insert (current-buffer) t))) | 530 | (standard-output (if insert (current-buffer) standard-output))) |
| 531 | ;; In DEFS, find all symbols that are aliases for DEFINITION. | 531 | ;; In DEFS, find all symbols that are aliases for DEFINITION. |
| 532 | (mapatoms (lambda (symbol) | 532 | (mapatoms (lambda (symbol) |
| 533 | (and (fboundp symbol) | 533 | (and (fboundp symbol) |