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 779a775 commit 937204aCopy full SHA for 937204a
2 files changed
src/ex_cmds.c
@@ -520,7 +520,11 @@ ex_sort(exarg_T *eap)
520
if (regmatch.regprog != NULL)
521
end_col = 0;
522
523
- if (sort_nr || sort_flt)
+ if (sort_nr
524
+#ifdef FEAT_FLOAT
525
+ || sort_flt
526
+#endif
527
+ )
528
{
529
/* Make sure vim_str2nr doesn't read any digits past the end
530
* of the match, by temporarily terminating the string there */
src/version.c
@@ -746,6 +746,8 @@ static char *(features[]) =
746
747
static int included_patches[] =
748
{ /* Add new patch number below this line */
749
+/**/
750
+ 1219,
751
/**/
752
1218,
753
0 commit comments