mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.4.431
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
This commit is contained in:
parent
5d5fbe7a2b
commit
120f4a878f
@ -2155,7 +2155,7 @@ do_one_cmd(cmdlinep, sourcing,
|
|||||||
p = ea.cmd;
|
p = ea.cmd;
|
||||||
while (ASCII_ISALNUM(*p))
|
while (ASCII_ISALNUM(*p))
|
||||||
++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);
|
ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL);
|
||||||
vim_free(p);
|
vim_free(p);
|
||||||
if (ret && !aborting())
|
if (ret && !aborting())
|
||||||
|
@ -741,6 +741,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
431,
|
||||||
/**/
|
/**/
|
||||||
430,
|
430,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user