summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-01-30 19:26:24 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-30 19:26:24 +0000
commiteb45ad25ab5022e5bead0dbb19fe5704924f918a (patch)
treeb98482eb546d0a41df24a288462d3638150f2997
parent907349a74331fc1bc48cf43c1e7d54cb9e0e4fc9 (diff)
downloadvim-git-eb45ad25ab5022e5bead0dbb19fe5704924f918a.tar.gz
patch 9.0.1264: Motif: compiler warning for unused argumentv9.0.1264
Problem: Motif: compiler warning for unused argument. Solution: Add "UNUSED".
-rw-r--r--src/optionstr.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/optionstr.c b/src/optionstr.c
index 1329be31a..1665509df 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 7e93b11da..5436c99fc 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1264,
+/**/
1263,
/**/
1262,