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

(scm_make_initial_fluids, scm_copy_fluids, scm_swap_fluids,

scm_swap_fluids_reverse): Renamed to scm_i_... since they are
internal.  Changed all uses.
This commit is contained in:
Marius Vollmer 2004-01-06 18:08:31 +00:00
parent a520e4f0d0
commit a52dbe0177
4 changed files with 13 additions and 13 deletions

View file

@ -112,7 +112,7 @@ scm_make_root (SCM parent)
if (SCM_ROOTP (parent))
/* Must be done here so that fluids are GC protected */
scm_copy_fluids (root_state);
scm_i_copy_fluids (root_state);
return root;
}