neovim

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

commit 4b3845be2e497f96f855782d52dd1d02a4cabb6f
parent a18982cb839d7f05e32b1026bbd99b8aa34ad189
Author: James Tirta Halim <tirtajames45@gmail.com>
Date:   Mon,  3 Jun 2024 11:04:54 +0700

fixup: LNUL

Diffstat:
Msrc/nvim/mbyte.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c @@ -1500,7 +1500,7 @@ int utf8_to_utf16(const char *utf8, int utf8len, wchar_t **utf16) return uv_translate_sys_error(GetLastError()); } - (*utf16)[bufsize] = LNUL; + (*utf16)[bufsize] = L'\0'; return 0; }