# HG changeset patch # User Bram Moolenaar # Date 1642273203 -3600 # Node ID 54f0a6a9db2d7222bc95415438ec64682bee410e # Parent fee0ac14727eacc1d79417472a201f72df89ba36 patch 8.2.4101: warning for unused argument in tiny version Commit: https://github.com/vim/vim/commit/d4e2f5090124d7753057de82727a99892f0231fe Author: Bram Moolenaar Date: Sat Jan 15 18:48:32 2022 +0000 patch 8.2.4101: warning for unused argument in tiny version Problem: Warning for unused argument in tiny version. Solution: Add "UNUSED". diff --git a/src/getchar.c b/src/getchar.c --- a/src/getchar.c +++ b/src/getchar.c @@ -3811,7 +3811,7 @@ getcmdkeycmd( } int -do_cmdkey_command(int key, int flags) +do_cmdkey_command(int key UNUSED, int flags) { int res; #ifdef FEAT_EVAL 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 */ /**/ + 4101, +/**/ 4100, /**/ 4099,