aboutsummaryrefslogtreecommitdiff
path: root/pyguile.c
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2016-05-22 09:51:54 +0200
committerChristopher Baines <mail@cbaines.net>2016-09-03 12:20:26 +0100
commite37142e8aaa903920d4f13a5ef66a352618e65c6 (patch)
tree67033a5e8c487879e4dc97c5c889cc1d068ef120 /pyguile.c
parent48722c4dd56e3609e3f29beff1a54416feab080c (diff)
downloadpyguile-e37142e8aaa903920d4f13a5ef66a352618e65c6.tar
pyguile-e37142e8aaa903920d4f13a5ef66a352618e65c6.tar.gz
Replace gh_scm2newstr with scm_to_locale_stringHEADmaster
As gh_scm2newstr is deprecated.
Diffstat (limited to 'pyguile.c')
-rw-r--r--pyguile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyguile.c b/pyguile.c
index ef7d436..003d852 100644
--- a/pyguile.c
+++ b/pyguile.c
@@ -341,7 +341,7 @@ python_eval(SCM sobj,SCM smode)
? Py_file_input
: Py_eval_input;
- char *pstr = gh_scm2newstr(sobj,NULL);
+ char *pstr = scm_to_locale_string(sobj);
if (NULL == pstr) {
scm_memory_error("python-eval"); // NOT COVERED BY TESTS
//return(SCM_UNSPECIFIED);
@@ -414,7 +414,7 @@ python_import(SCM smodulename)
scm_wrong_type_arg("python-import",SCM_ARG1,smodulename);
}
else {
- char *mname = gh_scm2newstr(smodulename,NULL);
+ char *mname = scm_to_locale_string(smodulename);
PyObject *pmodule = PyImport_ImportModule(mname);
PyObject *pexception = PyErr_Occurred();
if (pexception) {