comparison src/testdir/test_spell_utf8.vim @ 29536:6d93f09815c1 v9.0.0109

patch 9.0.0109: writing over the end of a buffer on stack Commit: https://github.com/vim/vim/commit/1eead4cf1daf87ee41aeb4de3b3e38708417f9d5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 30 11:39:57 2022 +0100 patch 9.0.0109: writing over the end of a buffer on stack Problem: Writing over the end of a buffer on stack when making list of spell suggestions. Solution: Make sure suggested word is not too long. (closes #10812)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Jul 2022 12:45:02 +0200
parents e76e18a20d9c
children ae10b91ac6b3
comparison
equal deleted inserted replaced
29535:0dea4955e34b 29536:6d93f09815c1
817 norm P]s 817 norm P]s
818 818
819 bwipe! 819 bwipe!
820 endfunc 820 endfunc
821 821
822 func Test_spell_suggest_too_long()
823 " this was creating a word longer than MAXWLEN
824 new
825 call setline(1, 'a' .. repeat("\u0333", 150))
826 norm! z=
827 bwipe!
828 endfunc
829
822 830
823 " vim: shiftwidth=2 sts=2 expandtab 831 " vim: shiftwidth=2 sts=2 expandtab