[2018-12-27 21:07] Ricardo Peliquero <[email protected]>
> Dmitry Bogatov <[email protected]> Sat, 22 Dec 2018 13:33:18 +0000:
>
> > $ dgit clone fgetty
> > $ cd fgetty
> > $ git am /path/to/this/message
> > $ dgit build
> > $ sudo debi
>
> I had to specify xx.changes location to last instruction.
> ; su -c 'debi ../fgetty_0.7-4_multi.changes'
>
> Patch applied, but no changes after it. Please, let me know if I made
> something wrong.
>
> Indeed, I completely purged fgetty and followed instructions again to
> make sure that the patched package is used. But, no success.
Thank you for your patience.
> [...]
Sorry, I did not understood what you suggest from your experiments with
mksh, except that it has something to do with "C.UTF-8" locale. But I
have some more experiments to propose about it:
Could you try replace calls to `setlocale(LC_ALL, "")` in previous patch
with (different variants)
* setlocale(LC_ALL, "C.UTF-8")
* setenv("LANG", "C.UTF-8", 1)
* setenv("LC_ALL", "C.UTF-8", 1)
Also, could you please use unified diffs (diff -U) -- they are easier to
read? Thank you.