neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 659234c95a23307486a4b7496f3f4391a4bdbe58
parent aaea48aac6e227314ec08acec2a4c3c84538cab8
Author: bfredl <bjorn.linse@gmail.com>
Date:   Sun, 26 Feb 2023 13:55:29 +0100

fix(build): fix invalid use of EXITFREE

fixup 6942528 refactor(ui): ui_log() can now just be a function

Diffstat:
Msrc/nvim/ui.c | 2+-
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 }