Commit 4d045fbc 4d045fbc16d45622daf70c898de4d60dd33a2ca1 by Sergey Poznyakoff

(i_ascii_casemap_contains): Fixed obsolete label usage.

1 parent f0cb0e38
...@@ -456,7 +456,8 @@ i_ascii_casemap_contains (const char *pattern, const char *text) ...@@ -456,7 +456,8 @@ i_ascii_casemap_contains (const char *pattern, const char *text)
456 break; 456 break;
457 if (!(a = *++haystack)) 457 if (!(a = *++haystack))
458 goto ret0; 458 goto ret0;
459 shloop: } 459 shloop: ;
460 }
460 while (U (a) != b); 461 while (U (a) != b);
461 462
462 jin: if (!(a = *++haystack)) 463 jin: if (!(a = *++haystack))
......