diff options
Diffstat (limited to 'libguile/boolean.c')
-rw-r--r-- | libguile/boolean.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/boolean.c b/libguile/boolean.c index 1721d94f0..f6cc5b20c 100644 --- a/libguile/boolean.c +++ b/libguile/boolean.c @@ -57,7 +57,7 @@ GUILE_PROC(scm_not, "not", 1, 0, 0, "") #define FUNC_NAME s_scm_not { - return SCM_FALSEP(x) ? SCM_BOOL_T : SCM_BOOL_F; + return SCM_BOOL(SCM_FALSEP(x)); } #undef FUNC_NAME |