mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.0.0139
Problem: Warning for unused argument. Solution: Add UNUSED.
This commit is contained in:
@@ -4370,7 +4370,7 @@ get_address(
|
|||||||
int addr_type, /* flag: one of ADDR_LINES, ... */
|
int addr_type, /* flag: one of ADDR_LINES, ... */
|
||||||
int skip, /* only skip the address, don't use it */
|
int skip, /* only skip the address, don't use it */
|
||||||
int to_other_file, /* flag: may jump to other file */
|
int to_other_file, /* flag: may jump to other file */
|
||||||
int address_count) /* 1 for first address, >1 after comma */
|
int address_count UNUSED) /* 1 for first address, >1 after comma */
|
||||||
{
|
{
|
||||||
int c;
|
int c;
|
||||||
int i;
|
int i;
|
||||||
@@ -7589,7 +7589,7 @@ ex_all(exarg_T *eap)
|
|||||||
#endif /* FEAT_WINDOWS */
|
#endif /* FEAT_WINDOWS */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
ex_hide(exarg_T *eap)
|
ex_hide(exarg_T *eap UNUSED)
|
||||||
{
|
{
|
||||||
/* ":hide" or ":hide | cmd": hide current window */
|
/* ":hide" or ":hide | cmd": hide current window */
|
||||||
#ifdef FEAT_WINDOWS
|
#ifdef FEAT_WINDOWS
|
||||||
|
@@ -764,6 +764,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 */
|
||||||
|
/**/
|
||||||
|
139,
|
||||||
/**/
|
/**/
|
||||||
138,
|
138,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user