# HG changeset patch # User Bram Moolenaar # Date 1619289903 -7200 # Node ID f522ef9e5ea38ea67aa32a104ac3ea8d809c00e4 # Parent 3d5661b90d53a81551f702c396ac96e8177ec657 patch 8.2.2807: build fails with tiny features Commit: https://github.com/vim/vim/commit/340c59ec6f9635e8cbf61db7996d68f61b48679f Author: Bram Moolenaar Date: Sat Apr 24 20:37:03 2021 +0200 patch 8.2.2807: build fails with tiny features Problem: Build fails with tiny features. Solution: Use a dummy function for ex_incdec(). diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -287,6 +287,7 @@ static void ex_tag_cmd(exarg_T *eap, cha # define ex_endwhile ex_ni # define ex_eval ex_ni # define ex_execute ex_ni +# define ex_incdec ex_ni # define ex_finally ex_ni # define ex_finish ex_ni # define ex_function ex_ni 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 */ /**/ + 2807, +/**/ 2806, /**/ 2805,