mirror of
https://github.com/tmux/tmux.git
synced 2024-11-17 18:08:51 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
a9d501e975
8
utf8.c
8
utf8.c
@ -118,14 +118,6 @@ utf8_width(wchar_t wc)
|
|||||||
width = wcwidth(wc);
|
width = wcwidth(wc);
|
||||||
if (width < 0 || width > 0xff) {
|
if (width < 0 || width > 0xff) {
|
||||||
log_debug("Unicode %04x, wcwidth() %d", wc, width);
|
log_debug("Unicode %04x, wcwidth() %d", wc, width);
|
||||||
|
|
||||||
/*
|
|
||||||
* Many platforms have no width for relatively common
|
|
||||||
* characters (wcwidth() returns -1); assume width 1 in this
|
|
||||||
* case and hope for the best.
|
|
||||||
*/
|
|
||||||
if (width < 0)
|
|
||||||
return (1);
|
|
||||||
return (-1);
|
return (-1);
|
||||||
}
|
}
|
||||||
return (width);
|
return (width);
|
||||||
|
Loading…
Reference in New Issue
Block a user