Fixed gm_string_skip_till

This commit is contained in:
Jesse van den Kieboom 2005-11-07 09:47:28 +00:00
parent a7311c9794
commit 4ee7612f0c
1 changed files with 1 additions and 1 deletions

View File

@ -609,7 +609,7 @@ gm_string_skip_till(gchar **ptr, gchar const *find) {
for (fptr = find; *fptr; ++fptr) {
// CHECK: find should also be treated as utf8!
if (check == (gunichar)(*fptr)) {
break;
return;
}
}