From 393d06dbf01006ae29c4b3e69599403f88c78fb4 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Tue, 30 May 2006 09:09:08 +0000 Subject: Make bookmark search ignore special characters (bug 339167) --- lib/widgets/ephy-location-entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/widgets/ephy-location-entry.c') diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index c964a46fe..a0dfa2921 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -429,7 +429,7 @@ keyword_match (const char *list, next_token: - while (*p && *p != ' ') p++; + while (*p && !g_ascii_ispunct(*p)) p++; if (*p) p++; } -- cgit v1.2.3