1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

* script.c (scm_shell_usage): Pass FATAL to exit. There's no

reason not to give the user the option.
This commit is contained in:
Jim Blandy 1997-05-16 08:07:35 +00:00
parent 3d781d4935
commit 8e56830978

View file

@ -563,7 +563,7 @@ scm_shell_usage (int fatal, char *message)
scm_usage_name); scm_usage_name);
if (fatal) if (fatal)
exit (1); exit (fatal);
} }