We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0e47383 + a9a8e04 commit 324ff06Copy full SHA for 324ff06
2 files changed
src/memline.c
@@ -5029,8 +5029,8 @@ ml_updatechunk(
5029
curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5030
}
5031
5032
- else if (line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines
5033
- && curix < buf->b_ml.ml_usedchunks - 1)
+ else if (curix < buf->b_ml.ml_usedchunks - 1
+ && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
5034
{
5035
/* Adjust cached curix & curline */
5036
src/version.c
@@ -807,6 +807,8 @@ static char *(features[]) =
807
808
static int included_patches[] =
809
{ /* Add new patch number below this line */
810
+/**/
811
+ 501,
812
/**/
813
500,
814
0 commit comments