diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-12 18:03:21 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-12 18:03:30 -0400 |
commit | 3fd2efdb26a50e252aa0c463ecd4f44755fbd744 (patch) | |
tree | 0154ed4134829966f90733c7e5dd490055b9e2dd | |
parent | 0b38011328020b5072201522a62dc1e8e39a42b3 (diff) | |
download | rneovim-3fd2efdb26a50e252aa0c463ecd4f44755fbd744.tar.gz rneovim-3fd2efdb26a50e252aa0c463ecd4f44755fbd744.tar.bz2 rneovim-3fd2efdb26a50e252aa0c463ecd4f44755fbd744.zip |
vim-patch:8.0.1257: no test for fix of undefined behavior
Problem: No test for fix of undefined behavior.
Solution: Add a test. (closes vim/vim#2255)
https://github.com/vim/vim/commit/2973daafe1732963b8924cb9df53c608804d66b3
-rw-r--r-- | src/nvim/testdir/test_search.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_search.vim b/src/nvim/testdir/test_search.vim index 50be1f83e6..42c56dced7 100644 --- a/src/nvim/testdir/test_search.vim +++ b/src/nvim/testdir/test_search.vim @@ -468,3 +468,7 @@ func Test_search_undefined_behaviour() call term_sendkeys(g:buf, ":qa!\<cr>") bwipe! endfunc + +func Test_search_undefined_behaviour2() + call search("\%UC0000000") +endfunc |