summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-03-23 15:13:05 +0100
committerBram Moolenaar <Bram@vim.org>2014-03-23 15:13:05 +0100
commitf7ff6e85e8a4e84cff023f5db4b66ef85986605a (patch)
tree813913a9c1d1418b5b85e3a4bc414dbeb2b3f6a3 /src/feature.h
parenta68783751647e3243ca6f22df62907efbdbccb02 (diff)
updated for version 7.4.212v7.4.212
Problem: Now that the +visual feature is always enabled the #ifdefs for it are not useful. Solution: Remove the checks for FEAT_VISUAL.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/feature.h b/src/feature.h
index 83ab55dffd..917179401b 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -214,7 +214,6 @@
* +visual Visual mode - now always included.
* +visualextra Extra features for Visual mode (mostly block operators).
*/
-#define FEAT_VISUAL
#ifdef FEAT_NORMAL
# define FEAT_VISUALEXTRA
#endif
@@ -1138,13 +1137,10 @@
#ifdef FEAT_GUI
# ifndef FEAT_CLIPBOARD
# define FEAT_CLIPBOARD
-# ifndef FEAT_VISUAL
-# define FEAT_VISUAL
-# endif
# endif
#endif
-#if defined(FEAT_NORMAL) && defined(FEAT_VISUAL) \
+#if defined(FEAT_NORMAL) \
&& (defined(UNIX) || defined(VMS)) \
&& defined(WANT_X11) && defined(HAVE_X11)
# define FEAT_XCLIPBOARD