]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.554 v7.3.554
authorBram Moolenaar <Bram@vim.org>
Wed, 13 Jun 2012 16:15:19 +0000 (18:15 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 13 Jun 2012 16:15:19 +0000 (18:15 +0200)
Problem:    Compiler warning for unused argument.
Solution:   Add UNUSED.

src/version.c
src/window.c

index fd997b9dfafa8adf7bafa4596f3cd39fa19e2672..9ef28d475c7a4a15dca78fedd9bf9d3d8e2b4141 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    554,
 /**/
     553,
 /**/
index f036c37cda12296635eafcd247341bd20c3cca64..cf45e90b0610be5b6cacba981675931054af1a76 100644 (file)
@@ -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;