diff options
Diffstat (limited to 'lib/widgets/ephy-location-entry.c')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index a0dfa2921..7fb12c928 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -429,8 +429,8 @@ keyword_match (const char *list, next_token: - while (*p && !g_ascii_ispunct(*p)) p++; - if (*p) p++; + while (*p && !g_ascii_ispunct(*p) && !g_ascii_isspace(*p)) p++; + while (*p && (g_ascii_ispunct(*p) || g_ascii_isspace(*p))) p++; } return FALSE; |