Hi, 2016/2/17 Wed 18:00:10 UTC+9 Ken Takata wrote: > I don't think the following hunk should be applied: > > --- a/src/os_win32.c > +++ b/src/os_win32.c > @@ -5175,8 +5175,10 @@ mch_stop_job(job_T *job, char_u *how) > return TerminateProcess(job->jv_proc_info.hProcess, 0) ? OK : FAIL; > } > > +#ifndef __MINGW32__ > if (!AttachConsole(job->jv_proc_info.dwProcessId)) > return FAIL; > +#endif > ret = GenerateConsoleCtrlEvent( > ctrl_c ? CTRL_C_EVENT : CTRL_BREAK_EVENT, > job->jv_proc_info.dwProcessId) > > > MinGW is too old now. We should use MinGW-w64 (MSYS2) instead. > MinGW-w64 is available on the following path on AppVeyor:
Or, how about setting WINVER to 0x0501? (Currently it is 0x0500.) Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
