1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

(scm_frame_current_module): New.

This commit is contained in:
Marius Vollmer 2005-03-02 20:14:59 +00:00
parent b5623573b4
commit cb1cfc42a4
2 changed files with 6 additions and 0 deletions

View file

@ -91,6 +91,11 @@ scm_c_call_with_current_module (SCM module,
return scm_c_with_fluid (the_module, module, func, data);
}
void
scm_frame_current_module (SCM module)
{
scm_frame_fluid (the_module, module);
}
/*
convert "A B C" to scheme list (A B C)