]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.1035 v7.3.1035
authorBram Moolenaar <Bram@vim.org>
Tue, 28 May 2013 20:31:46 +0000 (22:31 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 28 May 2013 20:31:46 +0000 (22:31 +0200)
Problem:    Compiler warning on 64 bit windows.
Solution:   Add type cast. (Mike Williams)

src/if_py_both.h
src/version.c

index 5ecc239611fcd374f87b4e5bf4cad6bac6e25618..c02cce3516b3da1744cef27f8ddc7cd7fce984d4 100644 (file)
@@ -3547,7 +3547,7 @@ run_do(const char *cmd, void *arg UNUSED
     int                status;
     PyObject   *pyfunc, *pymain;
 
-    if (u_save(RangeStart - 1, RangeEnd + 1) != OK)
+    if (u_save((linenr_T)RangeStart - 1, (linenr_T)RangeEnd + 1) != OK)
     {
        EMSG(_("cannot save undo information"));
        return;
index 72ad14f98de640dfef3592ebc4644ada5a85ed66..f59afcf6db333dab504b37a54908dd7c42017d2c 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1035,
 /**/
     1034,
 /**/