From: Bram Moolenaar Date: Sun, 26 Jul 2020 13:51:06 +0000 (+0200) Subject: patch 8.2.1298: compiler warning for unused argument in small version X-Git-Tag: v8.2.1298 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb4f69c2fd9ea81331c4aa54877fde612d182a51;p=vim patch 8.2.1298: compiler warning for unused argument in small version Problem: Compiler warning for unused argument in small version. Solution: Add UNUSED. --- diff --git a/src/scriptfile.c b/src/scriptfile.c index ce9c15d31..2a8320832 100644 --- a/src/scriptfile.c +++ b/src/scriptfile.c @@ -114,7 +114,7 @@ estack_pop(void) * "is_sfile" is TRUE for itself. */ char_u * -estack_sfile(int is_sfile) +estack_sfile(int is_sfile UNUSED) { estack_T *entry; #ifdef FEAT_EVAL diff --git a/src/version.c b/src/version.c index c45c15519..58a434a1b 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1298, /**/ 1297, /**/