mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 23:06:14 +00:00
refactor(shada): rework msgpack decoding without msgpack-c
This also makes shada reading slightly faster due to avoiding some copying and allocation. Use keysets to drive decoding of msgpack maps for shada entries.
This commit is contained in:
@@ -290,7 +290,7 @@ void restore_search_patterns(void)
|
||||
static inline void free_spat(SearchPattern *const spat)
|
||||
{
|
||||
xfree(spat->pat);
|
||||
tv_dict_unref(spat->additional_data);
|
||||
xfree(spat->additional_data);
|
||||
}
|
||||
|
||||
#if defined(EXITFREE)
|
||||
|
Reference in New Issue
Block a user