mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
regexp_nfa: Remove octal constant
This commit is contained in:
parent
372b6af8ea
commit
9d302c60f0
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user