diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-10-21 04:00:07 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-10-21 04:00:07 +0200 |
commit | 707cfb82dce17018da95ef0dc5466082258260f5 (patch) | |
tree | 62248c96817a6c48d2975f6cec30fa475f7df9b4 | |
parent | f00dc2627bc753560b82ae861c90fdd79dc454b4 (diff) | |
download | vim-707cfb82dce17018da95ef0dc5466082258260f5.zip |
updated for version 7.3.705
Problem: Mouse features are not sorted properly. (Tony Mechelynck)
Solution: Put the mouse features in alphabetical order.
-rw-r--r-- | src/version.c | 38 |
1 files changed, 23 insertions, 15 deletions
diff --git a/src/version.c b/src/version.c index 8b8e8f26c..a0fc9d614 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, |