diff options
author | James McCoy <jamessan@jamessan.com> | 2017-12-19 08:39:09 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-12-19 14:07:24 -0500 |
commit | 20708a07bfc1de2c56657123c41bb52919a728d8 (patch) | |
tree | 837ab6e11270171f8046e42b83117efdb767e19c /src/nvim/eval.c | |
parent | 53a530b2f54e69adb52d32718edf36df7c0b1b5b (diff) | |
download | rneovim-20708a07bfc1de2c56657123c41bb52919a728d8.tar.gz rneovim-20708a07bfc1de2c56657123c41bb52919a728d8.tar.bz2 rneovim-20708a07bfc1de2c56657123c41bb52919a728d8.zip |
vim-patch:8.0.0590: cannot add a context to locations
Problem: Cannot add a context to locations.
Solution: Add the "context" entry in location entries. (Yegappan Lakshmanan,
closes vim/vim#1012)
https://github.com/vim/vim/commit/8f77c5a4ec756f3f866bd6b18feb6fca6f2a2e91
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 1461ddb8f9..2355c8c813 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -5173,6 +5173,8 @@ bool garbage_collect(bool testing) ABORTING(set_ref_list)(sub.additional_elements, copyID); } + ABORTING(set_ref_in_quickfix)(copyID); + bool did_free = false; if (!abort) { // 2. Free lists and dictionaries that are not referenced. |