vicare
vicare copied to clipboard
the character encoding associated to the selected locale is not supported
In src/ikarus.c the line:
setlocale(LC_ALL, "");
that would make Vicare respect the user selected locale is not executed. This makes the vicare process run under the default and portable C locale, ignoring the user selected one. This is bad.
To support the user selected locale all the strings coming from system function calls must be converted from the outer character encoding to an internal UTF-8, and later to Scheme strings.