diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2003-11-09 08:10:58 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2003-11-09 08:10:58 +0000 |
commit | 328dc9a3ef372c0e1a439afabebd44d0ab1edaa9 (patch) | |
tree | f60ddfcc375b3f4ea177b260e4c4f6dfedbe1ffe /libguile/eval.h | |
parent | c2337a6178282861418d9b277b2a6084a8120f66 (diff) | |
download | guile-328dc9a3ef372c0e1a439afabebd44d0ab1edaa9.tar.gz |
* eval.c, eval.h (scm_m_expand_body, m_expand_body): Deprecated
public use of scm_m_expand_body in eval.h. In eval.c, renamed
scm_m_expand_body to m_expand_body and made it static. Added
deprecated wrapper scm_m_expand_body.
(scm_eval_body, SCM_CEVAL, SCM_APPLY): Use m_expand_body instead
of scm_m_expand_body.
Diffstat (limited to 'libguile/eval.h')
-rw-r--r-- | libguile/eval.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libguile/eval.h b/libguile/eval.h index c6f7a9bc3..3f6acb529 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -186,7 +186,6 @@ SCM_API scm_t_trampoline_2 scm_trampoline_2 (SCM proc); SCM_API SCM scm_nconc2last (SCM lst); SCM_API SCM scm_apply (SCM proc, SCM arg1, SCM args); SCM_API SCM scm_dapply (SCM proc, SCM arg1, SCM args); -SCM_API SCM scm_m_expand_body (SCM xorig, SCM env); SCM_API SCM scm_macroexp (SCM x, SCM env); SCM_API SCM scm_map (SCM proc, SCM arg1, SCM args); SCM_API SCM scm_for_each (SCM proc, SCM arg1, SCM args); @@ -210,6 +209,9 @@ SCM_API void scm_init_eval (void); SCM_API SCM scm_m_undefine (SCM x, SCM env); +/* Deprecated in guile 1.7.0 on 2003-11-09. */ +SCM_API SCM scm_m_expand_body (SCM xorig, SCM env); + #endif |