diff options
author | Andy Wingo <wingo@pobox.com> | 2008-09-25 16:16:35 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2008-09-25 16:16:35 +0200 |
commit | 7c455996e8a88f8d7480b63e5a9c4553da7a629e (patch) | |
tree | 8e4617875482677aaec9b14dea138bd0566b4a40 /libguile/eval.i.c | |
parent | 8ab3c80f8bbc1e606b6c18aac7de514cd088091d (diff) | |
download | guile-7c455996e8a88f8d7480b63e5a9c4553da7a629e.tar.gz |
export `make-promise' to scheme
* libguile/eval.h:
* libguile/eval.c (scm_make_promise): Rename from `scm_makprom', and
export as the scheme procedure, `make-promise'.
* libguile/eval.i.c (CEVAL): s/makprom/make_promise/.
Diffstat (limited to 'libguile/eval.i.c')
-rw-r--r-- | libguile/eval.i.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/eval.i.c b/libguile/eval.i.c index 83878ff41..3d686700b 100644 --- a/libguile/eval.i.c +++ b/libguile/eval.i.c @@ -732,7 +732,7 @@ dispatch: case (ISYMNUM (SCM_IM_DELAY)): - RETURN (scm_makprom (scm_closure (SCM_CDR (x), env))); + RETURN (scm_make_promise (scm_closure (SCM_CDR (x), env))); #if 0 /* See futures.h for a comment why futures are not enabled. |