Skip to content

Commit dc55da4

Browse files
committed
updated for version 7.4.023
Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
1 parent 9416bca commit dc55da4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/edit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5189,7 +5189,7 @@ ins_complete(c)
51895189
mb_ptr_back(line, p);
51905190
while (vim_isfilec(PTR2CHAR(p)) && p >= line)
51915191
mb_ptr_back(line, p);
5192-
startcol = p - line;
5192+
startcol = (int)(p - line);
51935193

51945194
compl_col += ++startcol;
51955195
compl_length = (int)curs_col - startcol;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
23,
741743
/**/
742744
22,
743745
/**/

0 commit comments

Comments
 (0)