mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 14:21:10 +02:00
* Fix output. Thanks to I. N. Golubev for the patch.
This commit is contained in:
parent
f304437e70
commit
709a308dfc
3 changed files with 7 additions and 1 deletions
1
THANKS
1
THANKS
|
@ -13,6 +13,7 @@ Contributors since the last release:
|
||||||
For fixes or providing information which led to a fix:
|
For fixes or providing information which led to a fix:
|
||||||
|
|
||||||
Ian Bicking
|
Ian Bicking
|
||||||
|
I. N. Golubev
|
||||||
Brad Knotwell
|
Brad Knotwell
|
||||||
Matthias Köppe
|
Matthias Köppe
|
||||||
Bruce Korb
|
Bruce Korb
|
||||||
|
|
|
@ -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>
|
2000-01-12 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
* Makefile.am (EXTRA_DIST): Added "guile.m4".
|
* Makefile.am (EXTRA_DIST): Added "guile.m4".
|
||||||
|
|
|
@ -255,7 +255,7 @@
|
||||||
(define (display-line-port port . args)
|
(define (display-line-port port . args)
|
||||||
(for-each (lambda (arg) (display arg port))
|
(for-each (lambda (arg) (display arg port))
|
||||||
args)
|
args)
|
||||||
(newline))
|
(newline port))
|
||||||
|
|
||||||
(define (display-separated args)
|
(define (display-separated args)
|
||||||
(let loop ((args args))
|
(let loop ((args args))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue