diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-07-14 11:44:30 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-07-14 11:44:30 +0000 |
commit | d31aca26de3c3ba2cd359bdd8065b40b73d551a8 (patch) | |
tree | 309f550b6c41c5ce65dc880939a0657dc9575231 /src | |
parent | 262735ed58cee09ef9d0f1c0377bcdf5a047a555 (diff) | |
download | vim-git-d31aca26de3c3ba2cd359bdd8065b40b73d551a8.tar.gz |
updated for version 7.2-230v7.2.230
Diffstat (limited to 'src')
-rw-r--r-- | src/getchar.c | 12 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/getchar.c b/src/getchar.c index e050601cf..e81f7cb56 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -3708,11 +3708,10 @@ get_map_mode(cmdp, forceit) * Clear all mappings or abbreviations. * 'abbr' should be FALSE for mappings, TRUE for abbreviations. */ -/*ARGSUSED*/ void map_clear(cmdp, arg, forceit, abbr) char_u *cmdp; - char_u *arg; + char_u *arg UNUSED; int forceit; int abbr; { @@ -3741,13 +3740,12 @@ map_clear(cmdp, arg, forceit, abbr) /* * Clear all mappings in "mode". */ -/*ARGSUSED*/ void map_clear_int(buf, mode, local, abbr) - buf_T *buf; /* buffer for local mappings */ - int mode; /* mode in which to delete */ - int local; /* TRUE for buffer-local mappings */ - int abbr; /* TRUE for abbreviations */ + buf_T *buf UNUSED; /* buffer for local mappings */ + int mode; /* mode in which to delete */ + int local UNUSED; /* TRUE for buffer-local mappings */ + int abbr; /* TRUE for abbreviations */ { mapblock_T *mp, **mpp; int hash; diff --git a/src/version.c b/src/version.c index 068f56f91..b10cb7fcb 100644 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 230, +/**/ 229, /**/ 228, |