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 7c0d06c + c4bfeda commit 4bf9153Copy full SHA for 4bf9153
src/ex_cmds.c
@@ -3967,7 +3967,8 @@ do_ecmd(
3967
* <VN> We could instead free the synblock
3968
* and re-attach to buffer, perhaps.
3969
*/
3970
- if (curwin->w_s == &(curwin->w_buffer->b_s))
+ if (curwin->w_buffer != NULL
3971
+ && curwin->w_s == &(curwin->w_buffer->b_s))
3972
curwin->w_s = &(buf->b_s);
3973
#endif
3974
curwin->w_buffer = buf;
src/version.c
@@ -779,6 +779,8 @@ static char *(features[]) =
779
780
static int included_patches[] =
781
{ /* Add new patch number below this line */
782
+/**/
783
+ 134,
784
/**/
785
133,
786
0 commit comments