libsexy: never include spaces when spell-checking

This commit is contained in:
TingPing 2013-10-04 07:16:44 -04:00
parent a29ccffcbe
commit a47740636d
1 changed files with 2 additions and 1 deletions

View File

@ -1117,7 +1117,8 @@ entry_strsplit_utf8(GtkEntry *entry, gchar ***set, gint **starts, gint **ends)
/* Find the end of this string */
cend = i;
while ((!log_attrs[cend].is_word_end || !log_attrs[cend].is_word_boundary))
while ((!log_attrs[cend].is_word_end || !log_attrs[cend].is_word_boundary)
&& !log_attrs[cend].is_white)
cend++;
/* Copy sub-string */