diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-04-08 09:51:22 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-07-21 13:20:37 +0200 |
commit | 989b585e105b4f343f639abf5daf820de19d4a26 (patch) | |
tree | 6ec6611413f4d996a5294dc06f9942d92ae6e194 /src/nvim/memory.c | |
parent | 696e24f311acbb0ccfa1818fb016f19f0497d950 (diff) | |
download | rneovim-989b585e105b4f343f639abf5daf820de19d4a26.tar.gz rneovim-989b585e105b4f343f639abf5daf820de19d4a26.tar.bz2 rneovim-989b585e105b4f343f639abf5daf820de19d4a26.zip |
highlight: refactor to use stateful representation
This allows us to keep track of the source higlight groups,
and not only the final combined highlights.
Diffstat (limited to 'src/nvim/memory.c')
-rw-r--r-- | src/nvim/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/memory.c b/src/nvim/memory.c index 82367fbff8..d3d0968a5c 100644 --- a/src/nvim/memory.c +++ b/src/nvim/memory.c @@ -697,7 +697,7 @@ void free_all_mem(void) /* screenlines (can't display anything now!) */ free_screenlines(); - clear_hl_tables(); + clear_hl_tables(false); list_free_log(); } |