[gaim-migrate @ 17302]

Mon, 18 Sep 2006 03:17:11 +0000

author
Sadrul Habib Chowdhury <sadrul@pidgin.im>
date
Mon, 18 Sep 2006 03:17:11 +0000
changeset 14640
9f0f2bbbc4e2
parent 14639
706c89fe995f
child 14641
a55ef032e889

[gaim-migrate @ 17302]
Auto-completion can have non-alpha characters.

console/libgnt/gntentry.c file | annotate | diff | comparison | revisions
--- a/console/libgnt/gntentry.c	Mon Sep 18 02:53:54 2006 +0000
+++ b/console/libgnt/gntentry.c	Mon Sep 18 03:17:11 2006 +0000
@@ -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;
 	}

mercurial