# HG changeset patch # User Bram Moolenaar # Date 1378564542 -7200 # Node ID 09361f13580b075b6e87707c47165e8d45ee98a5 # Parent 22da5ab9aaa10dbd178021b398dcd791dee8f784 updated for version 7.4.023 Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams) diff --git a/src/edit.c b/src/edit.c --- a/src/edit.c +++ b/src/edit.c @@ -5189,7 +5189,7 @@ ins_complete(c) mb_ptr_back(line, p); while (vim_isfilec(PTR2CHAR(p)) && p >= line) mb_ptr_back(line, p); - startcol = p - line; + startcol = (int)(p - line); compl_col += ++startcol; compl_length = (int)curs_col - startcol; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 23, +/**/ 22, /**/ 21,