|
Karsten Hopp |
921e4a |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
921e4a |
Subject: Patch 7.3.229
|
|
Karsten Hopp |
921e4a |
Fcc: outbox
|
|
Karsten Hopp |
921e4a |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
921e4a |
Mime-Version: 1.0
|
|
Karsten Hopp |
921e4a |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
921e4a |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
921e4a |
------------
|
|
Karsten Hopp |
921e4a |
|
|
Karsten Hopp |
921e4a |
Patch 7.3.229
|
|
Karsten Hopp |
921e4a |
Problem: Using fork() makes gvim crash on Mac when build with
|
|
Karsten Hopp |
921e4a |
CoreFoundation.
|
|
Karsten Hopp |
921e4a |
Solution: Disallow fork() when __APPLE__ is defined. (Hisashi T Fujinaka)
|
|
Karsten Hopp |
921e4a |
Files: src/gui.c
|
|
Karsten Hopp |
921e4a |
|
|
Karsten Hopp |
921e4a |
|
|
Karsten Hopp |
921e4a |
*** ../mercurial/vim73/src/gui.c 2011-05-10 16:41:13.000000000 +0200
|
|
Karsten Hopp |
921e4a |
--- src/gui.c 2011-06-20 00:51:21.000000000 +0200
|
|
Karsten Hopp |
921e4a |
***************
|
|
Karsten Hopp |
921e4a |
*** 59,65 ****
|
|
Karsten Hopp |
921e4a |
gui_start()
|
|
Karsten Hopp |
921e4a |
{
|
|
Karsten Hopp |
921e4a |
char_u *old_term;
|
|
Karsten Hopp |
921e4a |
! #if defined(UNIX) && !defined(__BEOS__) && !defined(MACOS_X)
|
|
Karsten Hopp |
921e4a |
# define MAY_FORK
|
|
Karsten Hopp |
921e4a |
int dofork = TRUE;
|
|
Karsten Hopp |
921e4a |
#endif
|
|
Karsten Hopp |
921e4a |
--- 59,66 ----
|
|
Karsten Hopp |
921e4a |
gui_start()
|
|
Karsten Hopp |
921e4a |
{
|
|
Karsten Hopp |
921e4a |
char_u *old_term;
|
|
Karsten Hopp |
921e4a |
! #if defined(UNIX) && !defined(__BEOS__) && !defined(MACOS_X) \
|
|
Karsten Hopp |
921e4a |
! && !defined(__APPLE__)
|
|
Karsten Hopp |
921e4a |
# define MAY_FORK
|
|
Karsten Hopp |
921e4a |
int dofork = TRUE;
|
|
Karsten Hopp |
921e4a |
#endif
|
|
Karsten Hopp |
921e4a |
*** ../vim-7.3.228/src/version.c 2011-06-20 00:45:55.000000000 +0200
|
|
Karsten Hopp |
921e4a |
--- src/version.c 2011-06-20 00:50:42.000000000 +0200
|
|
Karsten Hopp |
921e4a |
***************
|
|
Karsten Hopp |
921e4a |
*** 711,712 ****
|
|
Karsten Hopp |
921e4a |
--- 711,714 ----
|
|
Karsten Hopp |
921e4a |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
921e4a |
+ /**/
|
|
Karsten Hopp |
921e4a |
+ 229,
|
|
Karsten Hopp |
921e4a |
/**/
|
|
Karsten Hopp |
921e4a |
|
|
Karsten Hopp |
921e4a |
--
|
|
Karsten Hopp |
921e4a |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
921e4a |
198. You read all the quotes at Netaholics Anonymous and keep thinking
|
|
Karsten Hopp |
921e4a |
"What's wrong with that?"
|
|
Karsten Hopp |
921e4a |
|
|
Karsten Hopp |
921e4a |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
921e4a |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
921e4a |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
921e4a |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|