From: Bram Moolenaar Date: Mon, 30 Jan 2023 19:26:24 +0000 (+0000) Subject: patch 9.0.1264: Motif: compiler warning for unused argument X-Git-Tag: v9.0.1264 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb45ad25ab5022e5bead0dbb19fe5704924f918a;p=thirdparty%2Fvim.git patch 9.0.1264: Motif: compiler warning for unused argument Problem: Motif: compiler warning for unused argument. Solution: Add "UNUSED". --- diff --git a/src/optionstr.c b/src/optionstr.c index 1329be31a0..1665509df9 100644 --- a/src/optionstr.c +++ b/src/optionstr.c @@ -1562,7 +1562,7 @@ did_set_showbreak(char_u **varp) * The 'guifont' option is changed. */ static char * -did_set_guifont(char_u *oldval, int *redraw_gui_only) +did_set_guifont(char_u *oldval UNUSED, int *redraw_gui_only) { char_u *p; char *errmsg = NULL; diff --git a/src/version.c b/src/version.c index 7e93b11da7..5436c99fc9 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1264, /**/ 1263, /**/