1
0
forked from aniani/vim

updated for version 7.1-253

This commit is contained in:
Bram Moolenaar
2008-02-18 18:42:52 +00:00
parent 275a8a0c9b
commit 48c99164f4
2 changed files with 6 additions and 0 deletions

View File

@@ -365,6 +365,10 @@ ex_sort(eap)
int sort_oct; /* sort on octal number */
int sort_hex; /* sort on hex number */
/* Sorting one line is really quick! */
if (count <= 1)
return;
if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
return;
sortbuf1 = NULL;