]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.322
- new
[packages/vim.git] / 7.3.322
CommitLineData
59ab3540
AM
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.322
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.322
11Problem: #ifdef for PDP_RETVAL doesn't work, INT_PTR can be a typedef.
12Solution: Check the MSC version and 64 bit flags. (Sergiu Dotenco)
13Files: src/os_mswin.c
14
15
16*** ../vim-7.3.321/src/os_mswin.c 2011-08-10 17:07:56.000000000 +0200
17--- src/os_mswin.c 2011-09-21 20:09:05.000000000 +0200
18***************
19*** 1781,1787 ****
20 }
21
22 /* Attempt to make this work for old and new compilers */
23! #if !defined(_MSC_VER) || (_MSC_VER < 1300) || !defined(INT_PTR)
24 # define PDP_RETVAL BOOL
25 #else
26 # define PDP_RETVAL INT_PTR
27--- 1781,1787 ----
28 }
29
30 /* Attempt to make this work for old and new compilers */
31! #if !defined(_WIN64) && (!defined(_MSC_VER) || _MSC_VER < 1300)
32 # define PDP_RETVAL BOOL
33 #else
34 # define PDP_RETVAL INT_PTR
35*** ../vim-7.3.321/src/version.c 2011-09-21 19:50:00.000000000 +0200
36--- src/version.c 2011-09-21 20:08:29.000000000 +0200
37***************
38*** 711,712 ****
39--- 711,714 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 322,
43 /**/
44
45--
46Don't Panic!
47 -- The Hitchhiker's Guide to the Galaxy
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 ///
This page took 0.068599 seconds and 4 git commands to generate.