Skip to content

Commit 64fbbbb

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents d057c8b + 9d20ce6 commit 64fbbbb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/fold.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2755,7 +2755,7 @@ foldUpdateIEMSRecurse(
27552755
/* End of fold found, update the length when it got shorter. */
27562756
if (fp->fd_len != flp->lnum - fp->fd_top)
27572757
{
2758-
if (fp->fd_top + fp->fd_len > bot + 1)
2758+
if (fp->fd_top + fp->fd_len - 1 > bot)
27592759
{
27602760
/* fold continued below bot */
27612761
if (getlevel == foldlevelMarker

src/version.c

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

780780
static int included_patches[] =
781781
{ /* Add new patch number below this line */
782+
/**/
783+
503,
782784
/**/
783785
502,
784786
/**/

0 commit comments

Comments
 (0)