summaryrefslogtreecommitdiff
path: root/libguile/script.c
diff options
context:
space:
mode:
authorGreg J. Badros <gjb@cs.washington.edu>1999-12-12 19:24:29 +0000
committerGreg J. Badros <gjb@cs.washington.edu>1999-12-12 19:24:29 +0000
commit156dcb091b3fe1c1e60e304b86fd11e7e0a00772 (patch)
tree74abce0544cdbd1176f19bfd05ef3570a1e49a31 /libguile/script.c
parenta9967b3dbf03af3e508a5a144056ba57d7bf1be0 (diff)
downloadguile-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/script.c')
-rw-r--r--libguile/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/script.c b/libguile/script.c
index bf59da989..68ea5707c 100644
--- a/libguile/script.c
+++ b/libguile/script.c
@@ -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. */