From 829adb74605604ff0bec33862cde850efb294711 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 24 Jun 2018 19:24:03 +0200 Subject: [PATCH] patch 8.1.0113: compiler warning for unused variable Problem: Compiler warning for unused variable. (Yegappan Lakshmanan) Solution: Add UNUSED. (Christian Brabandt) --- src/screen.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/screen.c b/src/screen.c index b5b68e4df..eac50c52c 100644 --- 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 index 06ed8ce24..433881c3b 100644 --- a/src/version.c +++ b/src/version.c @@ -789,6 +789,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 113, /**/ 112, /**/ -- 2.40.0