# HG changeset patch # User Bram Moolenaar # Date 1647013502 -3600 # Node ID 2950c4144afe719ce82baa50059da34da9fc605c # Parent e98a8383668f3e77ea3a5436213889c9a1a6f671 patch 8.2.4546: duplicate #undef Commit: https://github.com/vim/vim/commit/0a4e098f32f3c83273ff63c02c8d0d5cdd7c897c Author: zeertzjq Date: Fri Mar 11 15:33:53 2022 +0000 patch 8.2.4546: duplicate #undef Problem: Duplicate #undef. Solution: Remove one #undef. (closes https://github.com/vim/vim/issues/9932) diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -1269,7 +1269,6 @@ nfa_emit_equi_class(int c) EMIT2(c); return OK; #undef EMIT2 -#undef EMIT2 } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4546, +/**/ 4545, /**/ 4544,