freebsd-ports/chinese/irssi/files/patch-utf8_break
Vanilla I. Shu de00e5a0fc Fix CJK length on utf8 mode.
PR:		ports/101126
Submitted by:	mhsin at mhsin.com
2006-08-01 01:28:51 +00:00

11 lines
303 B
Text

--- src/fe-text/textbuffer-view.c.orig Mon Jul 31 06:28:09 2006
+++ src/fe-text/textbuffer-view.c Mon Jul 31 06:28:19 2006
@@ -255,7 +255,7 @@
continue;
}
- if (!view->utf8 && char_len > 1) {
+ if (char_len > 1) {
last_space = xpos;
last_space_ptr = next_ptr;
last_color = color;