changeset 3406:e61c3b09ae86 v7.3.469

updated for version 7.3.469 Problem: Compiler warning for unused argument without some features. Solution: Add UNUSED.
author Bram Moolenaar <bram@vim.org>
date Wed, 07 Mar 2012 22:52:36 +0100
parents 7f67c1837858
children 292243a1cb10
files src/buffer.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -329,7 +329,7 @@ close_buffer(win, buf, action, abort_if_
     win_T	*win;		/* if not NULL, set b_last_cursor */
     buf_T	*buf;
     int		action;
-    int		abort_if_last;
+    int		abort_if_last UNUSED;
 {
 #ifdef FEAT_AUTOCMD
     int		is_curbuf;
--- 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 */
 /**/
+    469,
+/**/
     468,
 /**/
     467,