changeset 3588:a967a979c37f v7.3.554

updated for version 7.3.554 Problem: Compiler warning for unused argument. Solution: Add UNUSED.
author Bram Moolenaar <bram@vim.org>
date Wed, 13 Jun 2012 18:15:19 +0200
parents ce38abb98cf3
children 2b99a0b3eb78
files src/version.c src/window.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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,
--- 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;