1
0
forked from aniani/vim

updated for version 7.3.1035

Problem:    Compiler warning on 64 bit windows.
Solution:   Add type cast. (Mike Williams)
This commit is contained in:
Bram Moolenaar
2013-05-28 22:31:46 +02:00
parent 51a2983904
commit 4ac6676cee
2 changed files with 3 additions and 1 deletions

View File

@@ -3547,7 +3547,7 @@ run_do(const char *cmd, void *arg UNUSED
int status; int status;
PyObject *pyfunc, *pymain; 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")); EMSG(_("cannot save undo information"));
return; return;

View File

@@ -728,6 +728,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 */
/**/
1035,
/**/ /**/
1034, 1034,
/**/ /**/