Skip to content

Commit 08a873a

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 87243e3 + e3505df commit 08a873a

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ before_install:
2828
- brew install python3
2929
- brew install lua
3030

31+
# Start virtual framebuffer to be able to test the GUI.
32+
before_script:
33+
- "export DISPLAY=:99.0"
34+
- "sh -e /etc/init.d/xvfb start"
35+
- sleep 3 # give xvfb some time to start
36+
3137
script:
3238
- NPROC=$(getconf _NPROCESSORS_ONLN)
3339
- ./configure $CONFOPT --enable-fail-if-missing

src/channel.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1362,7 +1362,7 @@ write_buf_line(buf_T *buf, linenr_T lnum, channel_T *channel)
13621362

13631363
p[len] = NL;
13641364
p[len + 1] = NUL;
1365-
channel_send(channel, PART_IN, p, len + 1, "write_buf_line()");
1365+
channel_send(channel, PART_IN, p, len + 1, "write_buf_line");
13661366
vim_free(p);
13671367
}
13681368

@@ -3475,7 +3475,12 @@ channel_handle_events(void)
34753475
* Return FAIL or OK.
34763476
*/
34773477
int
3478-
channel_send(channel_T *channel, ch_part_T part, char_u *buf, int len, char *fun)
3478+
channel_send(
3479+
channel_T *channel,
3480+
ch_part_T part,
3481+
char_u *buf,
3482+
int len,
3483+
char *fun)
34793484
{
34803485
int res;
34813486
sock_T fd;

src/version.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,10 @@ static char *(features[]) =
779779

780780
static int included_patches[] =
781781
{ /* Add new patch number below this line */
782+
/**/
783+
77,
784+
/**/
785+
76,
782786
/**/
783787
75,
784788
/**/

0 commit comments

Comments
 (0)