1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

Fixed indentation

This commit is contained in:
Mikael Djurfeldt 1999-01-13 08:28:52 +00:00
parent a40bd53290
commit d65010b8a2

View file

@ -86,7 +86,8 @@ SCM
scm_pair_p (x)
SCM x;
{
if SCM_IMP(x) return SCM_BOOL_F;
if (SCM_IMP (x))
return SCM_BOOL_F;
return SCM_CONSP (x) ? SCM_BOOL_T : SCM_BOOL_F;
}
@ -97,7 +98,8 @@ scm_set_car_x(pair, value)
SCM pair;
SCM value;
{
SCM_ASSERT(SCM_NIMP(pair) && SCM_CONSP(pair), pair, SCM_ARG1, s_set_car_x);
SCM_ASSERT (SCM_NIMP (pair) && SCM_CONSP (pair),
pair, SCM_ARG1, s_set_car_x);
SCM_SETCAR (pair, value);
return value;
}