]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/help.el (where-is): Respect non-standard standard-output. (tiny change)
authorPJ Weisberg <pj@irregularexpressions.net>
Tue, 13 Sep 2011 07:18:13 +0000 (00:18 -0700)
committerGlenn Morris <rgm@gnu.org>
Tue, 13 Sep 2011 07:18:13 +0000 (00:18 -0700)
Fixes: debbugs:9030
lisp/ChangeLog
lisp/help.el

index 91368fe530467c1f63e1a76a96b089c79ab9387f..c041ef45639a7fd7fe0aa492336e28a1cba6f5b5 100644 (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):
index 3ed6f79275a7057494959a31a12c611c3a275179..0c5ebea1b04ad01781a3f3e1e2c6e8e02fada875 100644 (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)