1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 05:50:26 +02:00

Formatting tweaks.

This commit is contained in:
Jim Blandy 1998-10-06 20:57:10 +00:00
parent 2d0937bc84
commit 3e877d1576

View file

@ -521,11 +521,12 @@ scm_force_output (port)
SCM port;
{
if (SCM_UNBNDP (port))
port = scm_cur_outp;
port = scm_cur_outp;
else
{
port = SCM_COERCE_OUTPORT (port);
SCM_ASSERT (SCM_NIMP (port) && SCM_OPOUTPORTP (port), port, SCM_ARG1, s_force_output);
SCM_ASSERT (SCM_NIMP (port) && SCM_OPOUTPORTP (port), port, SCM_ARG1,
s_force_output);
}
{
scm_sizet i = SCM_PTOBNUM (port);