diff options
-rw-r--r-- | e-util/ChangeLog | 1 | ||||
-rw-r--r-- | e-util/e-trie.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 1eac6aed90..50688e8573 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -2,6 +2,7 @@ * e-trie.c (e_trie_search): If the gunichar is 0xfffe, just skip processing it. Maybe this will fix bug #39900. + (trie_utf8_getc): Removed unused labels to shutup the compiler. 2003-03-19 Jeffrey Stedfast <fejj@ximian.com> diff --git a/e-util/e-trie.c b/e-util/e-trie.c index 8a9600e6db..a2eb5dd9c8 100644 --- a/e-util/e-trie.c +++ b/e-util/e-trie.c @@ -68,9 +68,7 @@ trie_utf8_getc (const unsigned char **in, size_t inlen) if (inlen == 0) return 0; -again: r = *inptr++; -loop: if (r < 0x80) { *in = inptr; u = r; |