# HG changeset patch # User Christian Brabandt # Date 1473680706 -7200 # Node ID 66658966ac2e2d885eb2d3805bf08fb24896c3c3 # Parent dbb9c4d2fd44a4aa1603e9f0cd5e04968a5e3478 commit https://github.com/vim/vim/commit/edeb846c1f04a49466992077eaea3396838bf4fd Author: Bram Moolenaar Date: Mon Sep 12 13:32:02 2016 +0200 patch 7.4.2367 Problem: Test runner misses a comma. Solution: Add the comma. diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim --- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -147,7 +147,7 @@ endif let s:flaky = [ \ 'Test_reltime()', \ 'Test_nb_basic()', - \ 'Test_communicate()' + \ 'Test_communicate()', \ 'Test_pipe_through_sort_some()' \ ] diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2367, +/**/ 2366, /**/ 2365,