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.484 < prev    next >
Encoding:
Internet Message Format  |  2014-10-21  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.484
  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.484 (after 7.4.483)
  11. Problem:    Compiler warning on MS-Windows. (Ken Takata)
  12. Solution:   Add type cast.
  13. Files:        src/getchar.c
  14.  
  15.  
  16. *** ../vim-7.4.483/src/getchar.c    2014-10-21 16:22:01.403175226 +0200
  17. --- src/getchar.c    2014-10-21 18:12:33.170273428 +0200
  18. ***************
  19. *** 4530,4536 ****
  20.           if (q != NULL)
  21.           {
  22.           vim_unescape_csi(q);
  23. !         qlen = STRLEN(q);
  24.           vim_free(q);
  25.           }
  26.       }
  27. --- 4530,4536 ----
  28.           if (q != NULL)
  29.           {
  30.           vim_unescape_csi(q);
  31. !         qlen = (int)STRLEN(q);
  32.           vim_free(q);
  33.           }
  34.       }
  35. *** ../vim-7.4.483/src/version.c    2014-10-21 16:22:01.407175226 +0200
  36. --- src/version.c    2014-10-21 18:14:13.410273647 +0200
  37. ***************
  38. *** 743,744 ****
  39. --- 743,746 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     484,
  43.   /**/
  44.  
  45. -- 
  46. "My particular problem is with registry entries, which seem to just
  47. accumulate like plastic coffee cups..."           -- Paul Moore
  48.  
  49.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  50. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  51. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  52.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  53.