home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.3 / 7.3.1035 < prev    next >
Encoding:
Internet Message Format  |  2013-05-27  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.1035
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.1035
  11. Problem:    Compiler warning on 64 bit windows.
  12. Solution:   Add type cast. (Mike Williams)
  13. Files:        src/if_py_both.h
  14.  
  15.  
  16. *** ../vim-7.3.1034/src/if_py_both.h    2013-05-24 18:58:39.000000000 +0200
  17. --- src/if_py_both.h    2013-05-28 19:19:50.000000000 +0200
  18. ***************
  19. *** 3547,3553 ****
  20.       int        status;
  21.       PyObject    *pyfunc, *pymain;
  22.   
  23. !     if (u_save(RangeStart - 1, RangeEnd + 1) != OK)
  24.       {
  25.       EMSG(_("cannot save undo information"));
  26.       return;
  27. --- 3547,3553 ----
  28.       int        status;
  29.       PyObject    *pyfunc, *pymain;
  30.   
  31. !     if (u_save((linenr_T)RangeStart - 1, (linenr_T)RangeEnd + 1) != OK)
  32.       {
  33.       EMSG(_("cannot save undo information"));
  34.       return;
  35. *** ../vim-7.3.1034/src/version.c    2013-05-28 22:30:22.000000000 +0200
  36. --- src/version.c    2013-05-28 22:31:18.000000000 +0200
  37. ***************
  38. *** 730,731 ****
  39. --- 730,733 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     1035,
  43.   /**/
  44.  
  45. -- 
  46. hundred-and-one symptoms of being an internet addict:
  47. 8. You spend half of the plane trip with your laptop on your lap...and your
  48.    child in the overhead compartment.
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  52. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  53.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  54.