diff options
Diffstat (limited to 'data/vim/patches/8.1.0200')
-rw-r--r-- | data/vim/patches/8.1.0200 | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/data/vim/patches/8.1.0200 b/data/vim/patches/8.1.0200 new file mode 100644 index 000000000..e02ced27a --- /dev/null +++ b/data/vim/patches/8.1.0200 @@ -0,0 +1,93 @@ +To: vim_dev@googlegroups.com +Subject: Patch 8.1.0200 +Fcc: outbox +From: Bram Moolenaar <Bram@moolenaar.net> +Mime-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +------------ + +Patch 8.1.0200 +Problem: spellbadword() not tested. +Solution: Add a test. (Dominique Pelle, closes #3235) +Files: src/testdir/test_spell.vim + + +*** ../vim-8.1.0199/src/testdir/test_spell.vim 2017-12-21 20:24:51.000000000 +0100 +--- src/testdir/test_spell.vim 2018-07-20 23:33:17.188338957 +0200 +*************** +*** 68,73 **** +--- 68,114 ---- + bwipe! + endfunc + ++ " Test spellbadword() with argument ++ func Test_spellbadword() ++ set spell ++ ++ call assert_equal(['bycycle', 'bad'], spellbadword('My bycycle.')) ++ call assert_equal(['another', 'caps'], spellbadword('A sentence. another sentence')) ++ ++ set spelllang=en ++ call assert_equal(['', ''], spellbadword('centre')) ++ call assert_equal(['', ''], spellbadword('center')) ++ set spelllang=en_us ++ call assert_equal(['centre', 'local'], spellbadword('centre')) ++ call assert_equal(['', ''], spellbadword('center')) ++ set spelllang=en_gb ++ call assert_equal(['', ''], spellbadword('centre')) ++ call assert_equal(['center', 'local'], spellbadword('center')) ++ ++ " Create a small word list to test that spellbadword('...') ++ " can return ['...', 'rare']. ++ e Xwords ++ insert ++ foo ++ foobar/? ++ . ++ w! ++ mkspell! Xwords.spl Xwords ++ set spelllang=Xwords.spl ++ call assert_equal(['foobar', 'rare'], spellbadword('foo foobar')) ++ ++ " Typo should not be detected without the 'spell' option. ++ set spelllang=en_gb nospell ++ call assert_equal(['', ''], spellbadword('centre')) ++ call assert_equal(['', ''], spellbadword('My bycycle.')) ++ call assert_equal(['', ''], spellbadword('A sentence. another sentence')) ++ ++ call delete('Xwords.spl') ++ call delete('Xwords') ++ set spelllang& ++ set spell& ++ endfunc ++ + func Test_spellreall() + new + set spell +*** ../vim-8.1.0199/src/version.c 2018-07-20 20:28:44.855379332 +0200 +--- src/version.c 2018-07-20 23:34:21.732001781 +0200 +*************** +*** 791,792 **** +--- 791,794 ---- + { /* Add new patch number below this line */ ++ /**/ ++ 200, + /**/ + +-- +The greatest lies of all time: + (1) The check is in the mail. + (2) We have a really challenging assignment for you. + (3) I love you. + (4) All bugs have been fixed. + (5) This won't hurt a bit. + (6) Honey, I just need to debug this program and be home in 5 minutes. + (7) I have just sent you an e-mail about that. + (8) Of course I'll respect you in the morning. + (9) I'm from the government, and I'm here to help you. + + /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ +/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ +\\\ an exciting new programming language -- http://www.Zimbu.org /// + \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |