]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.023 v7.4.023
authorBram Moolenaar <Bram@vim.org>
Sat, 7 Sep 2013 14:35:42 +0000 (16:35 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 7 Sep 2013 14:35:42 +0000 (16:35 +0200)
Problem:    Compiler warning on 64 bit windows.
Solution:   Add type cast. (Mike Williams)

src/edit.c
src/version.c

index 0c6089b683fa8f64c423925d9837af275ee3afed..98737ece65ae4cf4d0c5c4697ad9a9203fa2da3c 100644 (file)
@@ -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;
index 5b37f047dae6fb8f08a61c449984a077840b59de..0ad2f936635b3094769c4f7dfe4567257e35a157 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    23,
 /**/
     22,
 /**/