| To: vim_dev@googlegroups.com |
| Subject: Patch 7.4.206 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.4.206 |
| Problem: Compiler warnings on 64 bit Windows. |
| Solution: Add type casts. (Mike Williams) |
| Files: src/gui_w48.c, src/os_mswin.c |
| |
| |
| |
| |
| |
| *** 3078,3084 **** |
| if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| { |
| int len; |
| ! acp_to_enc(lf.lfFaceName, strlen(lf.lfFaceName), |
| (char_u **)&font_name, &len); |
| } |
| #endif |
| --- 3078,3084 ---- |
| if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| { |
| int len; |
| ! acp_to_enc(lf.lfFaceName, (int)strlen(lf.lfFaceName), |
| (char_u **)&font_name, &len); |
| } |
| #endif |
| |
| |
| |
| *** 2884,2890 **** |
| if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| { |
| int len; |
| ! enc_to_acp(name, strlen(name), &acpname, &len); |
| name = acpname; |
| } |
| #endif |
| --- 2884,2890 ---- |
| if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| { |
| int len; |
| ! enc_to_acp(name, (int)strlen(name), &acpname, &len); |
| name = acpname; |
| } |
| #endif |
| |
| |
| |
| *** 740,741 **** |
| --- 740,743 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 206, |
| /**/ |
| |
| -- |
| We apologise again for the fault in the subtitles. Those responsible for |
| sacking the people who have just been sacked have been sacked. |
| "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ an exciting new programming language -- http://www.Zimbu.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |