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.206 < prev    next >
Encoding:
Internet Message Format  |  2014-03-18  |  2.2 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.206
  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.206
  11. Problem:    Compiler warnings on 64 bit Windows.
  12. Solution:   Add type casts. (Mike Williams)
  13. Files:        src/gui_w48.c, src/os_mswin.c
  14.  
  15.  
  16. *** ../vim-7.4.205/src/gui_w48.c    2014-03-12 19:24:32.504933166 +0100
  17. --- src/gui_w48.c    2014-03-19 12:32:15.129821412 +0100
  18. ***************
  19. *** 3078,3084 ****
  20.       if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
  21.       {
  22.       int    len;
  23. !     acp_to_enc(lf.lfFaceName, strlen(lf.lfFaceName),
  24.                           (char_u **)&font_name, &len);
  25.       }
  26.   #endif
  27. --- 3078,3084 ----
  28.       if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
  29.       {
  30.       int    len;
  31. !     acp_to_enc(lf.lfFaceName, (int)strlen(lf.lfFaceName),
  32.                           (char_u **)&font_name, &len);
  33.       }
  34.   #endif
  35. *** ../vim-7.4.205/src/os_mswin.c    2014-03-12 19:24:32.504933166 +0100
  36. --- src/os_mswin.c    2014-03-19 12:32:15.129821412 +0100
  37. ***************
  38. *** 2884,2890 ****
  39.       if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
  40.       {
  41.       int    len;
  42. !     enc_to_acp(name, strlen(name), &acpname, &len);
  43.       name = acpname;
  44.       }
  45.   #endif
  46. --- 2884,2890 ----
  47.       if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
  48.       {
  49.       int    len;
  50. !     enc_to_acp(name, (int)strlen(name), &acpname, &len);
  51.       name = acpname;
  52.       }
  53.   #endif
  54. *** ../vim-7.4.205/src/version.c    2014-03-12 21:28:09.485046816 +0100
  55. --- src/version.c    2014-03-19 12:33:16.253822349 +0100
  56. ***************
  57. *** 740,741 ****
  58. --- 740,743 ----
  59.   {   /* Add new patch number below this line */
  60. + /**/
  61. +     206,
  62.   /**/
  63.  
  64. -- 
  65. We apologise again for the fault in the subtitles.  Those responsible for
  66. sacking the people who have just been sacked have been sacked.
  67.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  68.  
  69.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  70. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  71. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  72.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  73.