From 29c70f612f62486cb2fc90a58ca9e1498dd28630 Mon Sep 17 00:00:00 2001 From: "ola.soder@axis.com" Date: Fri, 11 Feb 2022 21:13:35 +0000 Subject: [PATCH] patch 8.2.4350: FEAT_GUI_ENABLED defined but never used MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: FEAT_GUI_ENABLED defined but never used. Solution: Remove the #define. (Ola Söder, closes #9732) --- src/version.c | 2 ++ src/vim.h | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/version.c b/src/version.c index 6d09210759..fc314dbed6 100644 --- a/src/version.c +++ b/src/version.c @@ -746,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4350, /**/ 4349, /**/ diff --git a/src/vim.h b/src/vim.h index 4f95bb45f2..3fea0d9684 100644 --- a/src/vim.h +++ b/src/vim.h @@ -120,7 +120,6 @@ || defined(FEAT_GUI_HAIKU) \ || defined(FEAT_GUI_MSWIN) \ || defined(FEAT_GUI_PHOTON) -# define FEAT_GUI_ENABLED // also defined with NO_X11_INCLUDES # if !defined(FEAT_GUI) && !defined(NO_X11_INCLUDES) # define FEAT_GUI # endif