]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.705 v7.3.705
authorBram Moolenaar <Bram@vim.org>
Sun, 21 Oct 2012 02:00:07 +0000 (04:00 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 21 Oct 2012 02:00:07 +0000 (04:00 +0200)
Problem:    Mouse features are not sorted properly. (Tony Mechelynck)
Solution:   Put the mouse features in alphabetical order.

src/version.c

index 8b8e8f26c59ce3a313be475a8d31fd0257736bad..a0fc9d614790b68948533bf47e86b4769dc1ce7c 100644 (file)
@@ -348,6 +348,7 @@ static char *(features[]) =
 # else
        "-mouse",
 #endif
+
 #if defined(UNIX) || defined(VMS)
 # ifdef FEAT_MOUSE_DEC
        "+mouse_dec",
@@ -369,34 +370,39 @@ static char *(features[]) =
 # else
        "-mouse_netterm",
 # endif
+#endif
+
+#ifdef __QNX__
+# ifdef FEAT_MOUSE_PTERM
+       "+mouse_pterm",
+# else
+       "-mouse_pterm",
+# endif
+#endif
+
+#if defined(UNIX) || defined(VMS)
+# ifdef FEAT_MOUSE_SGR
+       "+mouse_sgr",
+# else
+       "-mouse_sgr",
+# endif
 # ifdef FEAT_SYSMOUSE
        "+mouse_sysmouse",
 # else
        "-mouse_sysmouse",
 # endif
-# ifdef FEAT_MOUSE_XTERM
-       "+mouse_xterm",
-# else
-       "-mouse_xterm",
-# endif
 # ifdef FEAT_MOUSE_URXVT
        "+mouse_urxvt",
 # else
        "-mouse_urxvt",
 # endif
-# ifdef FEAT_MOUSE_SGR
-       "+mouse_sgr",
-# else
-       "-mouse_sgr",
-# endif
-#endif
-#ifdef __QNX__
-# ifdef FEAT_MOUSE_PTERM
-       "+mouse_pterm",
+# ifdef FEAT_MOUSE_XTERM
+       "+mouse_xterm",
 # else
-       "-mouse_pterm",
+       "-mouse_xterm",
 # endif
 #endif
+
 #ifdef FEAT_MBYTE_IME
 # ifdef DYNAMIC_IME
        "+multi_byte_ime/dyn",
@@ -719,6 +725,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    705,
 /**/
     704,
 /**/