1
0
forked from aniani/vim

Make joining a range of lines much faster. (Milan Vancura)

This commit is contained in:
Bram Moolenaar
2010-07-10 17:51:46 +02:00
parent 622925875c
commit 893eaab41f
6 changed files with 134 additions and 141 deletions

View File

@@ -8394,7 +8394,7 @@ ex_join(eap)
}
++eap->line2;
}
do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
(void)do_join(eap->line2 - eap->line1 + 1, !eap->forceit, TRUE);
beginline(BL_WHITE | BL_FIX);
ex_may_print(eap);
}