commit | afc50635396cc8c0a686094993e42afb775d4a99 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Wed Dec 28 17:50:10 2016 +1100 |
committer | Damien George <damien.p.george@gmail.com> | Wed Dec 28 17:50:10 2016 +1100 |
tree | a0bd5d639a091477c31f37888e72697ec1e9584d | |
parent | eae819c0ed1cdfba33820e06292fab348ec4756d [diff] [blame] |
py/unicode: Comment-out unused function unichar_isprint.
diff --git a/py/unicode.c b/py/unicode.c index 8be63f2..c6f8720 100644 --- a/py/unicode.c +++ b/py/unicode.c
@@ -133,9 +133,11 @@ 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;