commit 48990a7077bb6767f3d218907344ee7fb0bfaaff
parent aaea48aac6e227314ec08acec2a4c3c84538cab8
Author: bfredl <bjorn.linse@gmail.com>
Date: Sun, 26 Feb 2023 14:20:26 +0100
Merge pull request #22417 from bfredl/antifree
fix(build): fix invalid use of EXITFREE
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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
}