mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 19:50:24 +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:
parent
42417394f2
commit
083629bea4
1 changed files with 7 additions and 4 deletions
|
@ -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_eval_3 (SCM obj, int copyp, SCM env);
|
||||||
extern SCM scm_eval2 (SCM obj, SCM env_thunk);
|
extern SCM scm_eval2 (SCM obj, SCM env_thunk);
|
||||||
#endif
|
#endif
|
||||||
extern SCM scm_i_eval_x (SCM obj, SCM env);
|
extern SCM scm_i_eval_x (SCM exp, SCM env);
|
||||||
extern SCM scm_i_eval (SCM obj, SCM env);
|
extern SCM scm_i_eval (SCM exp, SCM env);
|
||||||
extern SCM scm_eval (SCM obj, SCM environment);
|
extern SCM scm_primitive_eval (SCM exp);
|
||||||
extern SCM scm_eval_x (SCM obj, SCM environment);
|
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);
|
extern void scm_init_eval (void);
|
||||||
|
|
||||||
#endif /* EVALH */
|
#endif /* EVALH */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue