comparison src/quickfix.c @ 23278:51b1a7e3e4ab v8.2.2185

patch 8.2.2185: BufUnload is not triggered for the quickfix dummy buffer Commit: https://github.com/vim/vim/commit/1cfb9bb5c06c07f14475f39c4eb57fea1f0dfb69 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 22 11:40:45 2020 +0100 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 https://github.com/vim/vim/issues/7518, closes https://github.com/vim/vim/issues/7517) Fix white space around "=".
author Bram Moolenaar <Bram@vim.org>
date Tue, 22 Dec 2020 11:45:03 +0100
parents db97415750ce
children f8382c4e6551
comparison
equal deleted inserted replaced
23277:798b339d466f 23278:51b1a7e3e4ab
6511 // returns FALSE when wiping out the buffer. Otherwise it doesn't 6511 // returns FALSE when wiping out the buffer. Otherwise it doesn't
6512 // work when got_int is set. 6512 // work when got_int is set.
6513 enter_cleanup(&cs); 6513 enter_cleanup(&cs);
6514 #endif 6514 #endif
6515 6515
6516 wipe_buffer(buf, FALSE); 6516 wipe_buffer(buf, TRUE);
6517 6517
6518 #if defined(FEAT_EVAL) 6518 #if defined(FEAT_EVAL)
6519 // Restore the error/interrupt/exception state if not discarded by a 6519 // Restore the error/interrupt/exception state if not discarded by a
6520 // new aborting error, interrupt, or uncaught exception. 6520 // new aborting error, interrupt, or uncaught exception.
6521 leave_cleanup(&cs); 6521 leave_cleanup(&cs);