# HG changeset patch # User Bram Moolenaar # Date 1591820104 -7200 # Node ID a0bc9cecda000dcecc83cddfb5c884b0687b64f7 # Parent c18241b2966b644123ce7aeca0287ef6c5eb3423 patch 8.2.0955: build fails Commit: https://github.com/vim/vim/commit/215f49c4d720367be29f56168f363a0ee9eaf86b Author: Bram Moolenaar Date: Wed Jun 10 22:12:04 2020 +0200 patch 8.2.0955: build fails Problem: Build fails. Solution: Add missing struct change. diff --git a/src/structs.h b/src/structs.h --- a/src/structs.h +++ b/src/structs.h @@ -2423,6 +2423,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 #endif #if !defined(FEAT_SYN_HL) && !defined(FEAT_SPELL) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 955, +/**/ 954, /**/ 953,