diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-01-05 13:31:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-05 13:31:47 +0100 |
commit | 19591e9918533b7c3751c5d090574ba50e4ebe1e (patch) | |
tree | f269ba34ff27ef18b497fa8cde11de93bb43d9e0 | |
parent | c889f754367bdd0783276e74120868e44e6ae863 (diff) | |
download | rneovim-19591e9918533b7c3751c5d090574ba50e4ebe1e.tar.gz rneovim-19591e9918533b7c3751c5d090574ba50e4ebe1e.tar.bz2 rneovim-19591e9918533b7c3751c5d090574ba50e4ebe1e.zip |
fix(ui): fix fragile UI_CALL macro invocation (#21656)
Fixup #21605
Depending on the phase of the moon, UI_CALL expanding UI_LOG expanding the default value of entered_free_all_mem might or might not work.
-rw-r--r-- | src/nvim/ui.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index 7d7aaa9903..7775d98983 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -115,10 +115,6 @@ static char uilog_last_event[1024] = { 0 }; # include "ui_events_call.generated.h" #endif -#ifndef EXITFREE -# undef entered_free_all_mem -#endif - void ui_init(void) { default_grid.handle = 1; |