1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* script.c (scm_shell): Pass scm_the_root_module () as second arg

to new scm_eval_x.
This commit is contained in:
Mikael Djurfeldt 2000-08-11 08:44:32 +00:00
parent b486ccc869
commit b3138544ef

View file

@ -644,7 +644,8 @@ scm_shell (int argc, char **argv)
}
}
exit (scm_exit_status (scm_eval_x (scm_compile_shell_switches (argc,argv))));
exit (scm_exit_status (scm_eval_x (scm_compile_shell_switches (argc, argv),
scm_the_root_module ())));
}