# HG changeset patch # User Bram Moolenaar # Date 1664636403 -7200 # Node ID 2cad2913c7c17bdcb437227280384b30eaf036a2 # Parent dea0b7889674c6b547c75d840891cccd02cd20a8 patch 9.0.0633: FEAT_TITLE was removed but is still used Commit: https://github.com/vim/vim/commit/b850c39676db21c6f1aa3afed0e2e48d407dd60e Author: rbtnn Date: Sat Oct 1 15:47:04 2022 +0100 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 https://github.com/vim/vim/issues/11256) diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c --- 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 --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 633, +/**/ 632, /**/ 631,