Skip to content

Commit

Permalink
py/unicode: Comment-out unused function unichar_isprint.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgeorge committed Dec 28, 2016
1 parent eae819c commit afc5063
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions py/unicode.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit afc5063

Please sign in to comment.