diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-02-22 16:19:37 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-22 16:19:37 +0000 |
commit | 2457b2bbc28cce6e8c1106d427b8e867d4f58cfa (patch) | |
tree | 5b79398923e7bd95cf416028d382306bc0774510 | |
parent | 70b9e4f4c3a62e325fd16ac108bd12feb026ede5 (diff) | |
download | vim-git-2457b2bbc28cce6e8c1106d427b8e867d4f58cfa.tar.gz |
patch 8.2.4443: regexp pattern test fails on Macv8.2.4443
Problem: Regexp pattern test fails on Mac.
Solution: Do not use a swapfile for the buffer.
-rw-r--r-- | src/testdir/test_regexp_utf8.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_regexp_utf8.vim b/src/testdir/test_regexp_utf8.vim index 9f5b28816..d88e26321 100644 --- a/src/testdir/test_regexp_utf8.vim +++ b/src/testdir/test_regexp_utf8.vim @@ -562,7 +562,7 @@ endfunc func Test_match_too_complicated() set regexpengine=1 - exe "vsplit \xeb\xdb\x99" + exe "noswapfile vsplit \xeb\xdb\x99" silent! buf \&\zs*\zs*0 bwipe! set regexpengine=0 diff --git a/src/version.c b/src/version.c index deb79ebae..05e522918 100644 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4443, +/**/ 4442, /**/ 4441, |