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))

_______________________________________________
Bug-guile mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-guile

Reply via email to