1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

Added comment on how to make case 1.1 of r5rs_pitfall.test succeed.

This commit is contained in:
Marius Vollmer 2005-06-05 20:52:23 +00:00
parent 80a09c4718
commit e9ed042cbc

View file

@ -3570,6 +3570,13 @@ dispatch:
init_forms = SCM_CDR (init_forms);
}
while (!scm_is_null (init_forms));
/* In order to make case 1.1 of the R5RS pitfall testsuite
succeed, we would need to copy init_values here like
so:
init_values = scm_list_copy (init_values);
*/
SCM_SETCDR (SCM_CAR (env), init_values);
}
x = SCM_CDR (x);