1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 13:00:26 +02:00

fix test-loose-ends

* test-suite/standalone/test-loose-ends.c (test_scm_local_eval): Use
  ice-9 local-eval to get (the-environment).
This commit is contained in:
Andy Wingo 2012-01-26 18:21:01 +01:00
parent 68c31a42ab
commit 0133e13f34

View file

@ -45,7 +45,10 @@ test_scm_from_locale_keywordn ()
static void
test_scm_local_eval ()
{
SCM result = scm_local_eval
SCM result;
scm_c_use_module ("ice-9 local-eval");
result = scm_local_eval
(scm_list_3 (scm_from_latin1_symbol ("+"),
scm_from_latin1_symbol ("x"),
scm_from_latin1_symbol ("y")),