1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-20 02:30:23 +02:00

* *.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).
This commit is contained in:
Greg J. Badros 1999-12-12 19:24:29 +00:00
parent a9967b3dbf
commit 156dcb091b
15 changed files with 42 additions and 43 deletions

View file

@ -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