diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-08-13 23:28:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-08-13 23:28:43 +0200 |
commit | 3cfd5289ca1135f116e7ece9cdadef51493ca02b (patch) | |
tree | 8f72e1e602ddfd09a1c87aea0451bbacad1ca293 /src/search.c | |
parent | 1560d07045d416d0abf9731c43c28925f61515b6 (diff) | |
download | vim-git-3cfd5289ca1135f116e7ece9cdadef51493ca02b.tar.gz |
patch 7.4.826v7.4.826
Problem: Compiler warnings and errors.
Solution: Make it build properly without the multi-byte feature.
Diffstat (limited to 'src/search.c')
-rw-r--r-- | src/search.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c index de7bae86f..db6d04c6a 100644 --- a/src/search.c +++ b/src/search.c @@ -451,8 +451,8 @@ last_csearch_until() void set_last_csearch(c, s, len) int c; - char_u *s; - int len; + char_u *s UNUSED; + int len UNUSED; { *lastc = c; #ifdef FEAT_MBYTE |