]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.200 v7.4.200
authorBram Moolenaar <Bram@vim.org>
Wed, 12 Mar 2014 16:56:48 +0000 (17:56 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 12 Mar 2014 16:56:48 +0000 (17:56 +0100)
Problem:    Too many #ifdefs in the code.
Solution:   Enable FEAT_VISUAL always, await any complaints

src/feature.h
src/version.c

index 24c408977c93f76344f597ea7d3d3f2b65f63b06..83ab55dffd566188f4116b835e02d654c9a944b7 100644 (file)
 #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
 
 /*
index 2fe98b8bc682301955245d34968abf730e421d09..4f953e3214e92b5227ec849b73f37d5af15388b7 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    200,
 /**/
     199,
 /**/