[fix] is_numeric_token includes IDEOGRAPHIC_NUMBER

This commit is contained in:
Al
2017-02-12 15:11:56 -05:00
parent b2978f49ba
commit b1e178b7b2

View File

@@ -65,7 +65,7 @@
#define is_ideographic(type) ((type) == IDEOGRAPHIC_CHAR || (type) == HANGUL_SYLLABLE || (type) == IDEOGRAPHIC_NUMBER)
#define is_numeric_token(type) ((type) == NUMERIC)
#define is_numeric_token(type) ((type) == NUMERIC || (type) == IDEOGRAPHIC_NUMBER)
#define is_punctuation(type) ((type) >= PERIOD && (type) < OTHER)