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/ex_cmds.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/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 5d5b342c35..4e98319723 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -2527,9 +2527,9 @@ int do_ecmd(int fnum, char_u *ffname, char_u *sfname, exarg_T *eap, linenr_T new // Close the link to the current buffer. This will set // oldwin->w_buffer to NULL. u_sync(false); - const bool did_decrement = close_buffer(oldwin, curbuf, - (flags & ECMD_HIDE) || curbuf->terminal ? 0 : DOBUF_UNLOAD, - false); + const bool did_decrement + = close_buffer(oldwin, curbuf, (flags & ECMD_HIDE) || curbuf->terminal ? 0 : DOBUF_UNLOAD, + false, false); // Autocommands may have closed the window. if (win_valid(the_curwin)) { |