|
|
3ef2ca |
To: vim_dev@googlegroups.com
|
|
|
3ef2ca |
Subject: Patch 7.4.132
|
|
|
3ef2ca |
Fcc: outbox
|
|
|
3ef2ca |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
3ef2ca |
Mime-Version: 1.0
|
|
|
3ef2ca |
Content-Type: text/plain; charset=UTF-8
|
|
|
3ef2ca |
Content-Transfer-Encoding: 8bit
|
|
|
3ef2ca |
------------
|
|
|
3ef2ca |
|
|
|
3ef2ca |
Patch 7.4.132 (after 7.4.122)
|
|
|
3ef2ca |
Problem: Win32: flags and inherit_handles arguments mixed up.
|
|
|
3ef2ca |
Solution: Swap the argument. (cs86661)
|
|
|
3ef2ca |
Files: src/os_win32.c
|
|
|
3ef2ca |
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.131/src/os_win32.c 2013-12-12 20:25:39.000000000 +0100
|
|
|
3ef2ca |
--- src/os_win32.c 2014-01-05 13:24:15.000000000 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 3831,3838 ****
|
|
|
3ef2ca |
static BOOL
|
|
|
3ef2ca |
vim_create_process(
|
|
|
3ef2ca |
char *cmd,
|
|
|
3ef2ca |
- DWORD flags,
|
|
|
3ef2ca |
BOOL inherit_handles,
|
|
|
3ef2ca |
STARTUPINFO *si,
|
|
|
3ef2ca |
PROCESS_INFORMATION *pi)
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
--- 3831,3838 ----
|
|
|
3ef2ca |
static BOOL
|
|
|
3ef2ca |
vim_create_process(
|
|
|
3ef2ca |
char *cmd,
|
|
|
3ef2ca |
BOOL inherit_handles,
|
|
|
3ef2ca |
+ DWORD flags,
|
|
|
3ef2ca |
STARTUPINFO *si,
|
|
|
3ef2ca |
PROCESS_INFORMATION *pi)
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
*** ../vim-7.4.131/src/version.c 2013-12-14 13:06:13.000000000 +0100
|
|
|
3ef2ca |
--- src/version.c 2014-01-05 13:27:25.000000000 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 740,741 ****
|
|
|
3ef2ca |
--- 740,743 ----
|
|
|
3ef2ca |
{ /* Add new patch number below this line */
|
|
|
3ef2ca |
+ /**/
|
|
|
3ef2ca |
+ 132,
|
|
|
3ef2ca |
/**/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--
|
|
|
3ef2ca |
hundred-and-one symptoms of being an internet addict:
|
|
|
3ef2ca |
93. New mail alarm on your palmtop annoys other churchgoers.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
3ef2ca |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
3ef2ca |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
3ef2ca |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|