comparison src/vim.h @ 8222:4f0677020a43 v7.4.1404

commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 23 19:34:01 2016 +0100 patch 7.4.1404 Problem: ch_read() doesn't time out on MS-Windows. Solution: Instead of WM_NETBEANS use select(). (Yukihiro Nakadaira)
author Christian Brabandt <cb@256bit.org>
date Tue, 23 Feb 2016 19:45:05 +0100
parents 05b88224cea1
children 74b15ed0a259
comparison
equal deleted inserted replaced
8221:5def36f799a2 8222:4f0677020a43
1895 1895
1896 # ifdef FEAT_GUI_W32 1896 # ifdef FEAT_GUI_W32
1897 # ifdef FEAT_OLE 1897 # ifdef FEAT_OLE
1898 # define WM_OLE (WM_APP+0) 1898 # define WM_OLE (WM_APP+0)
1899 # endif 1899 # endif
1900 # ifdef FEAT_CHANNEL
1901 /* message for channel socket event */
1902 # define WM_NETBEANS (WM_APP+1)
1903 # endif
1904 # endif 1900 # endif
1905 1901
1906 /* Info about selected text */ 1902 /* Info about selected text */
1907 typedef struct VimClipboard 1903 typedef struct VimClipboard
1908 { 1904 {