From cd4b649136b9c4529a6f2f9043ad0c7335126d71 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 23 Jun 2021 22:46:02 -0400 Subject: vim-patch:8.2.2185: BufUnload is not triggered for the quickfix dummy buffer Problem: BufUnload is not triggered for the quickfix dummy buffer. Solution: Do trigger BufUnload. (Pontus Leitzler,closes vim/vim#7518, closes vim/vim#7517) Fix white space around "=". https://github.com/vim/vim/commit/1cfb9bb5c06c07f14475f39c4eb57fea1f0dfb69 --- src/nvim/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/buffer.c') diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 6a50264e0f..0b72dd1885 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -5665,7 +5665,7 @@ bool buf_contents_changed(buf_T *buf) void wipe_buffer( buf_T *buf, - int aucmd // When true trigger autocommands. + bool aucmd // When true trigger autocommands. ) { if (!aucmd) { -- cgit