We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1daae44 commit 0bb6108Copy full SHA for 0bb6108
src/testdir/test_sort.vim
@@ -2,11 +2,11 @@
2
3
:func Compare1(a, b) abort
4
call sort(range(3), 'Compare2')
5
- return a:a ># a:b
+ return a:a - a:b
6
:endfunc
7
8
:func Compare2(a, b) abort
9
- return a:a <# a:b
10
11
12
func Test_sort_strings()
src/version.c
@@ -748,6 +748,8 @@ static char *(features[]) =
748
749
static int included_patches[] =
750
{ /* Add new patch number below this line */
751
+/**/
752
+ 1397,
753
/**/
754
1396,
755
0 commit comments