aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@src.gnome.org>2006-05-30 17:09:08 +0800
committerFrederic Peters <fpeters@src.gnome.org>2006-05-30 17:09:08 +0800
commit393d06dbf01006ae29c4b3e69599403f88c78fb4 (patch)
treed96fa83c5b4192d712ed25f180bb28f7fda13186 /lib
parent4cdd759468a36668bb7cf20e764cc93ef285f2cf (diff)
downloadgsoc2013-epiphany-393d06dbf01006ae29c4b3e69599403f88c78fb4.tar
gsoc2013-epiphany-393d06dbf01006ae29c4b3e69599403f88c78fb4.tar.gz
gsoc2013-epiphany-393d06dbf01006ae29c4b3e69599403f88c78fb4.tar.bz2
gsoc2013-epiphany-393d06dbf01006ae29c4b3e69599403f88c78fb4.tar.lz
gsoc2013-epiphany-393d06dbf01006ae29c4b3e69599403f88c78fb4.tar.xz
gsoc2013-epiphany-393d06dbf01006ae29c4b3e69599403f88c78fb4.tar.zst
gsoc2013-epiphany-393d06dbf01006ae29c4b3e69599403f88c78fb4.zip
Make bookmark search ignore special characters (bug 339167)
Diffstat (limited to 'lib')
-rw-r--r--lib/widgets/ephy-location-entry.c2
1 files changed, 1 insertions, 1 deletions
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++;
}