mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-19 02:00:26 +02:00
most uses of scm_from_locale_symbol become scm_from_utf8_symbol
* libguile/array-handle.c: * libguile/chars.c: * libguile/expand.c: * libguile/feature.c: * libguile/goops.c: * libguile/gsubr.c: * libguile/instructions.c: * libguile/load.c: * libguile/macros.c: * libguile/memoize.c: * libguile/modules.c: * libguile/options.c: * libguile/print.c: * libguile/smob.c: * libguile/snarf.h: Change most uses of scm_from_locale_symbol to scm_from_utf8_symbol, as the symbols really are not locale-dependent.
This commit is contained in:
parent
f80d15c59e
commit
25d50a051d
15 changed files with 33 additions and 33 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue