Dmitry Bogatov <[email protected]> Sat, 29 Dec 2018 18:33:11 +0000:
> Could you try replace calls to `setlocale(LC_ALL, "")` in previous
> patch with (different variants)
> * setlocale(LC_ALL, "C.UTF-8")
Does not work (patch applies ok but won't be able to type 'ñandú').
> * setenv("LANG", "C.UTF-8", 1)
It works as a breeze.
Able to type 'ñandú' and other stuff with LANG=C.UTF-8.
I can always put LANG=es_AR.UTF-8 and LANGUAGE=es_AR:es into .rcrc in
order to fit my local needs, and it still works perfectly well.
> * setenv("LC_ALL", "C.UTF-8", 1)
It works, but LC_ALL variable might not be neccessary here. I'll of
course respect your choice.
> Also, could you please use unified diffs (diff -U) -- they are easier
> to read? Thank you.
Certainly; suggestion appreciated.
Thank you very much, and happy new year!