diff 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
line wrap: on
line diff
--- a/src/testdir/test_spell.vim
+++ b/src/testdir/test_spell.vim
@@ -18,3 +18,12 @@ func Test_wrap_search()
   bwipe!
   set nospell
 endfunc
+
+func Test_z_equal_on_invalid_utf8_word()
+  split
+  set spell
+  call setline(1, "\xff")
+  norm z=
+  set nospell
+  bwipe!
+endfunc