# HG changeset patch # User Bram Moolenaar # Date 1596622503 -7200 # Node ID 5dcdb970111bd419efc007820a07d7cbdbbdbc18 # Parent 00cd029a1a875870d40b1543c94a75fd51eec689 patch 8.2.1369: MS-Windows: autocommand test sometimes fails Commit: https://github.com/vim/vim/commit/14ddd226daa324831e1872c352452f202fd6068c Author: Bram Moolenaar Date: Wed Aug 5 12:02:40 2020 +0200 patch 8.2.1369: MS-Windows: autocommand test sometimes fails Problem: MS-Windows: autocommand test sometimes fails. Solution: Do not rely on the cat command. diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim --- a/src/testdir/test_autocmd.vim +++ b/src/testdir/test_autocmd.vim @@ -1618,7 +1618,7 @@ func Test_change_mark_in_autocmds() write au! BufWritePre - if executable('cat') + if has('unix') write XtestFilter write >> XtestFilter diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1369, +/**/ 1368, /**/ 1367,