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:
parent
c519b27251
commit
2dc6875df5
1 changed files with 1 additions and 1 deletions
|
@ -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() */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue