]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.145
- use new bonobo patch (20040115)
[packages/vim.git] / 6.2.145
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.145
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 6.2.145 (after 6.2.139)
11 Problem:    Undefining "bool" doesn't work for older systems. (Wojtek Pilorz)
12 Solution:   Only undefine "bool" on Mac OS.
13 Files:      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 -- 
47 This 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.042225 seconds and 3 git commands to generate.