0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -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

@@ -519,7 +519,7 @@ typedef unsigned long u8char_T; /* long should be 32 bits or more */
# ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
# define HAVE_POLL
# elif defined(WIN32) && !defined(FEAT_GUI_W32)
# elif defined(WIN32)
# define HAVE_SELECT
# else
# ifdef HAVE_POLL_H