mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
updated for version 7.4.023
Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
This commit is contained in:
parent
7cba6c0636
commit
3b7ac49e26
@ -5189,7 +5189,7 @@ ins_complete(c)
|
|||||||
mb_ptr_back(line, p);
|
mb_ptr_back(line, p);
|
||||||
while (vim_isfilec(PTR2CHAR(p)) && p >= line)
|
while (vim_isfilec(PTR2CHAR(p)) && p >= line)
|
||||||
mb_ptr_back(line, p);
|
mb_ptr_back(line, p);
|
||||||
startcol = p - line;
|
startcol = (int)(p - line);
|
||||||
|
|
||||||
compl_col += ++startcol;
|
compl_col += ++startcol;
|
||||||
compl_length = (int)curs_col - startcol;
|
compl_length = (int)curs_col - startcol;
|
||||||
|
@ -738,6 +738,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 */
|
||||||
|
/**/
|
||||||
|
23,
|
||||||
/**/
|
/**/
|
||||||
22,
|
22,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user