Merge pull request #30163 from neovim/backport-30161-to-release-0.10

fix(regexp): fix typo in E888 error message
This commit is contained in:
zeertzjq
2024-08-28 11:00:30 +08:00
committed by GitHub

View File

@@ -10006,7 +10006,7 @@ static int nfa_regatom(void)
case 'e':
EMIT(NFA_ZEND);
rex.nfa_has_zend = true;
if (!re_mult_next("\\zs")) {
if (!re_mult_next("\\ze")) {
return false;
}
break;