- Added parentheses for clarity.

SVN r4286 (trunk)
This commit is contained in:
Randy Heit 2013-05-26 00:53:48 +00:00
parent 78437d917c
commit ce28c9c991
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ static int stripaccent(int code)
return 'D' + (code & 0x20);
if (acode == 0xD1) // N with tilde
return 'N' + (code & 0x20);
if (acode >= 0xD2 && acode <= 0xD6 || // O with accents
if ((acode >= 0xD2 && acode <= 0xD6) || // O with accents
acode == 0xD8) // O with stroke
return 'O' + (code & 0x20);
if (acode >= 0xD9 && acode <= 0xDC) // U with accents