You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid depending on wcwidth in test by removing Variation Selector
test/main/emoji-test fails when using a recent version of glibc, where
wcwidth(π) equals 2 (used to be 1 which is less correct).
This test used to include π and other emoji followed by the
["Variation Selector"](https://unicode-table.com/en/FE0F/).
With the old wcwidth, Tig would render both characters, one cell each.
With the new wcwidth, Tig only renders the first one twice, in two cells.
As a result, the output of :save-display varies across systems. Solving this
is not really in scope for Tig, since this is the domain of wcwidth and
Ncurses. Hence, remove the variation selectors. As far as I can tell they
are useless here anyway because the characters render the same way after
removing them.
0 commit comments