1
0
forked from aniani/vim

updated for version 7.2-158

This commit is contained in:
Bram Moolenaar
2009-04-22 15:45:05 +00:00
parent fe81d45db4
commit 92a990ba84
2 changed files with 5 additions and 2 deletions

View File

@@ -495,10 +495,11 @@ shift_block(oap, amount)
block_space_width = non_white_col - oap->start_vcol;
/* We will shift by "total" or "block_space_width", whichever is less.
*/
shift_amount = (block_space_width < total? block_space_width: total);
shift_amount = (block_space_width < (size_t)total
? block_space_width : (size_t)total);
/* The column to which we will shift the text. */
destination_col = non_white_col - shift_amount;
destination_col = (colnr_T)(non_white_col - shift_amount);
/* Now let's find out how much of the beginning of the line we can
* reuse without modification. */

View File

@@ -676,6 +676,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
158,
/**/
157,
/**/