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

Don't load modules explicitly at initialization.

This commit is contained in:
Keisuke Nishida 2001-04-04 18:46:11 +00:00
parent 4b24d33c61
commit b4ea62efd8
2 changed files with 2 additions and 11 deletions

View file

@ -571,9 +571,6 @@ SCM_DEFINE (scm_vm_load, "vm-load", 2, 0, 0,
void
scm_init_vm (void)
{
SCM mod = scm_resolve_module (scm_read_0str ("(system vm core)"));
mod = scm_set_current_module (mod);
scm_init_instructions ();
scm_init_programs ();
@ -592,8 +589,6 @@ scm_init_vm (void)
#ifndef SCM_MAGIC_SNARFER
#include "vm.x"
#endif
scm_set_current_module (mod);
}
/*