diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-04 22:09:48 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-04 22:09:48 +0100 |
commit | a8343c1808f2f268282f3030ce4adaf22e8ade54 (patch) | |
tree | cf853bc590793f2dd2bec4b62ff08f9efa30c80a /src/vim.h | |
parent | 3fc3e14282c182c046d1335f3d576bc0eeb605c5 (diff) | |
download | vim-git-a8343c1808f2f268282f3030ce4adaf22e8ade54.tar.gz |
patch 7.4.1260v7.4.1260
Problem: The channel feature doesn't work on Win32 GUI.
Solution: Use WSAGetLastError(). (Ken Takata)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |