0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 7.4.1260

Problem:    The channel feature doesn't work on Win32 GUI.
Solution:   Use WSAGetLastError(). (Ken Takata)
This commit is contained in:
Bram Moolenaar
2016-02-04 22:09:48 +01:00
parent 3fc3e14282
commit a8343c1808
4 changed files with 17 additions and 4 deletions

View File

@@ -6,13 +6,13 @@ if !has('channel')
endif
" This test requires the Python command to run the test server.
" This most likely only works on Unix and Windows console.
" This most likely only works on Unix and Windows.
if has('unix')
" We also need the pkill command to make sure the server can be stopped.
if !executable('python') || !executable('pkill')
finish
endif
elseif has('win32') && !has('gui_win32')
elseif has('win32')
" Use Python Launcher for Windows (py.exe).
if !executable('py')
finish