From e3ce671f377f6bb09576c90847724ea5a1e64fd5 Mon Sep 17 00:00:00 2001 From: PJ Weisberg Date: Tue, 13 Sep 2011 00:18:13 -0700 Subject: [PATCH] * lisp/help.el (where-is): Respect non-standard standard-output. (tiny change) Fixes: debbugs:9030 --- lisp/ChangeLog | 4 ++++ lisp/help.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 91368fe5304..c041ef45639 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-09-13 PJ Weisberg (tiny change) + + * help.el (where-is): Respect non-standard standard-output. (Bug#9030) + 2011-09-13 Glenn Morris * 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." (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) -- 2.39.5