diff --git a/THANKS b/THANKS index d49924da2..4859f06ca 100644 --- 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 diff --git a/guile-config/ChangeLog b/guile-config/ChangeLog index cfe3233f7..144576ceb 100644 --- a/guile-config/ChangeLog +++ b/guile-config/ChangeLog @@ -1,3 +1,8 @@ +2000-11-01 Dirk Herrmann + + * 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 * Makefile.am (EXTRA_DIST): Added "guile.m4". diff --git a/guile-config/guile-config.in b/guile-config/guile-config.in index 3705a9082..bf55768d5 100644 --- a/guile-config/guile-config.in +++ b/guile-config/guile-config.in @@ -255,7 +255,7 @@ (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))