Replace vim_isxdigit() with to ascii_isxdigit() defined in ascii.h

This commit is contained in:
Felipe Oliveira Carvalho
2015-04-22 19:49:53 -03:00
parent caabcae0b7
commit 2ca8afc74e
7 changed files with 26 additions and 26 deletions

View File

@@ -4263,7 +4263,7 @@ static int check_char_class(int class, int c)
return OK;
break;
case NFA_CLASS_XDIGIT:
if (vim_isxdigit(c))
if (ascii_isxdigit(c))
return OK;
break;
case NFA_CLASS_TAB: