emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105751: * lisp/help.el (where-is): R


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105751: * lisp/help.el (where-is): Respect non-standard standard-output. (tiny change)
Date: Tue, 13 Sep 2011 00:18:13 -0700
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105751
fixes bug(s): http://debbugs.gnu.org/9030
author: PJ Weisberg <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2011-09-13 00:18:13 -0700
message:
  * lisp/help.el (where-is): Respect non-standard standard-output.  (tiny 
change)
modified:
  lisp/ChangeLog
  lisp/help.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-09-13 06:55:10 +0000
+++ b/lisp/ChangeLog    2011-09-13 07:18:13 +0000
@@ -1,3 +1,7 @@
+2011-09-13  PJ Weisberg  <address@hidden>  (tiny change)
+
+       * help.el (where-is): Respect non-standard standard-output.  (Bug#9030)
+
 2011-09-13  Glenn Morris  <address@hidden>
 
        * emacs-lisp/lisp-mode.el (lisp-indent-function):

=== modified file 'lisp/help.el'
--- a/lisp/help.el      2011-09-03 17:16:57 +0000
+++ b/lisp/help.el      2011-09-13 07:18:13 +0000
@@ -527,7 +527,7 @@
   (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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]