summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-04 22:09:48 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-04 22:09:48 +0100
commita8343c1808f2f268282f3030ce4adaf22e8ade54 (patch)
treecf853bc590793f2dd2bec4b62ff08f9efa30c80a /src/vim.h
parent3fc3e14282c182c046d1335f3d576bc0eeb605c5 (diff)
downloadvim-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vim.h b/src/vim.h
index 18610f5c4..02f303637 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -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