diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-03-08 12:56:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 12:56:45 +0100 |
commit | bce1fd221814c705e8ad8172f8839305e0633127 (patch) | |
tree | 7b23cf469082c3ac85b05e29b5332e7a604f56c1 | |
parent | 2783f4cc4a410cd3b73e8cdfbdf8c859c426c6c6 (diff) | |
download | rneovim-bce1fd221814c705e8ad8172f8839305e0633127.tar.gz rneovim-bce1fd221814c705e8ad8172f8839305e0633127.tar.bz2 rneovim-bce1fd221814c705e8ad8172f8839305e0633127.zip |
chore(aucmd): remove left-over debug log (#17649)
-rw-r--r-- | src/nvim/eval.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index c5c03455b7..81432fefd3 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -7789,7 +7789,6 @@ bool callback_call(Callback *const callback, const int argcount_in, typval_T *co break; case kCallbackLua: - ILOG(" We tryin to call dat dang lua ref "); nlua_call_ref(callback->data.luaref, "aucmd", args, false, NULL); return false; |