diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:05:23 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:05:23 +0000 |
commit | a1ec69163dd2e55e5d2b03a164513aa4a0d5943c (patch) | |
tree | 99489194c03fa41397c77e84b3f8660ffef1ed30 /libguile/root.c | |
parent | fb764465068f84e3ab047c45792ffc3026e5505a (diff) | |
download | guile-a1ec69163dd2e55e5d2b03a164513aa4a0d5943c.tar.gz |
*.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
Diffstat (limited to 'libguile/root.c')
-rw-r--r-- | libguile/root.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/root.c b/libguile/root.c index 59ecacda5..41e106475 100644 --- a/libguile/root.c +++ b/libguile/root.c @@ -335,7 +335,7 @@ cwdr (SCM proc, SCM a1, SCM args, SCM handler, SCM_STACKITEM *stack_start) stack_start); } -GUILE_PROC(scm_call_with_dynamic_root, "call-with-dynamic-root", 2, 0, 0, +SCM_DEFINE(scm_call_with_dynamic_root, "call-with-dynamic-root", 2, 0, 0, (SCM thunk, SCM handler), "Evaluate @var{(thunk)} in a new dynamic context, returning its value. @@ -386,7 +386,7 @@ be under a new dynamic root.)") } #undef FUNC_NAME -GUILE_PROC(scm_dynamic_root, "dynamic-root", 0, 0, 0, +SCM_DEFINE(scm_dynamic_root, "dynamic-root", 0, 0, 0, (), "Return an object representing the current dynamic root. |