diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-09-24 07:13:56 +0200 |
---|---|---|
committer | Thomas Vigouroux <tomvig38@gmail.com> | 2020-09-24 08:09:38 +0200 |
commit | ca28cf5362c9f8cfcc60e28e20c2d455c5c37c77 (patch) | |
tree | 3727841c4d139c51313c6d6d74b9c2fd28bbce1c /src/nvim/testdir/test_syntax.vim | |
parent | 0b42e3fedb55bd6bfbc02515b31f9144518a8909 (diff) | |
download | rneovim-ca28cf5362c9f8cfcc60e28e20c2d455c5c37c77.tar.gz rneovim-ca28cf5362c9f8cfcc60e28e20c2d455c5c37c77.tar.bz2 rneovim-ca28cf5362c9f8cfcc60e28e20c2d455c5c37c77.zip |
vim-patch:8.2.1678: crash when using ":set" after ":ownsyntax"
Problem: Crash when using ":set" after ":ownsyntax".
Solution: Make sure 'spelloptions' is not NULL. (closes vim/vim#6950)
https://github.com/vim/vim/commit/d1f76afaf963be706697279ab0570ffcb8a1f2fc
Diffstat (limited to 'src/nvim/testdir/test_syntax.vim')
-rw-r--r-- | src/nvim/testdir/test_syntax.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_syntax.vim b/src/nvim/testdir/test_syntax.vim index 85ee42420e..2404f113d9 100644 --- a/src/nvim/testdir/test_syntax.vim +++ b/src/nvim/testdir/test_syntax.vim @@ -369,7 +369,11 @@ func Test_ownsyntax() call setline(1, '#define FOO') syntax on set filetype=c + ownsyntax perl + " this should not crash + set + call assert_equal('perlComment', synIDattr(synID(line('.'), col('.'), 1), 'name')) call assert_equal('c', b:current_syntax) call assert_equal('perl', w:current_syntax) |