1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

(scm_c_use_module): Adapt to changes to `process-use-modules'.

This commit is contained in:
Marius Vollmer 2001-11-23 21:38:33 +00:00
parent c276c3e344
commit b64f4200f4

View file

@ -171,7 +171,7 @@ void
scm_c_use_module (const char *name)
{
scm_call_1 (SCM_VARIABLE_REF (process_use_modules_var),
scm_list_1 (convert_module_name (name)));
scm_list_1 (scm_list_1 (convert_module_name (name))));
}
static SCM module_export_x_var;