]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.229
- new
[packages/vim.git] / 7.3.229
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.229
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.229
11 Problem:    Using fork() makes gvim crash on Mac when build with
12             CoreFoundation.
13 Solution:   Disallow fork() when __APPLE__ is defined. (Hisashi T Fujinaka)
14 Files:      src/gui.c
15
16
17 *** ../mercurial/vim73/src/gui.c        2011-05-10 16:41:13.000000000 +0200
18 --- src/gui.c   2011-06-20 00:51:21.000000000 +0200
19 ***************
20 *** 59,65 ****
21   gui_start()
22   {
23       char_u    *old_term;
24 ! #if defined(UNIX) && !defined(__BEOS__) && !defined(MACOS_X)
25   # define MAY_FORK
26       int               dofork = TRUE;
27   #endif
28 --- 59,66 ----
29   gui_start()
30   {
31       char_u    *old_term;
32 ! #if defined(UNIX) && !defined(__BEOS__) && !defined(MACOS_X) \
33 !       && !defined(__APPLE__)
34   # define MAY_FORK
35       int               dofork = TRUE;
36   #endif
37 *** ../vim-7.3.228/src/version.c        2011-06-20 00:45:55.000000000 +0200
38 --- src/version.c       2011-06-20 00:50:42.000000000 +0200
39 ***************
40 *** 711,712 ****
41 --- 711,714 ----
42   {   /* Add new patch number below this line */
43 + /**/
44 +     229,
45   /**/
46
47 -- 
48 hundred-and-one symptoms of being an internet addict:
49 198. You read all the quotes at Netaholics Anonymous and keep thinking
50      "What's wrong with that?"
51
52  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
53 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
55  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.037061 seconds and 3 git commands to generate.