Remove duplicate definition of ISALNUM

It's defined in hb-private.h already.
This commit is contained in:
Behdad Esfahbod 2014-07-25 11:56:01 -04:00
parent 2ee5f665de
commit d9e618eca9
1 changed files with 0 additions and 2 deletions

View File

@ -99,10 +99,8 @@ parse_feature_tag (const char **pp, const char *end, hb_feature_t *feature)
const char *p = *pp;
char c;
#define ISALNUM(c) (('a' <= (c) && (c) <= 'z') || ('A' <= (c) && (c) <= 'Z') || ('0' <= (c) && (c) <= '9'))
while (*pp < end && (c = **pp, ISALNUM(c)))
(*pp)++;
#undef ISALNUM
if (p == *pp || *pp - p > 4)
return false;