1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* 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.
This commit is contained in:
Marius Vollmer 2001-02-11 18:04:31 +00:00
parent 42417394f2
commit 083629bea4

View file

@ -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 */