1
0
forked from aniani/vim

patch 7.4.1476

Problem:    Function arguments marked as unused while they are not.
Solution:   Remove UNUSED. (Yegappan Lakshmanan)
This commit is contained in:
Bram Moolenaar
2016-03-03 12:22:53 +01:00
parent 00ded43a5a
commit f1d2501ebe
6 changed files with 12 additions and 10 deletions

View File

@@ -3896,8 +3896,8 @@ leave_tabpage(
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;