diff options
Diffstat (limited to 'data/vim/patches/8.1.0900')
-rw-r--r-- | data/vim/patches/8.1.0900 | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/data/vim/patches/8.1.0900 b/data/vim/patches/8.1.0900 new file mode 100644 index 000000000..118f8a43d --- /dev/null +++ b/data/vim/patches/8.1.0900 @@ -0,0 +1,59 @@ +To: vim_dev@googlegroups.com +Subject: Patch 8.1.0900 +Fcc: outbox +From: Bram Moolenaar <Bram@moolenaar.net> +Mime-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +------------ + +Patch 8.1.0900 +Problem: ConPTY many crash with 32-bit build. +Solution: Fix function declarations. (Ken Takata, closes #3943) +Files: src/terminal.c + + +*** ../vim-8.1.0899/src/terminal.c 2019-02-08 12:46:03.588784187 +0100 +--- src/terminal.c 2019-02-12 21:45:18.262140885 +0100 +*************** +*** 5489,5497 **** + HRESULT (WINAPI *pCreatePseudoConsole)(COORD, HANDLE, HANDLE, DWORD, HPCON*); + HRESULT (WINAPI *pResizePseudoConsole)(HPCON, COORD); + HRESULT (WINAPI *pClosePseudoConsole)(HPCON); +! BOOL (*pInitializeProcThreadAttributeList)(LPPROC_THREAD_ATTRIBUTE_LIST, DWORD, DWORD, PSIZE_T); +! BOOL (*pUpdateProcThreadAttribute)(LPPROC_THREAD_ATTRIBUTE_LIST, DWORD, DWORD_PTR, PVOID, SIZE_T, PVOID, PSIZE_T); +! void (*pDeleteProcThreadAttributeList)(LPPROC_THREAD_ATTRIBUTE_LIST); + + static int + dyn_conpty_init(int verbose) +--- 5489,5497 ---- + HRESULT (WINAPI *pCreatePseudoConsole)(COORD, HANDLE, HANDLE, DWORD, HPCON*); + HRESULT (WINAPI *pResizePseudoConsole)(HPCON, COORD); + HRESULT (WINAPI *pClosePseudoConsole)(HPCON); +! BOOL (WINAPI *pInitializeProcThreadAttributeList)(LPPROC_THREAD_ATTRIBUTE_LIST, DWORD, DWORD, PSIZE_T); +! BOOL (WINAPI *pUpdateProcThreadAttribute)(LPPROC_THREAD_ATTRIBUTE_LIST, DWORD, DWORD_PTR, PVOID, SIZE_T, PVOID, PSIZE_T); +! void (WINAPI *pDeleteProcThreadAttributeList)(LPPROC_THREAD_ATTRIBUTE_LIST); + + static int + dyn_conpty_init(int verbose) +*** ../vim-8.1.0899/src/version.c 2019-02-12 20:48:06.646810620 +0100 +--- src/version.c 2019-02-12 21:45:12.654194868 +0100 +*************** +*** 785,786 **** +--- 785,788 ---- + { /* Add new patch number below this line */ ++ /**/ ++ 900, + /**/ + +-- +The Characters and incidents portrayed and the names used are fictitious and +any similarity to the names, characters, or history of any person is entirely +accidental and unintentional. + Signed RICHARD M. NIXON + "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD + + /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ +/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ +\\\ an exciting new programming language -- http://www.Zimbu.org /// + \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |