From 4b082c4bd05f504fda1acaa9d28fca55a2d04857 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 15 Oct 2022 16:25:27 +0100 Subject: [PATCH] patch 9.0.0762: build failure Problem: Build failure. Solution: Add missing change. --- src/structs.h | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/structs.h b/src/structs.h index bf65d52ed..bc3d8cb07 100644 --- a/src/structs.h +++ b/src/structs.h @@ -3034,6 +3034,7 @@ struct file_buffer #endif char_u *b_p_kp; // 'keywordprg' int b_p_lisp; // 'lisp' + char_u *b_p_lop; // 'lispoptions' char_u *b_p_menc; // 'makeencoding' char_u *b_p_mps; // 'matchpairs' int b_p_ml; // 'modeline' diff --git a/src/version.c b/src/version.c index 6e602bea3..08851f8c9 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 762, /**/ 761, /**/ -- 2.40.0