mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-3280 sync definition of unprintable with ICU4J
X-SVN-Rev: 13233
This commit is contained in:
parent
375490bb0c
commit
a75bbfba1c
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ static const UChar HEX[16] = {48,49,50,51,52,53,54,55, // 0-7
|
|||
* Return true if the character is NOT printable ASCII.
|
||||
*/
|
||||
UBool ICU_Utility::isUnprintable(UChar32 c) {
|
||||
return !(c == 0x0A || (c >= 0x20 && c <= 0x7E));
|
||||
return !(c >= 0x20 && c <= 0x7E);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue