diff src/feature.h @ 5710:0559091e6f09 v7.4.200

updated for version 7.4.200 Problem: Too many #ifdefs in the code. Solution: Enable FEAT_VISUAL always, await any complaints
author Bram Moolenaar <bram@vim.org>
date Wed, 12 Mar 2014 17:56:48 +0100
parents 136f05449f29
children 50dbef5e774a
line wrap: on
line diff
--- a/src/feature.h
+++ b/src/feature.h
@@ -211,18 +211,12 @@
 #endif
 
 /*
- * +visual		Visual mode.
+ * +visual		Visual mode - now always included.
  * +visualextra		Extra features for Visual mode (mostly block operators).
  */
-#ifdef FEAT_SMALL
-# define FEAT_VISUAL
-# ifdef FEAT_NORMAL
-#  define FEAT_VISUALEXTRA
-# endif
-#else
-# ifdef FEAT_CLIPBOARD
-#  undef FEAT_CLIPBOARD	/* can't use clipboard without Visual mode */
-# endif
+#define FEAT_VISUAL
+#ifdef FEAT_NORMAL
+# define FEAT_VISUALEXTRA
 #endif
 
 /*