diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-09-21 16:54:40 +0200 |
---|---|---|
committer | Thomas Vigouroux <tomvig38@gmail.com> | 2020-09-24 07:13:39 +0200 |
commit | cf4543a56411eaaaaec306924ec24aa3dadf0baa (patch) | |
tree | 08d129b12aefe7e3d2230c83fe53bde3a5c42d58 /src | |
parent | a08959bc7a830018e88843649487a73497bb321a (diff) | |
download | rneovim-cf4543a56411eaaaaec306924ec24aa3dadf0baa.tar.gz rneovim-cf4543a56411eaaaaec306924ec24aa3dadf0baa.tar.bz2 rneovim-cf4543a56411eaaaaec306924ec24aa3dadf0baa.zip |
vim-patch:8.2.0955: build fails
Problem: Build fails.
Solution: Add missing struct change.
https://github.com/vim/vim/commit/215f49c4d720367be29f56168f363a0ee9eaf86b
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/buffer_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index bd9cd2f5ec..ea968d9592 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -451,6 +451,7 @@ typedef struct { regprog_T *b_cap_prog; // program for 'spellcapcheck' char_u *b_p_spf; // 'spellfile' char_u *b_p_spl; // 'spelllang' + char_u *b_p_spo; // 'spelloptions' int b_cjk; // all CJK letters as OK char_u b_syn_chartab[32]; // syntax iskeyword option char_u *b_syn_isk; // iskeyword option |