diff options
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | guile-config/ChangeLog | 5 | ||||
-rw-r--r-- | guile-config/guile-config.in | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -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 <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". 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)) |