diff options
author | Andy Wingo <wingo@pobox.com> | 2009-11-27 23:12:35 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-12-01 21:00:26 +0100 |
commit | 0f458a37259a53adc7b50b66a5944ecc3668ffda (patch) | |
tree | 60fc9556922c7469d11f65d83c162cfcb5951216 /libguile/eval.h | |
parent | 504864b79fcdaf1c24785327b84190a041c30c0c (diff) | |
download | guile-0f458a37259a53adc7b50b66a5944ecc3668ffda.tar.gz |
factor copy-tree and cons-source out of eval.[ch]
* libguile.h:
* libguile/Makefile.am
* libguile/init.c (scm_i_init_guile): Add trees.[ch] to the build.
* libguile/eval.c:
* libguile/eval.h: Remove scm_copy_tree and scm_cons_source...
* libguile/trees.h:
* libguile/trees.c:
* libguile/srcprop.h:
* libguile/srcprop.c: ... factoring them out here and here,
respectively.
* test-suite/tests/eval.test ("memoization"): Change expected exception
for circular data structures, given new copy-tree location.
Diffstat (limited to 'libguile/eval.h')
-rw-r--r-- | libguile/eval.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libguile/eval.h b/libguile/eval.h index 522f639d8..0e990cf26 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -138,8 +138,6 @@ SCM_API SCM scm_closure (SCM code, SCM env); SCM_API SCM scm_make_promise (SCM thunk); SCM_API SCM scm_force (SCM x); SCM_API SCM scm_promise_p (SCM x); -SCM_API SCM scm_cons_source (SCM xorig, SCM x, SCM y); -SCM_API SCM scm_copy_tree (SCM obj); SCM_API SCM scm_i_eval_x (SCM exp, SCM env) /* not internal */; SCM_INTERNAL SCM scm_i_eval (SCM exp, SCM env); SCM_API SCM scm_primitive_eval (SCM exp); |