rmyorston / busybox-w32

WIN32 native port of BusyBox.
https://frippery.org/busybox
Other
670 stars 124 forks source link

win32: unicode: new wcwidth: allow enabling bidi #393

Closed avih closed 4 months ago

avih commented 4 months ago

interval, in_interval_table, and in_uint16_table were previously not compiled when using the new wcwidth (commit c188a345a) because they're used by the old wcwidth but not by the new one.

But they're also used by the BIDI routines. mingw64u_defconfig doesn't enable bidi (rightly - it's not working well), but it'd still be nice to allow enabling bidi while the new wcwidth is in effect.

Enable the tables lookup code if BIDI is enabled.

rmyorston commented 4 months ago

Done, thanks.

I built prereleases but haven't published them as, in all cases, the only difference is in the version number.

avih commented 4 months ago

Thanks.