From 44a2f923c00f1384c9ecde12fb5b4711bc20702e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 19 Mar 2016 22:11:51 +0100 Subject: patch 7.4.1611 Problem: The versplit feature makes the code uneccessary complicated. Solution: Remove FEAT_VERTSPLIT, always support vertical splits when FEAT_WINDOWS is defined. --- src/gui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui.h') diff --git a/src/gui.h b/src/gui.h index f119de5c12..4e557ad3b5 100644 --- a/src/gui.h +++ b/src/gui.h @@ -179,7 +179,7 @@ typedef struct GuiScrollbar /* Values measured in characters: */ int top; /* Top of scroll bar (chars from row 0) */ int height; /* Current height of scroll bar in rows */ -#ifdef FEAT_VERTSPLIT +#ifdef FEAT_WINDOWS int width; /* Current width of scroll bar in cols */ #endif int status_height; /* Height of status line */ -- cgit v1.2.3