# HG changeset patch # User Christian Brabandt # Date 1529861405 -7200 # Node ID ec39f281e3e826a396d9d9370beb73d9da9b8b7a # Parent 1d43cb2a75921559398474a276b65f42c0fcb2a8 patch 8.1.0113: compiler warning for unused variable commit https://github.com/vim/vim/commit/829adb74605604ff0bec33862cde850efb294711 Author: Bram Moolenaar Date: Sun Jun 24 19:24:03 2018 +0200 patch 8.1.0113: compiler warning for unused variable Problem: Compiler warning for unused variable. (Yegappan Lakshmanan) Solution: Add UNUSED. (Christian Brabandt) diff --git a/src/screen.c b/src/screen.c --- a/src/screen.c +++ b/src/screen.c @@ -6874,7 +6874,7 @@ win_redr_status_matches( * displayed. */ static void -win_redr_status(win_T *wp, int ignore_pum) +win_redr_status(win_T *wp, int ignore_pum UNUSED) { int row; char_u *p; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -790,6 +790,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 113, +/**/ 112, /**/ 111,