# HG changeset patch # User Bram Moolenaar # Date 1339604119 -7200 # Node ID a967a979c37f458bd4d164afb8a6192a5b4a6fde # Parent ce38abb98cf3111d3a2e1f93e19d8d42745d88d6 updated for version 7.3.554 Problem: Compiler warning for unused argument. Solution: Add UNUSED. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 554, +/**/ 553, /**/ 552, diff --git a/src/window.c b/src/window.c --- a/src/window.c +++ b/src/window.c @@ -3723,7 +3723,7 @@ leave_tabpage(new_curbuf) enter_tabpage(tp, old_curbuf, trigger_autocmds) tabpage_T *tp; buf_T *old_curbuf UNUSED; - int trigger_autocmds; + int trigger_autocmds UNUSED; { int old_off = tp->tp_firstwin->w_winrow; win_T *next_prevwin = tp->tp_prevwin;