commit | f30caaf08d2ccbf429cf1eeb910b0ab08b88a40d | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Feb 23 22:54:58 2014 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Feb 23 22:54:58 2014 +0100 |
tree | 266a9e1dad569498c127cd2655f2452df0837d60 | |
parent | a2aa31a9269641839178b0c0663dc67405c33d3e [diff] [blame] |
updated for version 7.4.189 Problem: Compiler warning for unused argument. Solution: Add UNUSED.
diff --git a/src/eval.c b/src/eval.c index 80fc337..3be3813 100644 --- a/src/eval.c +++ b/src/eval.c
@@ -9203,7 +9203,7 @@ byteidx(argvars, rettv, comp) typval_T *argvars; typval_T *rettv; - int comp; + int comp UNUSED; { #ifdef FEAT_MBYTE char_u *t;