diff options
Diffstat (limited to 'libguile/script.c')
-rw-r--r-- | libguile/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/script.c b/libguile/script.c index b56de0f8d..537faeaac 100644 --- a/libguile/script.c +++ b/libguile/script.c @@ -605,7 +605,7 @@ scm_compile_shell_switches (int argc, char **argv) scm_set_program_arguments (argc ? argc - i : 0, argv + i, argv0); /* If the --emacs switch was set, now is when we process it. */ - scm_c_define ("use-emacs-interface", SCM_BOOL (use_emacs_interface)); + scm_c_define ("use-emacs-interface", scm_from_bool (use_emacs_interface)); /* Handle the `-e' switch, if it was specified. */ if (!SCM_NULLP (entry_point)) |