comparison src/testdir/test_search.vim @ 13082:a80082fd1a1d v8.0.1416

patch 8.0.1416: crash when searching for a sentence commit https://github.com/vim/vim/commit/8ada6aa9298b4764d9ca0024dd21b17e815595ce Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 19 21:23:21 2017 +0100 patch 8.0.1416: crash when searching for a sentence Problem: Crash when searching for a sentence. Solution: Return NUL when getting character at MAXCOL. (closes https://github.com/vim/vim/issues/2468)
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Dec 2017 21:30:05 +0100
parents 307f2622826f
children 25ab78f14c8b
comparison
equal deleted inserted replaced
13081:25aefadfcd81 13082:a80082fd1a1d
727 new 727 new
728 call setline(1, '0\|\&\n\@<=') 728 call setline(1, '0\|\&\n\@<=')
729 call search(getline(".")) 729 call search(getline("."))
730 bwipe! 730 bwipe!
731 endfunc 731 endfunc
732
733 func Test_search_sentence()
734 new
735 " this used to cause a crash
736 call assert_fails("/\\%'", 'E486')
737 call assert_fails("/", 'E486')
738 endfunc