Skip to content

Commit 324ff06

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 0e47383 + a9a8e04 commit 324ff06

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/memline.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5029,8 +5029,8 @@ ml_updatechunk(
50295029
curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
50305030
}
50315031
}
5032-
else if (line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines
5033-
&& curix < buf->b_ml.ml_usedchunks - 1)
5032+
else if (curix < buf->b_ml.ml_usedchunks - 1
5033+
&& line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
50345034
{
50355035
/* Adjust cached curix & curline */
50365036
curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -807,6 +807,8 @@ static char *(features[]) =
807807

808808
static int included_patches[] =
809809
{ /* Add new patch number below this line */
810+
/**/
811+
501,
810812
/**/
811813
500,
812814
/**/

0 commit comments

Comments
 (0)