diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-02-26 13:55:29 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-02-26 13:55:29 +0100 |
commit | 659234c95a23307486a4b7496f3f4391a4bdbe58 (patch) | |
tree | 6bdacda401491f9b4cb76d0c6c0f3e76fb34fc2e | |
parent | aaea48aac6e227314ec08acec2a4c3c84538cab8 (diff) | |
download | rneovim-659234c95a23307486a4b7496f3f4391a4bdbe58.tar.gz rneovim-659234c95a23307486a4b7496f3f4391a4bdbe58.tar.bz2 rneovim-659234c95a23307486a4b7496f3f4391a4bdbe58.zip |
fix(build): fix invalid use of EXITFREE
fixup 6942528 refactor(ui): ui_log() can now just be a function
-rw-r--r-- | src/nvim/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index a2c6d9431c..73545441d3 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -71,7 +71,7 @@ static const char *uilog_last_event = NULL; static void ui_log(const char *funname) { -# ifndef EXITFREE +# ifdef EXITFREE if (entered_free_all_mem) { return; // do nothing, we cannot log now } |