diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-11-13 11:40:13 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-11-13 11:40:13 -0500 |
commit | 4cfda1ff7d1aa75b67aed5566f39a390939da3f6 (patch) | |
tree | c55f40cb88ad16150dee826bfc20f78771235b5a /src/nvim/memory.c | |
parent | 08a1eb7ae1bb687dec51c9b0b9630b6ae6d1c263 (diff) | |
parent | 1c43452afcada9b7163e33d47c7b6bdaf82abded (diff) | |
download | rneovim-4cfda1ff7d1aa75b67aed5566f39a390939da3f6.tar.gz rneovim-4cfda1ff7d1aa75b67aed5566f39a390939da3f6.tar.bz2 rneovim-4cfda1ff7d1aa75b67aed5566f39a390939da3f6.zip |
Merge pull request #3630 from oni-link/fix.issue.3588
normal.c: No garbage collection while handling an event in normal mode
Diffstat (limited to 'src/nvim/memory.c')
-rw-r--r-- | src/nvim/memory.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/memory.c b/src/nvim/memory.c index d25dc7c941..6d386f3599 100644 --- a/src/nvim/memory.c +++ b/src/nvim/memory.c @@ -42,8 +42,6 @@ void try_to_free_memory(void) clear_sb_text(); // Try to save all buffers and release as many blocks as possible mf_release_all(); - // cleanup recursive lists/dicts - garbage_collect(); trying_to_free = false; } |