From 083629bea45242d2d38d8cb6b89e84d8df7f06ff Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sun, 11 Feb 2001 18:04:31 +0000 Subject: [PATCH] * eval.h (scm_primitive_eval, scm_primitive_eval_x): New prototypes. (scm_i_eval, scm_i_eval_x, scm_eval, scm_eval_x): Changed argument names to better reflect their meaning. --- libguile/eval.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/libguile/eval.h b/libguile/eval.h index 69aaec83d..880cd5d5b 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -241,10 +241,13 @@ extern SCM scm_copy_tree (SCM obj); extern SCM scm_eval_3 (SCM obj, int copyp, SCM env); extern SCM scm_eval2 (SCM obj, SCM env_thunk); #endif -extern SCM scm_i_eval_x (SCM obj, SCM env); -extern SCM scm_i_eval (SCM obj, SCM env); -extern SCM scm_eval (SCM obj, SCM environment); -extern SCM scm_eval_x (SCM obj, SCM environment); +extern SCM scm_i_eval_x (SCM exp, SCM env); +extern SCM scm_i_eval (SCM exp, SCM env); +extern SCM scm_primitive_eval (SCM exp); +extern SCM scm_primitive_eval_x (SCM exp); +extern SCM scm_eval (SCM exp, SCM module); +extern SCM scm_eval_x (SCM exp, SCM module); + extern void scm_init_eval (void); #endif /* EVALH */