Skip to content

Commit 4bf9153

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 7c0d06c + c4bfeda commit 4bf9153

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/ex_cmds.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3967,7 +3967,8 @@ do_ecmd(
39673967
* <VN> We could instead free the synblock
39683968
* and re-attach to buffer, perhaps.
39693969
*/
3970-
if (curwin->w_s == &(curwin->w_buffer->b_s))
3970+
if (curwin->w_buffer != NULL
3971+
&& curwin->w_s == &(curwin->w_buffer->b_s))
39713972
curwin->w_s = &(buf->b_s);
39723973
#endif
39733974
curwin->w_buffer = buf;

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+
134,
782784
/**/
783785
133,
784786
/**/

0 commit comments

Comments
 (0)