comparison src/gui.h @ 30075:be5b8d4616b2 v9.0.0375

patch 9.0.0375: the footer feature is unused Commit: https://github.com/vim/vim/commit/c8ac3a072f18d4b250e55e91f610fe517e218777 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 4 12:29:28 2022 +0100 patch 9.0.0375: the footer feature is unused Problem: The footer feature is unused. Solution: Remove FEAT_FOOTER and code.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Sep 2022 13:30:03 +0200
parents 9849df834f1d
children 9b35b4c6df4c
comparison
equal deleted inserted replaced
30074:fe5f53afe024 30075:be5b8d4616b2
400 && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MOTIF) \ 400 && (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MOTIF) \
401 || defined(FEAT_GUI_HAIKU)) 401 || defined(FEAT_GUI_HAIKU))
402 int tabline_height; 402 int tabline_height;
403 #endif 403 #endif
404 404
405 #ifdef FEAT_FOOTER
406 int footer_height; // height of the message footer
407 #endif
408
409 #if defined(FEAT_TOOLBAR) \ 405 #if defined(FEAT_TOOLBAR) \
410 && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU) || defined(FEAT_GUI_MSWIN)) 406 && (defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_HAIKU) || defined(FEAT_GUI_MSWIN))
411 int toolbar_height; // height of the toolbar 407 int toolbar_height; // height of the toolbar
412 #endif 408 #endif
413 409