0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.3.469

Problem:    Compiler warning for unused argument without some features.
Solution:   Add UNUSED.
This commit is contained in:
Bram Moolenaar
2012-03-07 22:52:36 +01:00
parent 8ec1f8523b
commit 5fbe699390
2 changed files with 3 additions and 1 deletions

View File

@@ -329,7 +329,7 @@ close_buffer(win, buf, action, abort_if_last)
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;