mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 05:50:26 +02:00
(scm_i_eval): Copy expression before passing it to
SCM_XEVAL. The copy operation was removed unintendedly during my change on 2001-03-25.
This commit is contained in:
parent
dd9eb53242
commit
26fb6390fb
1 changed files with 1 additions and 0 deletions
|
@ -3918,6 +3918,7 @@ scm_i_eval_x (SCM exp, SCM env)
|
|||
SCM
|
||||
scm_i_eval (SCM exp, SCM env)
|
||||
{
|
||||
exp = scm_copy_tree (exp);
|
||||
return SCM_XEVAL (exp, env);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue