Skip to content

Commit 974cffa

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents a994101 + fadacf0 commit 974cffa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/buffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ open_buffer(
372372
set_bufref(bufref_T *bufref, buf_T *buf)
373373
{
374374
bufref->br_buf = buf;
375-
bufref->br_fnum = buf->b_fnum;
375+
bufref->br_fnum = buf == NULL ? 0 : buf->b_fnum;
376376
bufref->br_buf_free_count = buf_free_count;
377377
}
378378

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+
648,
782784
/**/
783785
647,
784786
/**/

0 commit comments

Comments
 (0)