|
Karsten Hopp |
1005a5 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
1005a5 |
Subject: Patch 7.3.1035
|
|
Karsten Hopp |
1005a5 |
Fcc: outbox
|
|
Karsten Hopp |
1005a5 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
1005a5 |
Mime-Version: 1.0
|
|
Karsten Hopp |
1005a5 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
1005a5 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
1005a5 |
------------
|
|
Karsten Hopp |
1005a5 |
|
|
Karsten Hopp |
1005a5 |
Patch 7.3.1035
|
|
Karsten Hopp |
1005a5 |
Problem: Compiler warning on 64 bit windows.
|
|
Karsten Hopp |
1005a5 |
Solution: Add type cast. (Mike Williams)
|
|
Karsten Hopp |
1005a5 |
Files: src/if_py_both.h
|
|
Karsten Hopp |
1005a5 |
|
|
Karsten Hopp |
1005a5 |
|
|
Karsten Hopp |
1005a5 |
*** ../vim-7.3.1034/src/if_py_both.h 2013-05-24 18:58:39.000000000 +0200
|
|
Karsten Hopp |
1005a5 |
--- src/if_py_both.h 2013-05-28 19:19:50.000000000 +0200
|
|
Karsten Hopp |
1005a5 |
***************
|
|
Karsten Hopp |
1005a5 |
*** 3547,3553 ****
|
|
Karsten Hopp |
1005a5 |
int status;
|
|
Karsten Hopp |
1005a5 |
PyObject *pyfunc, *pymain;
|
|
Karsten Hopp |
1005a5 |
|
|
Karsten Hopp |
1005a5 |
! if (u_save(RangeStart - 1, RangeEnd + 1) != OK)
|
|
Karsten Hopp |
1005a5 |
{
|
|
Karsten Hopp |
1005a5 |
EMSG(_("cannot save undo information"));
|
|
Karsten Hopp |
1005a5 |
return;
|
|
Karsten Hopp |
1005a5 |
--- 3547,3553 ----
|
|
Karsten Hopp |
1005a5 |
int status;
|
|
Karsten Hopp |
1005a5 |
PyObject *pyfunc, *pymain;
|
|
Karsten Hopp |
1005a5 |
|
|
Karsten Hopp |
1005a5 |
! if (u_save((linenr_T)RangeStart - 1, (linenr_T)RangeEnd + 1) != OK)
|
|
Karsten Hopp |
1005a5 |
{
|
|
Karsten Hopp |
1005a5 |
EMSG(_("cannot save undo information"));
|
|
Karsten Hopp |
1005a5 |
return;
|
|
Karsten Hopp |
1005a5 |
*** ../vim-7.3.1034/src/version.c 2013-05-28 22:30:22.000000000 +0200
|
|
Karsten Hopp |
1005a5 |
--- src/version.c 2013-05-28 22:31:18.000000000 +0200
|
|
Karsten Hopp |
1005a5 |
***************
|
|
Karsten Hopp |
1005a5 |
*** 730,731 ****
|
|
Karsten Hopp |
1005a5 |
--- 730,733 ----
|
|
Karsten Hopp |
1005a5 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
1005a5 |
+ /**/
|
|
Karsten Hopp |
1005a5 |
+ 1035,
|
|
Karsten Hopp |
1005a5 |
/**/
|
|
Karsten Hopp |
1005a5 |
|
|
Karsten Hopp |
1005a5 |
--
|
|
Karsten Hopp |
1005a5 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
1005a5 |
8. You spend half of the plane trip with your laptop on your lap...and your
|
|
Karsten Hopp |
1005a5 |
child in the overhead compartment.
|
|
Karsten Hopp |
1005a5 |
|
|
Karsten Hopp |
1005a5 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
1005a5 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
1005a5 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
1005a5 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|