1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

* print.c (scm_simple_format): Bugfix: Coerce port before using it.

This commit is contained in:
Mikael Djurfeldt 2000-08-02 06:00:09 +00:00
parent cdaf0a20af
commit daba1a710d

View file

@ -960,16 +960,22 @@ SCM_DEFINE (scm_simple_format, "simple-format", 2, 0, 1,
char *start;
char *p;
if (SCM_EQ_P (destination, SCM_BOOL_T)) {
if (SCM_EQ_P (destination, SCM_BOOL_T))
{
destination = scm_cur_outp;
} else if (SCM_FALSEP (destination)) {
}
else if (SCM_FALSEP (destination))
{
fReturnString = 1;
destination = scm_mkstrport (SCM_INUM0,
scm_make_string (SCM_INUM0, SCM_UNDEFINED),
SCM_OPN | SCM_WRTNG,
FUNC_NAME);
} else {
}
else
{
SCM_VALIDATE_OPORT_VALUE (1, destination);
destination = SCM_COERCE_OUTPORT (destination);
}
SCM_VALIDATE_STRING (2, message);
SCM_VALIDATE_REST_ARGUMENT (args);