diff options
author | marcus <marcus@FreeBSD.org> | 2006-10-31 10:39:57 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2006-10-31 10:39:57 +0800 |
commit | d2f7d151490b863a92f9cd83f72e58720260afb2 (patch) | |
tree | 590087a61ea81a51c5942d713baf75eedb71d219 /irc/xchat/files | |
parent | 0ad7083e5058d5a05f328ef93e360cf42f82fc2d (diff) | |
download | freebsd-ports-graphics-d2f7d151490b863a92f9cd83f72e58720260afb2.tar.gz freebsd-ports-graphics-d2f7d151490b863a92f9cd83f72e58720260afb2.tar.zst freebsd-ports-graphics-d2f7d151490b863a92f9cd83f72e58720260afb2.zip |
Update to 2.6.8.
Diffstat (limited to 'irc/xchat/files')
-rw-r--r-- | irc/xchat/files/patch-fixtabcomp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/irc/xchat/files/patch-fixtabcomp b/irc/xchat/files/patch-fixtabcomp deleted file mode 100644 index 9498dd636f9..00000000000 --- a/irc/xchat/files/patch-fixtabcomp +++ /dev/null @@ -1,24 +0,0 @@ -# Fixes two tab-nick-completion bugs: -# 1. Crash when you type space-tab -# 2. Critical glib warning when completion in a dialog-tab. ---- src/fe-gtk/fkeys.c.orig Thu Aug 5 07:49:06 2004 -+++ src/fe-gtk/fkeys.c Mon Aug 16 22:54:58 2004 -@@ -1427,7 +1427,7 @@ - skip_len++; - } - else -- cursor_pos = g_utf8_pointer_to_offset(text, g_utf8_offset_to_pointer(ch, 1)); -+ return 2; - } - - comp = skip_len; -@@ -1608,7 +1608,8 @@ - list = list->next; - } - PrintText (sess, buf); -- g_completion_free(gcomp); -+ if (gcomp) -+ g_completion_free(gcomp); - return 2; - } - /* Only one matching entry */ |