From 659234c95a23307486a4b7496f3f4391a4bdbe58 Mon Sep 17 00:00:00 2001 From: bfredl Date: Sun, 26 Feb 2023 13:55:29 +0100 Subject: [PATCH] fix(build): fix invalid use of EXITFREE fixup 6942528 refactor(ui): ui_log() can now just be a function --- src/nvim/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }