summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/unicode.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-09-26 04:46:55 +1000
committer Vas Crabb <vas@vastheman.com>2016-09-26 04:51:59 +1000
commit33b2c733955112083b2912d4115eb0465026b4d0 (patch)
treefbbf0f355577aaf9a18dfa5ce269615ed5e70bec /src/lib/util/unicode.cpp
parentfbbc293041838bf6007c439c57745f79b2c8d4fb (diff)
srcclean (nw)
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)