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.
1 parent 833e5da commit a9a8e04Copy full SHA for a9a8e04
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
@@ -792,6 +792,8 @@ static char *(features[]) =
792
793
static int included_patches[] =
794
{ /* Add new patch number below this line */
795
+/**/
796
+ 501,
797
/**/
798
500,
799
0 commit comments