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 5a15b6a commit f1d1347Copy full SHA for f1d1347
src/ex_cmds.c
@@ -3968,8 +3968,8 @@ do_ecmd(
3968
* <VN> We could instead free the synblock
3969
* and re-attach to buffer, perhaps.
3970
*/
3971
- if (curwin->w_buffer != NULL
3972
- && curwin->w_s == &(curwin->w_buffer->b_s))
+ if (curwin->w_buffer == NULL
+ || curwin->w_s == &(curwin->w_buffer->b_s))
3973
curwin->w_s = &(buf->b_s);
3974
#endif
3975
curwin->w_buffer = buf;
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 707,
769
/**/
770
706,
771
0 commit comments