summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-10-21 04:00:07 +0200
committerBram Moolenaar <Bram@vim.org>2012-10-21 04:00:07 +0200
commit707cfb82dce17018da95ef0dc5466082258260f5 (patch)
tree62248c96817a6c48d2975f6cec30fa475f7df9b4 /src
parentf00dc2627bc753560b82ae861c90fdd79dc454b4 (diff)
updated for version 7.3.705v7.3.705
Problem: Mouse features are not sorted properly. (Tony Mechelynck) Solution: Put the mouse features in alphabetical order.
Diffstat (limited to 'src')
-rw-r--r--src/version.c38
1 files changed, 23 insertions, 15 deletions
diff --git a/src/version.c b/src/version.c
index 8b8e8f26c5..a0fc9d6147 100644
--- a/src/version.c
+++ b/src/version.c
@@ -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",
@@ -720,6 +726,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 705,
+/**/
704,
/**/
703,