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:
parent
a40bd53290
commit
d65010b8a2
1 changed files with 17 additions and 15 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue