patch 7.4.1476
Problem: Function arguments marked as unused while they are not.
Solution: Remove UNUSED. (Yegappan Lakshmanan)
diff --git a/src/window.c b/src/window.c
index ee69921..7dfbe5a 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3896,8 +3896,8 @@
enter_tabpage(
tabpage_T *tp,
buf_T *old_curbuf UNUSED,
- int trigger_enter_autocmds UNUSED,
- int trigger_leave_autocmds UNUSED)
+ int trigger_enter_autocmds,
+ int trigger_leave_autocmds)
{
int old_off = tp->tp_firstwin->w_winrow;
win_T *next_prevwin = tp->tp_prevwin;