aboutsummaryrefslogtreecommitdiff
path: root/py/unicode.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-12-28 17:50:10 +1100
committerDamien George <damien.p.george@gmail.com>2016-12-28 17:50:10 +1100
commitafc50635396cc8c0a686094993e42afb775d4a99 (patch)
treea0bd5d639a091477c31f37888e72697ec1e9584d /py/unicode.c
parenteae819c0ed1cdfba33820e06292fab348ec4756d (diff)
py/unicode: Comment-out unused function unichar_isprint.
Diffstat (limited to 'py/unicode.c')
-rw-r--r--py/unicode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/py/unicode.c b/py/unicode.c
index 8be63f217..c6f872038 100644
--- a/py/unicode.c
+++ b/py/unicode.c
@@ -133,9 +133,11 @@ bool unichar_isalpha(unichar c) {
return c < 128 && (attr[c] & FL_ALPHA) != 0;
}
+/* unused
bool unichar_isprint(unichar c) {
return c < 128 && (attr[c] & FL_PRINT) != 0;
}
+*/
bool unichar_isdigit(unichar c) {
return c < 128 && (attr[c] & FL_DIGIT) != 0;