]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.145
- initial import
[packages/vim.git] / 6.2.145
CommitLineData
eb0ac1ae
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.145
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 6.2.145 (after 6.2.139)
11Problem: Undefining "bool" doesn't work for older systems. (Wojtek Pilorz)
12Solution: Only undefine "bool" on Mac OS.
13Files: src/vim.h
14
15
16*** ../vim-6.2.144/src/vim.h Sun Nov 2 15:37:11 2003
17--- src/vim.h Wed Nov 5 10:26:15 2003
18***************
19*** 1743,1749 ****
20 # ifdef instr
21 # undef instr
22 # endif
23! # ifdef bool
24 # undef bool
25 # endif
26
27--- 1743,1750 ----
28 # ifdef instr
29 # undef instr
30 # endif
31! /* bool causes trouble on MACOS but is required on a few other systems */
32! # if defined(bool) && defined(MACOS)
33 # undef bool
34 # endif
35
36*** ../vim-6.2.144/src/version.c Sun Nov 2 17:50:31 2003
37--- src/version.c Wed Nov 5 10:31:30 2003
38***************
39*** 639,640 ****
40--- 639,642 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 145,
44 /**/
45
46--
47This message contains 78% recycled characters.
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// Creator of Vim - Vi IMproved -- http://www.Vim.org \\\
51\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
52 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.029688 seconds and 4 git commands to generate.