1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

* init.c: Uninitialized `SCM last' may be used.

This commit is contained in:
Jim Blandy 1996-09-11 20:27:47 +00:00
parent 47ce0f920e
commit 3d40d7b66a

View file

@ -436,7 +436,7 @@ scm_boot_guile (result, argc, argv, in, out, err, init_func, boot_cmd)
#endif #endif
if (!setjmp_val) if (!setjmp_val)
{ {
SCM last; SCM last = SCM_UNDEFINED;
scm_init_signals (); scm_init_signals ();
/* Call the initialization function passed in by the user, if /* Call the initialization function passed in by the user, if