changeset 14191:ec39f281e3e8 v8.1.0113

patch 8.1.0113: compiler warning for unused variable commit https://github.com/vim/vim/commit/829adb74605604ff0bec33862cde850efb294711 Author: Bram Moolenaar <Bram@vim.org> 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)
author Christian Brabandt <cb@256bit.org>
date Sun, 24 Jun 2018 19:30:05 +0200
parents 1d43cb2a7592
children a99aeab81d2a
files src/screen.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
--- 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,