diff options
Diffstat (limited to 'libguile/feature.c')
-rw-r--r-- | libguile/feature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/feature.c b/libguile/feature.c index ebb77cb08..ca83421eb 100644 --- a/libguile/feature.c +++ b/libguile/feature.c @@ -43,7 +43,7 @@ void scm_add_feature (const char *str) { SCM old = SCM_VARIABLE_REF (features_var); - SCM new = scm_cons (scm_from_locale_symbol (str), old); + SCM new = scm_cons (scm_from_utf8_symbol (str), old); SCM_VARIABLE_SET (features_var, new); } |