From cf4543a56411eaaaaec306924ec24aa3dadf0baa Mon Sep 17 00:00:00 2001 From: Thomas Vigouroux Date: Mon, 21 Sep 2020 16:54:40 +0200 Subject: vim-patch:8.2.0955: build fails Problem: Build fails. Solution: Add missing struct change. https://github.com/vim/vim/commit/215f49c4d720367be29f56168f363a0ee9eaf86b --- src/nvim/buffer_defs.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src') 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 -- cgit