Skip to content

Commit 5e1e6d2

Browse files
committed
patch 8.0.0139
Problem: Warning for unused argument. Solution: Add UNUSED.
1 parent b094ff4 commit 5e1e6d2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/ex_docmd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4370,7 +4370,7 @@ get_address(
43704370
int addr_type, /* flag: one of ADDR_LINES, ... */
43714371
int skip, /* only skip the address, don't use it */
43724372
int to_other_file, /* flag: may jump to other file */
4373-
int address_count) /* 1 for first address, >1 after comma */
4373+
int address_count UNUSED) /* 1 for first address, >1 after comma */
43744374
{
43754375
int c;
43764376
int i;
@@ -7589,7 +7589,7 @@ ex_all(exarg_T *eap)
75897589
#endif /* FEAT_WINDOWS */
75907590

75917591
static void
7592-
ex_hide(exarg_T *eap)
7592+
ex_hide(exarg_T *eap UNUSED)
75937593
{
75947594
/* ":hide" or ":hide | cmd": hide current window */
75957595
#ifdef FEAT_WINDOWS

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
139,
767769
/**/
768770
138,
769771
/**/

0 commit comments

Comments
 (0)