aboutsummaryrefslogtreecommitdiffstats
path: root/chinese/irssi/files
diff options
context:
space:
mode:
authorvanilla <vanilla@FreeBSD.org>2001-10-31 13:14:55 +0800
committervanilla <vanilla@FreeBSD.org>2001-10-31 13:14:55 +0800
commitea12d60d7ddf8912581a9aa75c238c8696b36978 (patch)
tree1cb9836affef2a02f784e670a5be0936fe2c25ab /chinese/irssi/files
parent084cb64c59b387da4486263a32c1563612ce1b75 (diff)
downloadfreebsd-ports-gnome-ea12d60d7ddf8912581a9aa75c238c8696b36978.tar.gz
freebsd-ports-gnome-ea12d60d7ddf8912581a9aa75c238c8696b36978.tar.zst
freebsd-ports-gnome-ea12d60d7ddf8912581a9aa75c238c8696b36978.zip
Add a patch for big5 charset.
PR: mhsin@mhsin.org
Diffstat (limited to 'chinese/irssi/files')
-rw-r--r--chinese/irssi/files/patch-src_fe-text_wrap.c57
1 files changed, 57 insertions, 0 deletions
diff --git a/chinese/irssi/files/patch-src_fe-text_wrap.c b/chinese/irssi/files/patch-src_fe-text_wrap.c
new file mode 100644
index 000000000000..13e58345b896
--- /dev/null
+++ b/chinese/irssi/files/patch-src_fe-text_wrap.c
@@ -0,0 +1,57 @@
+--- src/fe-text/gui-windows.c.orig Mon Oct 29 20:51:52 2001
++++ src/fe-text/gui-windows.c Tue Oct 30 01:48:09 2001
+@@ -289,6 +289,7 @@
+ unsigned char cmd;
+ char *ptr, *last_space_ptr;
+ int xpos, pos, indent_pos, last_space, last_color, color;
++ int w = 0;
+
+ g_return_val_if_fail(line->text != NULL, NULL);
+
+@@ -343,14 +344,14 @@
+ continue;
+ }
+
+- if (xpos == COLS && sub != NULL &&
++ if (xpos >= COLS && sub != NULL &&
+ (last_space <= indent_pos || last_space <= 10)) {
+ /* long word, remove the indentation from this line */
+ xpos -= sub->indent;
+ sub->indent = 0;
+ }
+
+- if (xpos == COLS) {
++ if (xpos >= COLS) {
+ xpos = indent_pos;
+
+ sub = g_new(LINE_CACHE_SUB_REC, 1);
+@@ -376,8 +377,27 @@
+ continue;
+ }
+
+- xpos++;
+- if (*ptr++ == ' ') {
++ if(ptr[1] != '\0' && is_big5(ptr[0], ptr[1]))
++ w = 2;
++ else
++ w = 1;
++
++ xpos+=w;
++ if (*ptr == ' ' ||
++ (xpos <= COLS && w > 1)) {
++ last_space = xpos-1;
++ last_space_ptr = ptr + w;
++ last_color = color;
++ }
++ if(xpos <= COLS)
++ ptr += w;
++ else
++ ptr ++;
++
++ if(w == 1 && xpos <= COLS &&
++ ptr[0] != '\0' && ptr[1] != '\0' &&
++ is_big5(ptr[0], ptr[1]))
++ {
+ last_space = xpos-1;
+ last_space_ptr = ptr;
+ last_color = color;