comparison src/gui_w48.c @ 8031:ece323e2b57f v7.4.1310

commit https://github.com/vim/vim/commit/6463ca229cb9412581419497924c85fcbfc854ab Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 13 17:04:46 2016 +0100 patch 7.4.1310 Problem: Jobs don't open a channel. Solution: Create pipes and add them to the channel. Add ch_logfile(). Only Unix for now.
author Christian Brabandt <cb@256bit.org>
date Sat, 13 Feb 2016 17:15:05 +0100
parents bcef391c101c
children 9dea1571b352
comparison
equal deleted inserted replaced
8030:05f57db9d8da 8031:ece323e2b57f
1778 #endif 1778 #endif
1779 1779
1780 #ifdef FEAT_CHANNEL 1780 #ifdef FEAT_CHANNEL
1781 if (msg.message == WM_NETBEANS) 1781 if (msg.message == WM_NETBEANS)
1782 { 1782 {
1783 int channel_idx = channel_socket2idx((sock_T)msg.wParam); 1783 int channel_idx = channel_fd2idx((sock_T)msg.wParam);
1784 1784
1785 if (channel_idx >= 0) 1785 if (channel_idx >= 0)
1786 channel_read(channel_idx); 1786 channel_read(channel_idx, FALSE, "process_message");
1787 return; 1787 return;
1788 } 1788 }
1789 #endif 1789 #endif
1790 1790
1791 #ifdef FEAT_SNIFF 1791 #ifdef FEAT_SNIFF