# HG changeset patch # User Bram Moolenaar # Date 1687472103 -7200 # Node ID 73fabd4e2259a4220dd30407dfe22552950cfd01 # Parent 12b98f0473688f913a031821b6a634c6c7097179 patch 9.0.1649: syntax test failure causes script to abort Commit: https://github.com/vim/vim/commit/c6530c9d6860fcc5074371f84768be82bae597f6 Author: Bram Moolenaar Date: Thu Jun 22 23:04:11 2023 +0100 patch 9.0.1649: syntax test failure causes script to abort Problem: Syntax test failure causes script to abort. Solution: Fix appending string to list. diff --git a/runtime/syntax/testdir/runtest.vim b/runtime/syntax/testdir/runtest.vim --- a/runtime/syntax/testdir/runtest.vim +++ b/runtime/syntax/testdir/runtest.vim @@ -163,7 +163,7 @@ for fname in glob('input/*.*', 1, 1) call delete('done/' .. root) - call failed_tests->extend(root) + eval failed_tests->add(root) if len(failed_tests) > MAX_FAILED_COUNT call Message('') call Message('Too many errors, aborting') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1649, +/**/ 1648, /**/ 1647,