diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-07-04 16:51:55 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-07-04 16:51:55 +0000 |
commit | 1378fca6082b8928dd3b9b0af66d9d34cf064722 (patch) | |
tree | 64368671513fbea99e7768516267dad2edcf930c | |
parent | 05bb95391f2dc99574650d3ce5932c035a46bded (diff) | |
download | vim-git-1378fca6082b8928dd3b9b0af66d9d34cf064722.tar.gz |
updated for version 7.2a-014v7.2a.014
-rw-r--r-- | src/eval.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index a41411a25..7ebaa08f1 100644 --- a/src/eval.c +++ b/src/eval.c @@ -4724,7 +4724,7 @@ eval6(arg, rettv, evaluate, want_string) } else { - EMSG(_("E804: Cannot use % with float")); + EMSG(_("E804: Cannot use '%' with Float")); return FAIL; } rettv->v_type = VAR_FLOAT; diff --git a/src/version.c b/src/version.c index 49f41f50e..28ac16a26 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 */ /**/ + 14, +/**/ 13, /**/ 12, |