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.4 / 7.4.023 < prev    next >
Encoding:
Internet Message Format  |  2013-09-06  |  1.7 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.023
  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.4.023
  11. Problem:    Compiler warning on 64 bit windows.
  12. Solution:   Add type cast. (Mike Williams)
  13. Files:        src/edit.c
  14.  
  15.  
  16. *** ../vim-7.4.022/src/edit.c    2013-09-05 13:50:49.000000000 +0200
  17. --- src/edit.c    2013-09-06 17:32:55.000000000 +0200
  18. ***************
  19. *** 5189,5195 ****
  20.           mb_ptr_back(line, p);
  21.           while (vim_isfilec(PTR2CHAR(p)) && p >= line)
  22.           mb_ptr_back(line, p);
  23. !         startcol = p - line;
  24.   
  25.           compl_col += ++startcol;
  26.           compl_length = (int)curs_col - startcol;
  27. --- 5189,5195 ----
  28.           mb_ptr_back(line, p);
  29.           while (vim_isfilec(PTR2CHAR(p)) && p >= line)
  30.           mb_ptr_back(line, p);
  31. !         startcol = (int)(p - line);
  32.   
  33.           compl_col += ++startcol;
  34.           compl_length = (int)curs_col - startcol;
  35. *** ../vim-7.4.022/src/version.c    2013-09-05 21:41:35.000000000 +0200
  36. --- src/version.c    2013-09-06 17:33:41.000000000 +0200
  37. ***************
  38. *** 740,741 ****
  39. --- 740,743 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     23,
  43.   /**/
  44.  
  45. -- 
  46. Wizards had always known that the act of observation changed the thing that
  47. was observed, and sometimes forgot that it also changed the observer too.
  48.             Terry Pratchett  -  Interesting times
  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.