mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.4118: using UNUSED for argument that is used
Problem: Using UNUSED for argument that is used. Solution: Remove UNUSED.
This commit is contained in:
parent
47036b6bd7
commit
0023f82a76
@ -123,10 +123,10 @@ static struct
|
|||||||
char_u *
|
char_u *
|
||||||
find_ucmd(
|
find_ucmd(
|
||||||
exarg_T *eap,
|
exarg_T *eap,
|
||||||
char_u *p, // end of the command (possibly including count)
|
char_u *p, // end of the command (possibly including count)
|
||||||
int *full, // set to TRUE for a full match
|
int *full, // set to TRUE for a full match
|
||||||
expand_T *xp, // used for completion, NULL otherwise
|
expand_T *xp, // used for completion, NULL otherwise
|
||||||
int *complp UNUSED) // completion flags or NULL
|
int *complp) // completion flags or NULL
|
||||||
{
|
{
|
||||||
int len = (int)(p - eap->cmd);
|
int len = (int)(p - eap->cmd);
|
||||||
int j, k, matchlen = 0;
|
int j, k, matchlen = 0;
|
||||||
|
@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
4118,
|
||||||
/**/
|
/**/
|
||||||
4117,
|
4117,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user