# HG changeset patch # User Bram Moolenaar # Date 1595772005 -7200 # Node ID 4c1a929fde80cc0a543b91d3e8578d529f192165 # Parent d26728613f3e6b9766f7af04a3c61c7ddaf56e78 patch 8.2.1298: compiler warning for unused argument in small version Commit: https://github.com/vim/vim/commit/cb4f69c2fd9ea81331c4aa54877fde612d182a51 Author: Bram Moolenaar Date: Sun Jul 26 15:51:06 2020 +0200 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1298, +/**/ 1297, /**/ 1296,