diff options
author | James McCoy <jamessan@jamessan.com> | 2019-06-22 22:11:52 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2019-06-26 00:15:41 -0400 |
commit | 959ff84e04d41806963cb476d6a731f4ef1c0215 (patch) | |
tree | 284598f6113c153e8fe1c185b699acff84f03595 | |
parent | 13f3a21226fdd31c42ba927ff12ac6c34c940311 (diff) | |
download | rneovim-959ff84e04d41806963cb476d6a731f4ef1c0215.tar.gz rneovim-959ff84e04d41806963cb476d6a731f4ef1c0215.tar.bz2 rneovim-959ff84e04d41806963cb476d6a731f4ef1c0215.zip |
vim-patch:8.1.1401: misspelled mkspellmem as makespellmem
Problem: Misspelled mkspellmem as makespellmem.
Solution: Drop duplicate help entry, fix test. (Naruhiko Nishino, Ken
Takata, closes vim/vim#4437)
https://github.com/vim/vim/commit/076073950c44ea0e35bc39d539dc7ab41bf9c7ec
-rw-r--r-- | runtime/doc/options.txt | 8 | ||||
-rw-r--r-- | src/nvim/testdir/test_modeline.vim | 2 |
2 files changed, 3 insertions, 7 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 827d6bddcf..e8471d561a 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -3781,12 +3781,6 @@ A jump table for the options with a short description can be found at |Q_op|. < This option cannot be set from a |modeline| or in the |sandbox|, for security reasons. - *'makespellmem'* *'msm'* -'makespellmem' 'msm' string (default "460000,2000,500") - global - Values relevant only when compressing a spell file, see |spell|. - This option cannot be set from a |modeline| or in the |sandbox|. - *'matchpairs'* *'mps'* 'matchpairs' 'mps' string (default "(:),{:},[:]") local to buffer @@ -3898,6 +3892,8 @@ A jump table for the options with a short description can be found at |Q_op|. < If you have less than 512 Mbyte |:mkspell| may fail for some languages, no matter what you set 'mkspellmem' to. + This option cannot be set from a |modeline| or in the |sandbox|. + *'modeline'* *'ml'* *'nomodeline'* *'noml'* 'modeline' 'ml' boolean (Vim default: on (off for root), Vi default: off) diff --git a/src/nvim/testdir/test_modeline.vim b/src/nvim/testdir/test_modeline.vim index e1d56727fe..1e196e07f0 100644 --- a/src/nvim/testdir/test_modeline.vim +++ b/src/nvim/testdir/test_modeline.vim @@ -116,7 +116,7 @@ func Test_modeline_fails_always() call s:modeline_fails('luadll', 'luadll=Something()', 'E520:') call s:modeline_fails('makeef', 'makeef=Something()', 'E520:') call s:modeline_fails('makeprg', 'makeprg=Something()', 'E520:') - call s:modeline_fails('makespellmem', 'makespellmem=Something()', 'E520:') + call s:modeline_fails('mkspellmem', 'mkspellmem=Something()', 'E520:') call s:modeline_fails('mzschemedll', 'mzschemedll=Something()', 'E520:') call s:modeline_fails('mzschemegcdll', 'mzschemegcdll=Something()', 'E520:') call s:modeline_fails('modelineexpr', 'modelineexpr=Something()', 'E520:') |