diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2022-01-11 14:14:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-11 14:14:27 +0000 |
commit | 43b95b5430e85a81d4b7e78e98ae683ad04a89f8 (patch) | |
tree | ec36f8dfe6d6e1bdd98796769be50700cbab41b7 | |
parent | e866da12eeae1e5521abd89a94a7f7c9595a75c3 (diff) | |
parent | d63284e5a628b8ce852b4d5e08005ee1d1d1e9e0 (diff) | |
download | rneovim-43b95b5430e85a81d4b7e78e98ae683ad04a89f8.tar.gz rneovim-43b95b5430e85a81d4b7e78e98ae683ad04a89f8.tar.bz2 rneovim-43b95b5430e85a81d4b7e78e98ae683ad04a89f8.zip |
Merge pull request #16962 from f380cedric/vim-8.2.3409
vim-patch:8.2.3409
-rw-r--r-- | src/nvim/testdir/test_regexp_utf8.vim | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_regexp_utf8.vim b/src/nvim/testdir/test_regexp_utf8.vim index d8d5797dcf..c568805f87 100644 --- a/src/nvim/testdir/test_regexp_utf8.vim +++ b/src/nvim/testdir/test_regexp_utf8.vim @@ -590,4 +590,12 @@ func Test_match_char_class_upper() bwipe! endfunc +func Test_match_invalid_byte() + call writefile(0z630a.765d30aa0a.2e0a.790a.4030, 'Xinvalid') + new + source Xinvalid + bwipe! + call delete('Xinvalid') +endfunc + " vim: shiftwidth=2 sts=2 expandtab |