diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-04-07 21:46:07 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-04-08 08:54:07 +0800 |
commit | 44b59d1a696b35d2520dbea2de3aab01e740a7ca (patch) | |
tree | aaaf5fc54edfdb48fe0fbb3fed400a7d9864bc65 /src/nvim/window.c | |
parent | 8f3245dbfa91d384215c78da32e4d1739c8a1f34 (diff) | |
download | rneovim-44b59d1a696b35d2520dbea2de3aab01e740a7ca.tar.gz rneovim-44b59d1a696b35d2520dbea2de3aab01e740a7ca.tar.bz2 rneovim-44b59d1a696b35d2520dbea2de3aab01e740a7ca.zip |
vim-patch:8.2.0004: get E685 and E931 if buffer reload is interrupted
Problem: Get E685 and E931 if buffer reload is interrupted.
Solution: Do not abort deleting a dummy buffer. (closes vim/vim#5361)
https://github.com/vim/vim/commit/a6e8f888e7fc31b8ab7233509254fb2e2fe4089f
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index e471c0b304..20f2447bbe 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -2563,7 +2563,7 @@ static void win_close_buffer(win_T *win, bool free_buf, bool abort_if_last) bufref_T bufref; set_bufref(&bufref, curbuf); win->w_closing = true; - close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, abort_if_last); + close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, abort_if_last, false); if (win_valid_any_tab(win)) { win->w_closing = false; } @@ -2885,7 +2885,7 @@ void win_close_othertab(win_T *win, int free_buf, tabpage_T *tp) if (win->w_buffer != NULL) { // Close the link to the buffer. - close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, false); + close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, false, false); } // Careful: Autocommands may have closed the tab page or made it the |