diff src/buffer.c @ 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 07fd030f89be
children 3465a9e77588
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;