changeset 19995:19dc9f64a906 v8.2.0553

patch 8.2.0553: error for unused argument Commit: https://github.com/vim/vim/commit/cd630becc8849bf4647f04eeb02a4883bf46140e Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 12 14:50:26 2020 +0200 patch 8.2.0553: error for unused argument Problem: Error for unused argument. Solution: Add UNUSED.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Apr 2020 15:00:03 +0200
parents 4fccb4ea3f42
children f486b806468f
files src/libvterm/t/harness.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/libvterm/t/harness.c
+++ b/src/libvterm/t/harness.c
@@ -65,7 +65,7 @@ static VTermScreen *screen;
 
 static VTermEncodingInstance encoding;
 
-static void term_output(const char *s, size_t len, void *user)
+static void term_output(const char *s, size_t len, void *user UNUSED)
 {
   size_t i;
 
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    553,
+/**/
     552,
 /**/
     551,