mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
Changes from arch/CVS synchronization
This commit is contained in:
parent
ed0042dda7
commit
61d3568bff
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-10-01 Ludovic Courtès <ludo@gnu.org>
|
||||
|
||||
* ports.c (flush_output_port): Expect directly a port instead of
|
||||
a pair. Fixes a bug in the new port table (2007-08-26).
|
||||
|
||||
2007-09-11 Kevin Ryde <user42@zip.com.au>
|
||||
|
||||
* posix.c (scm_putenv): Confine the putenv("NAME=") bit to mingw, use
|
||||
|
|
|
@ -904,9 +904,8 @@ SCM_DEFINE (scm_force_output, "force-output", 0, 1, 0,
|
|||
|
||||
|
||||
static void
|
||||
flush_output_port (void *closure, SCM handle)
|
||||
flush_output_port (void *closure, SCM port)
|
||||
{
|
||||
SCM port = SCM_CDR (handle);
|
||||
if (SCM_OPOUTPORTP (port))
|
||||
scm_flush (port);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue