From: Bram Moolenaar Date: Sat, 15 Jan 2022 18:48:32 +0000 (+0000) Subject: patch 8.2.4101: warning for unused argument in tiny version X-Git-Tag: v8.2.4101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4e2f5090124d7753057de82727a99892f0231fe;p=thirdparty%2Fvim.git 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 index 6434b4dc41..ec9cfae189 100644 --- 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 index d34f1a1536..e6bcb1ba3b 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4101, /**/ 4100, /**/