summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-05-17 11:33:22 +0000
committerBram Moolenaar <Bram@vim.org>2009-05-17 11:33:22 +0000
commit2c4278fc738cca3fcd70cffd7ddc865ea9783694 (patch)
treeb6cf40176c3e3904782d82ab2cacc5afeb1d3d75 /src/normal.c
parentbf0c4526bf4bac6f7193cacf2ad1c8802f84be18 (diff)
downloadvim-git-2c4278fc738cca3fcd70cffd7ddc865ea9783694.tar.gz
updated for version 7.2-180v7.2.180
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/normal.c b/src/normal.c
index 9057b780a..160beb654 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -9243,10 +9243,9 @@ nv_open(cap)
}
#ifdef FEAT_SNIFF
-/*ARGSUSED*/
static void
nv_sniff(cap)
- cmdarg_T *cap;
+ cmdarg_T *cap UNUSED;
{
ProcessSniffRequests();
}
@@ -9262,10 +9261,9 @@ nv_nbcmd(cap)
#endif
#ifdef FEAT_DND
-/*ARGSUSED*/
static void
nv_drop(cap)
- cmdarg_T *cap;
+ cmdarg_T *cap UNUSED;
{
do_put('~', BACKWARD, 1L, PUT_CURSEND);
}
@@ -9277,7 +9275,6 @@ nv_drop(cap)
* When waiting for a character for 'updatetime' K_CURSORHOLD is put in the
* input buffer. "did_cursorhold" is set to avoid retriggering.
*/
-/*ARGSUSED*/
static void
nv_cursorhold(cap)
cmdarg_T *cap;