From b850c39676db21c6f1aa3afed0e2e48d407dd60e Mon Sep 17 00:00:00 2001 From: rbtnn Date: Sat, 1 Oct 2022 15:47:04 +0100 Subject: [PATCH] patch 9.0.0633: FEAT_TITLE was removed but is still used Problem: FEAT_TITLE was removed but is still used. Solution: Remove FEAT_TITLE. (Naruhiko Nishino, closes #11256) --- src/gui_gtk_x11.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c index 945cb09ca..736d1c7a2 100644 --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -6159,7 +6159,7 @@ gui_mch_haskey(char_u *name) return FAIL; } -#if defined(FEAT_TITLE) || defined(FEAT_EVAL) || defined(PROTO) +#if defined(FEAT_EVAL) || defined(PROTO) /* * Return the text window-id and display. Only required for X-based GUI's */ diff --git a/src/version.c b/src/version.c index 894840e08..6778ce62b 100644 --- a/src/version.c +++ b/src/version.c @@ -699,6 +699,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 633, /**/ 632, /**/ -- 2.40.0