patch 8.0.0139
Problem: Warning for unused argument.
Solution: Add UNUSED.
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 0c6536c..b73eb95 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -4370,7 +4370,7 @@
int addr_type, /* flag: one of ADDR_LINES, ... */
int skip, /* only skip the address, don't use it */
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 i;
@@ -7589,7 +7589,7 @@
#endif /* FEAT_WINDOWS */
static void
-ex_hide(exarg_T *eap)
+ex_hide(exarg_T *eap UNUSED)
{
/* ":hide" or ":hide | cmd": hide current window */
#ifdef FEAT_WINDOWS