(gh_eval_str): Use scm_c_eval_string instead of scm_eval_0str.
authorMarius Vollmer <mvo@zagadka.de>
Fri, 29 Jun 2001 23:14:07 +0000 (23:14 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Fri, 29 Jun 2001 23:14:07 +0000 (23:14 +0000)
libguile/gh_eval.c

index e128e04..48259ef 100644 (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() */