1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-15 08:10:17 +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

@ -577,7 +577,7 @@ scm_compile_shell_switches (int argc, char **argv)
/* If the --emacs switch was set, now is when we process it. */
{
SCM vcell = scm_sysintern0_no_module_lookup ("use-emacs-interface");
SCM_SETCDR (vcell, use_emacs_interface ? SCM_BOOL_T : SCM_BOOL_F);
SCM_SETCDR (vcell, SCM_BOOL(use_emacs_interface));
}
/* Handle the `-e' switch, if it was specified. */