summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-09-09 12:22:06 +0200
committerBram Moolenaar <Bram@vim.org>2014-09-09 12:22:06 +0200
commit120f4a878f61d78b9be34e3516aa4cdf0fc682d7 (patch)
tree089bd88f1a0dd41f80531bbad7be04406ff06dd1
parent5d5fbe7a2b4cc948c54afeae5375b247bf34ba9b (diff)
updated for version 7.4.431v7.4.431
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
-rw-r--r--src/ex_docmd.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index c4cf1f9e1b..e90dfe5935 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -2155,7 +2155,7 @@ do_one_cmd(cmdlinep, sourcing,
p = ea.cmd;
while (ASCII_ISALNUM(*p))
++p;
- p = vim_strnsave(ea.cmd, p - ea.cmd);
+ p = vim_strnsave(ea.cmd, (int)(p - ea.cmd));
ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL);
vim_free(p);
if (ret && !aborting())
diff --git a/src/version.c b/src/version.c
index b81d54781b..838c1d6079 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 431,
+/**/
430,
/**/
429,