bug-guile
[Top][All Lists]
Advanced

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

guile-config nl misfeature


From: Golubev I. N.
Subject: guile-config nl misfeature
Date: Wed, 01 Nov 2000 11:59:07 (GMT)

Versions: 1.3, 1.4; older not checked

When printing error messages (even usage when called without args)
guile-config prints newlines of those messages to stdout and the rest
of text on stderr.  This is because of (display-line-port)
misfeature.  I patch it like this.

--- guile-core/guile-config/guile-config.in     1999/07/30 15:55:50     1.1
+++ guile-core/guile-config/guile-config.in     1999/07/30 15:56:10
@@ -255,4 +255,4 @@
 (define (display-line-port port . args)
   (for-each (lambda (arg) (display arg port))
            args)
-  (newline))
+  (newline port))



reply via email to

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