summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-16 21:54:19 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-16 21:54:19 +0000
commit0023f82a76cf43a12b41e71f97a2e860d0444e1b (patch)
tree06ac42b5b2144b845e4ce46fc1edc11f57252350
parent47036b6bd7e5a0b38f093d9f0630f054b04fa68e (diff)
patch 8.2.4118: using UNUSED for argument that is usedv8.2.4118
Problem: Using UNUSED for argument that is used. Solution: Remove UNUSED.
-rw-r--r--src/usercmd.c8
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 4 deletions
diff --git a/src/usercmd.c b/src/usercmd.c
index 2830a50386..70f45aab81 100644
--- a/src/usercmd.c
+++ b/src/usercmd.c
@@ -123,10 +123,10 @@ static struct
char_u *
find_ucmd(
exarg_T *eap,
- char_u *p, // end of the command (possibly including count)
- int *full, // set to TRUE for a full match
- expand_T *xp, // used for completion, NULL otherwise
- int *complp UNUSED) // completion flags or NULL
+ char_u *p, // end of the command (possibly including count)
+ int *full, // set to TRUE for a full match
+ expand_T *xp, // used for completion, NULL otherwise
+ int *complp) // completion flags or NULL
{
int len = (int)(p - eap->cmd);
int j, k, matchlen = 0;
diff --git a/src/version.c b/src/version.c
index 1c367e68e9..fe27375c76 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4118,
+/**/
4117,
/**/
4116,