diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-21 08:32:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 08:32:02 -0400 |
commit | 0f590ae2a8bcebcb1398cb30997bd718d6f466e5 (patch) | |
tree | c969a5ba6f92663d01d1ce9ccb67c57763330218 /src/nvim/window.c | |
parent | 77dc891bfbdcdb84f919f6ff5b535b385c121007 (diff) | |
parent | dff3a0d4495df7de085d442fd0ad15b5a8b9355d (diff) | |
download | rneovim-0f590ae2a8bcebcb1398cb30997bd718d6f466e5.tar.gz rneovim-0f590ae2a8bcebcb1398cb30997bd718d6f466e5.tar.bz2 rneovim-0f590ae2a8bcebcb1398cb30997bd718d6f466e5.zip |
Merge pull request #13123 from janlazo/vim-8.2.1871
vim-patch:8.2.{6,1002,1871}
Revert patches 8.1.0877 and 8.1.1015 from #13083.
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 7d08336c25..4931221e7a 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -2582,10 +2582,6 @@ int win_close(win_T *win, bool free_buf) if (win->w_buffer != NULL) { reset_synblock(win); } - // When the quickfix/location list window is closed, unlist the buffer. - if (win->w_buffer != NULL && bt_quickfix(win->w_buffer)) { - win->w_buffer->b_p_bl = false; - } /* * Close the link to the buffer. |