summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-06-10 22:12:04 +0200
committerBram Moolenaar <Bram@vim.org>2020-06-10 22:12:04 +0200
commit215f49c4d720367be29f56168f363a0ee9eaf86b (patch)
tree66ba1c9bcf6943771a1c8dc0d6186ff07c76fd29
parentf1f0ff9557353c9a452aac8540411a88cf2da47c (diff)
downloadvim-git-215f49c4d720367be29f56168f363a0ee9eaf86b.tar.gz
patch 8.2.0955: build failsv8.2.0955
Problem: Build fails. Solution: Add missing struct change.
-rw-r--r--src/structs.h1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index cdadb8315..700ac543c 100644
--- 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
index 63177cff4..9600f65f8 100644
--- 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,