Merge remote-tracking branch 'vim/master'

This commit is contained in:
Kazuki Sakamoto
2016-11-11 22:08:28 -08:00
3 changed files with 17 additions and 2 deletions
+6
View File
@@ -28,6 +28,12 @@ before_install:
- brew install python3
- brew install lua
# Start virtual framebuffer to be able to test the GUI.
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
script:
- NPROC=$(getconf _NPROCESSORS_ONLN)
- ./configure $CONFOPT --enable-fail-if-missing
+7 -2
View File
@@ -1362,7 +1362,7 @@ write_buf_line(buf_T *buf, linenr_T lnum, channel_T *channel)
p[len] = NL;
p[len + 1] = NUL;
channel_send(channel, PART_IN, p, len + 1, "write_buf_line()");
channel_send(channel, PART_IN, p, len + 1, "write_buf_line");
vim_free(p);
}
@@ -3475,7 +3475,12 @@ channel_handle_events(void)
* Return FAIL or OK.
*/
int
channel_send(channel_T *channel, ch_part_T part, char_u *buf, int len, char *fun)
channel_send(
channel_T *channel,
ch_part_T part,
char_u *buf,
int len,
char *fun)
{
int res;
sock_T fd;
+4
View File
@@ -779,6 +779,10 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
77,
/**/
76,
/**/
75,
/**/