changeset 27649:b157387cb232 v8.2.4350

patch 8.2.4350: FEAT_GUI_ENABLED defined but never used Commit: https://github.com/vim/vim/commit/29c70f612f62486cb2fc90a58ca9e1498dd28630 Author: ola.soder@axis.com <ola.soder@axis.com> Date: Fri Feb 11 21:13:35 2022 +0000 patch 8.2.4350: FEAT_GUI_ENABLED defined but never used Problem: FEAT_GUI_ENABLED defined but never used. Solution: Remove the #define. (Ola S?der, closes https://github.com/vim/vim/issues/9732)
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Feb 2022 22:15:02 +0100
parents f9aece179835
children 153d8393247a
files src/version.c src/vim.h
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    4350,
+/**/
     4349,
 /**/
     4348,
--- 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