]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.244
- new
[packages/vim.git] / 7.3.244
CommitLineData
a2e11672
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.244
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.244
11Problem: MS-Windows: Build problem with old compiler. (John Beckett)
12Solution: Only use HandleToLong() when available. (Mike Williams)
13Files: src/gui_w32.c
14
15
16*** ../vim-7.3.243/src/gui_w32.c 2011-05-25 21:18:02.000000000 +0200
17--- src/gui_w32.c 2011-07-07 17:42:36.000000000 +0200
18***************
19*** 1574,1579 ****
20--- 1574,1583 ----
21 #endif
22
23 #ifdef FEAT_EVAL
24+ # if _MSC_VER < 1400
25+ /* HandleToLong() only exists in compilers that can do 64 bit builds */
26+ # define HandleToLong(h) ((long)(h))
27+ # endif
28 /* set the v:windowid variable */
29 set_vim_var_nr(VV_WINDOWID, HandleToLong(s_hwnd));
30 #endif
31*** ../vim-7.3.243/src/version.c 2011-07-07 17:36:52.000000000 +0200
32--- src/version.c 2011-07-07 17:43:21.000000000 +0200
33***************
34*** 711,712 ****
35--- 711,714 ----
36 { /* Add new patch number below this line */
37+ /**/
38+ 244,
39 /**/
40
41--
42hundred-and-one symptoms of being an internet addict:
43262. Your computer has it's own phone line - but your daughter doesn't.
44
45 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
46/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
47\\\ an exciting new programming language -- http://www.Zimbu.org ///
48 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.04406 seconds and 4 git commands to generate.