mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 11:28:22 +00:00
regexp_nfa: Remove octal constant
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user