From: <sa...@us...> - 2006-09-18 03:17:16
|
Revision: 17302 http://svn.sourceforge.net/gaim/?rev=17302&view=rev Author: sadrul Date: 2006-09-17 20:17:11 -0700 (Sun, 17 Sep 2006) Log Message: ----------- Auto-completion can have non-alpha characters. Modified Paths: -------------- trunk/console/libgnt/gntentry.c Modified: trunk/console/libgnt/gntentry.c =================================================================== --- trunk/console/libgnt/gntentry.c 2006-09-18 02:53:54 UTC (rev 17301) +++ trunk/console/libgnt/gntentry.c 2006-09-18 03:17:11 UTC (rev 17302) @@ -31,7 +31,7 @@ while (s > entry->start) { char *t = g_utf8_find_prev_char(entry->start, s); - if ((*t < 'A' || *t > 'Z') && (*t < 'a' || *t > 'z')) + if (isspace(*t)) break; s = t; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |