diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-01-06 18:08:31 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-01-06 18:08:31 +0000 |
commit | a52dbe0177291dc914cbfff2cb2a7652d3b9713f (patch) | |
tree | c591e52f6ed8dc7a51bc123584cf1d1a23841be6 /libguile/root.c | |
parent | a520e4f0d0268236bea18a890b5320f358d5f487 (diff) | |
download | guile-a52dbe0177291dc914cbfff2cb2a7652d3b9713f.tar.gz |
(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.
Diffstat (limited to 'libguile/root.c')
-rw-r--r-- | libguile/root.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/root.c b/libguile/root.c index c98b29176..dc80f7469 100644 --- a/libguile/root.c +++ b/libguile/root.c @@ -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; } |