summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/unicode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/unicode.cpp')
-rw-r--r--src/lib/util/unicode.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util/unicode.cpp b/src/lib/util/unicode.cpp
index 4613fa76350..65936e10b48 100644
--- a/src/lib/util/unicode.cpp
+++ b/src/lib/util/unicode.cpp
@@ -24,7 +24,7 @@ bool uchar_isvalid(unicode_char uchar)
//-------------------------------------------------
// uchar_is_printable - tests to see if a unicode
-// char is printable
+// char is printable
//-------------------------------------------------
bool uchar_is_printable(unicode_char uchar)
@@ -32,7 +32,7 @@ bool uchar_is_printable(unicode_char uchar)
return
!(0x0001f >= uchar) && // C0 control
!((0x0007f <= uchar) && (0x0009f >= uchar)) && // DEL and C1 control
- !((0x0fdd0 <= uchar) && (0x0fddf >= uchar)) && // noncharacters
+ !((0x0fdd0 <= uchar) && (0x0fddf >= uchar)) && // noncharacters
!(0x0fffe == (uchar & 0x0ffff)) && // byte-order detection noncharacter
!(0x0ffff == (uchar & 0x0ffff)); // the other noncharacter
}
@@ -40,7 +40,7 @@ bool uchar_is_printable(unicode_char uchar)
//-------------------------------------------------
// uchar_is_digit - tests to see if a unicode
-// char is a digit
+// char is a digit
//-------------------------------------------------
bool uchar_is_digit(unicode_char uchar)