comparison src/testdir/test_spell.vim @ 11394:a2124e9bbb6a v8.0.0582

patch 8.0.0582: illegal memory access with z= command commit https://github.com/vim/vim/commit/5b276aa80e112ae1993bd43e28f599f257827c54 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 22 23:49:52 2017 +0200 patch 8.0.0582: illegal memory access with z= command Problem: Illegal memory access with z= command. (Dominique Pelle) Solution: Avoid case folded text to be longer than the original text. Use MB_PTR2LEN() instead of MB_BYTE2LEN().
author Christian Brabandt <cb@256bit.org>
date Sun, 23 Apr 2017 00:00:03 +0200
parents 2297aae8e127
children b3815e491811
comparison
equal deleted inserted replaced
11393:48ff7462b3dc 11394:a2124e9bbb6a
16 normal ]s 16 normal ]s
17 call assert_equal('plong', expand('<cword>')) 17 call assert_equal('plong', expand('<cword>'))
18 bwipe! 18 bwipe!
19 set nospell 19 set nospell
20 endfunc 20 endfunc
21
22 func Test_z_equal_on_invalid_utf8_word()
23 split
24 set spell
25 call setline(1, "\xff")
26 norm z=
27 set nospell
28 bwipe!
29 endfunc