From: Christian Brabandt Date: Sat, 18 Jul 2026 03:53:47 +0000 (+0000) Subject: patch 9.2.0787: regexp: code 0x1ecb duplicated for equivalence class X-Git-Tag: v9.2.0787^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7feefe170e39a272148824af0c4b648532220d7;p=thirdparty%2Fvim.git patch 9.2.0787: regexp: code 0x1ecb duplicated for equivalence class Problem: regexp: code 0x1ecb duplicated for equivalence class (Sami Farin) Solution: Remove it fixes: #8029#issuecomment-4998990223 closes: #20782 Signed-off-by: Christian Brabandt --- diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index 4bd588b4e4..d52ea4034d 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -1105,7 +1105,7 @@ nfa_emit_equi_class(int c) EMIT2(0x12f) EMIT2(0x1d0) EMIT2(0x209) EMIT2(0x20b) EMIT2(0x268) EMIT2(0x1d96) EMIT2(0x1e2d) EMIT2(0x1e2f) EMIT2(0x1ec9) - EMIT2(0x1ecb) EMIT2(0x1ecb) + EMIT2(0x1ecb) return OK; case 'j': case 0x135: case 0x1f0: case 0x249: diff --git a/src/version.c b/src/version.c index 597a4f71b4..f13a89b811 100644 --- a/src/version.c +++ b/src/version.c @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 787, /**/ 786, /**/