diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 1999-12-12 19:24:29 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 1999-12-12 19:24:29 +0000 |
commit | 156dcb091b3fe1c1e60e304b86fd11e7e0a00772 (patch) | |
tree | 74abce0544cdbd1176f19bfd05ef3570a1e49a31 /libguile/procprop.c | |
parent | a9967b3dbf03af3e508a5a144056ba57d7bf1be0 (diff) | |
download | guile-156dcb091b3fe1c1e60e304b86fd11e7e0a00772.tar.gz |
* *.c, srcprop.h: Use SCM_BOOL(f) instead of (f? SCM_BOOL_T:
SCM_BOOL_F) and use SCM_NEGATE_BOOL(f) instead of (f? SCM_BOOL_F:
SCM_BOOL_T).
Diffstat (limited to 'libguile/procprop.c')
-rw-r--r-- | libguile/procprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/procprop.c b/libguile/procprop.c index efdc08318..0d2023412 100644 --- a/libguile/procprop.c +++ b/libguile/procprop.c @@ -142,7 +142,7 @@ scm_i_procedure_arity (SCM proc) } return SCM_LIST3 (SCM_MAKINUM (a), SCM_MAKINUM (o), - r ? SCM_BOOL_T : SCM_BOOL_F); + SCM_BOOL(r)); } static SCM |