regexp_nfa: Remove octal constant

This commit is contained in:
ZyX 2017-04-16 21:42:20 +03:00
parent 372b6af8ea
commit 9d302c60f0

View File

@ -4407,8 +4407,9 @@ static int check_char_class(int class, int c)
return OK;
break;
case NFA_CLASS_ESCAPE:
if (c == '\033')
if (c == ESC) {
return OK;
}
break;
default: