1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

(gh_eval_str): Use scm_c_eval_string instead of scm_eval_0str.

This commit is contained in:
Marius Vollmer 2001-06-29 23:14:07 +00:00
parent c519b27251
commit 2dc6875df5

View file

@ -50,7 +50,7 @@ typedef SCM (*gh_eval_t) (void *data, SCM jmpbuf);
SCM
gh_eval_str (const char *scheme_code)
{
return scm_eval_0str (scheme_code);
return scm_c_eval_string (scheme_code);
}
/* evaluate the file by passing it to the lower level scm_primitive_load() */