Commit 122256d7 122256d7bc23ecbaefed59caaf1be37872d6dd34 by Sergey Poznyakoff

(guimb_catch_body): Use scm_c_eval_string

1 parent c506ae0b
......@@ -196,7 +196,7 @@ guimb_catch_body (void *data, mailbox_t unused)
scm_primitive_load (scm_makfrom0str (gd->program_file));
if (gd->program_expr)
scm_eval_0str (gd->program_expr);
scm_c_eval_string (gd->program_expr);
return SCM_BOOL_F;
}
......