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 e0ab94e commit 30180b8Copy full SHA for 30180b8
2 files changed
src/buffer.c
@@ -476,13 +476,15 @@ close_buffer(
476
unload_buf = TRUE;
477
#endif
478
479
+#ifdef FEAT_AUTOCMD
480
/* Disallow deleting the buffer when it is locked (already being closed or
481
* halfway a command that relies on it). Unloading is allowed. */
482
if (buf->b_locked > 0 && (del_buf || wipe_buf))
483
{
484
EMSG(_("E937: Attempt to delete a buffer that is in use"));
485
return;
486
}
487
+#endif
488
489
if (win != NULL
490
#ifdef FEAT_WINDOWS
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
+ 2325,
768
/**/
769
2324,
770
0 commit comments