Skip to content

Commit 33d55bd

Browse files
committed
updated for version 7.3.705
Problem: Mouse features are not sorted properly. (Tony Mechelynck) Solution: Put the mouse features in alphabetical order.
1 parent 304a916 commit 33d55bd

File tree

1 file changed

+23
-15
lines changed

1 file changed

+23
-15
lines changed

src/version.c

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@ static char *(features[]) =
348348
# else
349349
"-mouse",
350350
#endif
351+
351352
#if defined(UNIX) || defined(VMS)
352353
# ifdef FEAT_MOUSE_DEC
353354
"+mouse_dec",
@@ -369,34 +370,39 @@ static char *(features[]) =
369370
# else
370371
"-mouse_netterm",
371372
# endif
373+
#endif
374+
375+
#ifdef __QNX__
376+
# ifdef FEAT_MOUSE_PTERM
377+
"+mouse_pterm",
378+
# else
379+
"-mouse_pterm",
380+
# endif
381+
#endif
382+
383+
#if defined(UNIX) || defined(VMS)
384+
# ifdef FEAT_MOUSE_SGR
385+
"+mouse_sgr",
386+
# else
387+
"-mouse_sgr",
388+
# endif
372389
# ifdef FEAT_SYSMOUSE
373390
"+mouse_sysmouse",
374391
# else
375392
"-mouse_sysmouse",
376393
# endif
377-
# ifdef FEAT_MOUSE_XTERM
378-
"+mouse_xterm",
379-
# else
380-
"-mouse_xterm",
381-
# endif
382394
# ifdef FEAT_MOUSE_URXVT
383395
"+mouse_urxvt",
384396
# else
385397
"-mouse_urxvt",
386398
# endif
387-
# ifdef FEAT_MOUSE_SGR
388-
"+mouse_sgr",
389-
# else
390-
"-mouse_sgr",
391-
# endif
392-
#endif
393-
#ifdef __QNX__
394-
# ifdef FEAT_MOUSE_PTERM
395-
"+mouse_pterm",
399+
# ifdef FEAT_MOUSE_XTERM
400+
"+mouse_xterm",
396401
# else
397-
"-mouse_pterm",
402+
"-mouse_xterm",
398403
# endif
399404
#endif
405+
400406
#ifdef FEAT_MBYTE_IME
401407
# ifdef DYNAMIC_IME
402408
"+multi_byte_ime/dyn",
@@ -719,6 +725,8 @@ static char *(features[]) =
719725

720726
static int included_patches[] =
721727
{ /* Add new patch number below this line */
728+
/**/
729+
705,
722730
/**/
723731
704,
724732
/**/

0 commit comments

Comments
 (0)