diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2022-03-08 11:27:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 16:27:11 +0000 |
commit | 4f007a7f651ccd052f299000b49b9a389f713725 (patch) | |
tree | e6c6de05a505be7d435f4cd337c0340e12bc29ac | |
parent | bce1fd221814c705e8ad8172f8839305e0633127 (diff) | |
download | rneovim-4f007a7f651ccd052f299000b49b9a389f713725.tar.gz rneovim-4f007a7f651ccd052f299000b49b9a389f713725.tar.bz2 rneovim-4f007a7f651ccd052f299000b49b9a389f713725.zip |
fix: do not pass aucmd to the callback (#17650)
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 81432fefd3..2ec748a217 100644 --- 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; |