From 651fca85c71a4c5807f8f828f9ded30fbd754325 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 29 Nov 2021 20:39:38 +0000 Subject: patch 8.2.3699: the +title feature adds a lot of #ifdef but little code Problem: The +title feature adds a lot of #ifdef but little code. Solution: Graduate the +title feature. --- src/regexp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/regexp.c') diff --git a/src/regexp.c b/src/regexp.c index 4b1474579..45485f401 100644 --- a/src/regexp.c +++ b/src/regexp.c @@ -2746,8 +2746,7 @@ report_re_switch(char_u *pat) } #endif -#if (defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))) \ - || defined(PROTO) +#if defined(FEAT_X11) || defined(PROTO) /* * Return whether "prog" is currently being executed. */ -- cgit v1.2.1