* Fix output. Thanks to I. N. Golubev for the patch.
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>
Wed, 1 Nov 2000 16:13:38 +0000 (16:13 +0000)
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>
Wed, 1 Nov 2000 16:13:38 +0000 (16:13 +0000)
THANKS
guile-config/ChangeLog
guile-config/guile-config.in

diff --git a/THANKS b/THANKS
index d49924d..4859f06 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -13,6 +13,7 @@ Contributors since the last release:
 For fixes or providing information which led to a fix:
 
         Ian Bicking
+      I. N. Golubev
        Brad Knotwell
    Matthias Köppe
       Bruce Korb
index cfe3233..144576c 100644 (file)
@@ -1,3 +1,8 @@
+2000-11-01  Dirk Herrmann  <D.Herrmann@tu-bs.de>
+
+       * guile-config.in (display-line-port):  Make sure all output is
+       sent to the given port.  Thanks to I. N. Golubev for the patch.
+
 2000-01-12  Marius Vollmer  <mvo@zagadka.ping.de>
 
        * Makefile.am (EXTRA_DIST): Added "guile.m4".
index 3705a90..bf55768 100644 (file)
 (define (display-line-port port . args)
   (for-each (lambda (arg) (display arg port))
            args)
-  (newline))
+  (newline port))
 
 (define (display-separated args)
   (let loop ((args args))