neovim

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

commit 4f007a7f651ccd052f299000b49b9a389f713725
parent bce1fd221814c705e8ad8172f8839305e0633127
Author: TJ DeVries <devries.timothyj@gmail.com>
Date:   Tue,  8 Mar 2022 11:27:11 -0500

fix: do not pass aucmd to the callback (#17650)


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

diff --git a/src/nvim/eval.c b/src/nvim/eval.c @@ -7789,7 +7789,7 @@ bool callback_call(Callback *const callback, const int argcount_in, typval_T *co break; case kCallbackLua: - nlua_call_ref(callback->data.luaref, "aucmd", args, false, NULL); + nlua_call_ref(callback->data.luaref, NULL, args, false, NULL); return false; break;