# HG changeset patch # User Mark Doliner # Date 1073867307 0 # Node ID 8766b6a6641b4bcaff3205f609ead31cbbf30444 # Parent ab0750ac51543cb1079f70eab1183a62ef148375 [gaim-migrate @ 8778] BOOYAH BIATCH I mean. This fixes a weird bug javabsp noticed with tab completion where, if you have more than 2 dudes in a chat with more than 2 of the first characters of their screenname the same then the the tab complete would leave off the last character. Really I think we just need a gaim_utf8_strncasecmp. Note the "n" in there committer: Tailor Script diff -r ab0750ac5154 -r 8766b6a6641b src/gtkconv.c --- a/src/gtkconv.c Sun Jan 11 23:45:23 2004 +0000 +++ b/src/gtkconv.c Mon Jan 12 00:28:27 2004 +0000 @@ -2873,6 +2873,7 @@ tmp[most_matched] = '\0'; most_matched--; } + most_matched++; g_free(tmp); }