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 c4a908e commit 9a27c7fCopy full SHA for 9a27c7f
2 files changed
src/buffer.c
@@ -580,7 +580,11 @@ close_buffer(
580
581
/* When closing the current buffer stop Visual mode before freeing
582
* anything. */
583
- if (buf == curbuf)
+ if (buf == curbuf
584
+#if defined(EXITFREE)
585
+ && !entered_free_all_mem
586
+#endif
587
+ )
588
end_visual_mode();
589
590
/*
src/version.c
@@ -763,6 +763,8 @@ static char *(features[]) =
763
764
static int included_patches[] =
765
{ /* Add new patch number below this line */
766
+/**/
767
+ 2348,
768
/**/
769
2347,
770
0 commit comments