|
Karsten Hopp |
32ab1e |
To: vim-dev@vim.org
|
|
Karsten Hopp |
32ab1e |
Subject: patch 7.0.197 (extra)
|
|
Karsten Hopp |
32ab1e |
Fcc: outbox
|
|
Karsten Hopp |
32ab1e |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
32ab1e |
Mime-Version: 1.0
|
|
Karsten Hopp |
32ab1e |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
32ab1e |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
32ab1e |
------------
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
Patch 7.0.197 (extra)
|
|
Karsten Hopp |
32ab1e |
Problem: Win32: Compiling with EXITFREE doesn't work.
|
|
Karsten Hopp |
32ab1e |
Solution: Adjust a few #ifdefs. (Alexei Alexandrof)
|
|
Karsten Hopp |
32ab1e |
Files: src/misc2.c, src/os_mswin.c
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
*** ../vim-7.0.196/src/misc2.c Tue Oct 3 14:43:31 2006
|
|
Karsten Hopp |
32ab1e |
--- src/misc2.c Wed Feb 7 05:00:13 2007
|
|
Karsten Hopp |
32ab1e |
***************
|
|
Karsten Hopp |
32ab1e |
*** 1075,1081 ****
|
|
Karsten Hopp |
32ab1e |
ResetRedobuff();
|
|
Karsten Hopp |
32ab1e |
ResetRedobuff();
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
! #ifdef FEAT_CLIENTSERVER
|
|
Karsten Hopp |
32ab1e |
vim_free(serverDelayedStartName);
|
|
Karsten Hopp |
32ab1e |
#endif
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
--- 1075,1081 ----
|
|
Karsten Hopp |
32ab1e |
ResetRedobuff();
|
|
Karsten Hopp |
32ab1e |
ResetRedobuff();
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
! #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
|
|
Karsten Hopp |
32ab1e |
vim_free(serverDelayedStartName);
|
|
Karsten Hopp |
32ab1e |
#endif
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
*** ../vim-7.0.196/src/os_mswin.c Thu Apr 27 01:53:04 2006
|
|
Karsten Hopp |
32ab1e |
--- src/os_mswin.c Mon Feb 5 04:46:08 2007
|
|
Karsten Hopp |
32ab1e |
***************
|
|
Karsten Hopp |
32ab1e |
*** 239,244 ****
|
|
Karsten Hopp |
32ab1e |
--- 239,249 ----
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
if (gui.in_use)
|
|
Karsten Hopp |
32ab1e |
gui_exit(r);
|
|
Karsten Hopp |
32ab1e |
+
|
|
Karsten Hopp |
32ab1e |
+ #ifdef EXITFREE
|
|
Karsten Hopp |
32ab1e |
+ free_all_mem();
|
|
Karsten Hopp |
32ab1e |
+ #endif
|
|
Karsten Hopp |
32ab1e |
+
|
|
Karsten Hopp |
32ab1e |
exit(r);
|
|
Karsten Hopp |
32ab1e |
}
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
*** ../vim-7.0.196/src/version.c Tue Feb 20 00:17:01 2007
|
|
Karsten Hopp |
32ab1e |
--- src/version.c Tue Feb 20 02:59:44 2007
|
|
Karsten Hopp |
32ab1e |
***************
|
|
Karsten Hopp |
32ab1e |
*** 668,669 ****
|
|
Karsten Hopp |
32ab1e |
--- 668,671 ----
|
|
Karsten Hopp |
32ab1e |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
32ab1e |
+ /**/
|
|
Karsten Hopp |
32ab1e |
+ 197,
|
|
Karsten Hopp |
32ab1e |
/**/
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
--
|
|
Karsten Hopp |
32ab1e |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
32ab1e |
154. You fondle your mouse.
|
|
Karsten Hopp |
32ab1e |
|
|
Karsten Hopp |
32ab1e |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
32ab1e |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
32ab1e |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
32ab1e |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|