Skip to content

Commit

Permalink
Fix compression-ignoring of upper-case suffixes.
Browse files Browse the repository at this point in the history
Fixes bug 7512.
  • Loading branch information
Wayne Davison committed Jun 19, 2010
1 parent 292a5c2 commit 3be1d9b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions token.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,8 @@ void set_compression(const char *fname)
return;

while (1) {
if (isUpper(&ltr))
ltr = toLower(&ltr);
while (node->letter != ltr) {
if (node->letter > ltr)
return;
Expand Down

0 comments on commit 3be1d9b

Please sign in to comment.