diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-02-16 06:56:12 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2024-02-16 07:18:06 +0800 |
commit | 163add40b8b98b91dfb8eff589f49dc75f1032ea (patch) | |
tree | c6502c68406be5ae3ef88e292f81cff9f9d71ac2 /src/nvim/quickfix.c | |
parent | c1fa8789c1ba5549dc37163dfa9be039c5092a41 (diff) | |
download | rneovim-163add40b8b98b91dfb8eff589f49dc75f1032ea.tar.gz rneovim-163add40b8b98b91dfb8eff589f49dc75f1032ea.tar.bz2 rneovim-163add40b8b98b91dfb8eff589f49dc75f1032ea.zip |
vim-patch:9.1.0113: duplicate code when cleaning undo stack
Problem: duplicate code when cleaning undo stack
Solution: refactor undo cleanup into a single public function
related: vim/vim#13928
https://github.com/vim/vim/commit/9071ed8107244e0c56a16b77d1c28e975cb21dd2
Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 16290b76c6..651ebc9f93 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -4159,8 +4159,7 @@ static void qf_fill_buffer(qf_list_T *qfl, buf_T *buf, qfline_T *old_last, int q } // Remove all undo information - u_blockfree(curbuf); - u_clearall(curbuf); + u_clearallandblockfree(curbuf); } // Check if there is anything to display |