diff options
author | Marius Vollmer <mvo@zagadka.de> | 2005-06-12 12:33:01 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2005-06-12 12:33:01 +0000 |
commit | 9b26d381c1abe96e206deeab0ea866562f6cb59d (patch) | |
tree | 97fb7c3dfcc4ed8b78f2c0419da9bde7b9b5dd4d /libguile/environments.c | |
parent | c70c62a63693b29ad41975670bf9e50834895fff (diff) | |
download | guile-9b26d381c1abe96e206deeab0ea866562f6cb59d.tar.gz |
(environment_default_folder,
environment_default_observer): Do not use gh_call3, gh_call1.
Diffstat (limited to 'libguile/environments.c')
-rw-r--r-- | libguile/environments.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/environments.c b/libguile/environments.c index 74bee4bc1..9a35027b1 100644 --- a/libguile/environments.c +++ b/libguile/environments.c @@ -163,7 +163,7 @@ scm_c_environment_ref (SCM env, SCM sym) static SCM environment_default_folder (SCM proc, SCM symbol, SCM value, SCM tail) { - return gh_call3 (proc, symbol, value, tail); + return scm_call_3 (proc, symbol, value, tail); } @@ -364,7 +364,7 @@ scm_c_environment_cell(SCM env, SCM sym, int for_write) static void environment_default_observer (SCM env, SCM proc) { - gh_call1 (proc, env); + scm_call_1 (proc, env); } |