comparison src/ex_cmds.c @ 1538:2750661e93d5 v7.1.253

updated for version 7.1-253
author vimboss
date Mon, 18 Feb 2008 18:42:52 +0000
parents cc4fe241baa3
children 8dc36a64ae8b
comparison
equal deleted inserted replaced
1537:ff77f541d69d 1538:2750661e93d5
362 long deleted; 362 long deleted;
363 colnr_T start_col; 363 colnr_T start_col;
364 colnr_T end_col; 364 colnr_T end_col;
365 int sort_oct; /* sort on octal number */ 365 int sort_oct; /* sort on octal number */
366 int sort_hex; /* sort on hex number */ 366 int sort_hex; /* sort on hex number */
367
368 /* Sorting one line is really quick! */
369 if (count <= 1)
370 return;
367 371
368 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) 372 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
369 return; 373 return;
370 sortbuf1 = NULL; 374 sortbuf1 = NULL;
371 sortbuf2 = NULL; 375 sortbuf2 = NULL;