# HG changeset patch # User Sadrul Habib Chowdhury # Date 1158549431 0 # Node ID 60845d332ea6636b5db43db4cd5c43a533b61340 # Parent 2a4a8b24de92c457b6001303706ce5c8f4c1bdfd [gaim-migrate @ 17302] Auto-completion can have non-alpha characters. committer: Tailor Script diff -r 2a4a8b24de92 -r 60845d332ea6 console/libgnt/gntentry.c --- 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; }