diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-16 10:59:11 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-19 15:03:07 +0100 |
commit | 1798a4b5e9f0ae56cd800095f79423fea5cae8ca (patch) | |
tree | d7292e2164461bee8638dfb9b37174052e0f5a01 /src/nvim/lua/executor.c | |
parent | de28a0f84c577e264f37cd001b03d640db7d5ef9 (diff) | |
download | rneovim-1798a4b5e9f0ae56cd800095f79423fea5cae8ca.tar.gz rneovim-1798a4b5e9f0ae56cd800095f79423fea5cae8ca.tar.bz2 rneovim-1798a4b5e9f0ae56cd800095f79423fea5cae8ca.zip |
build: bump uncrustify version
Biggest change is that uncrustify is silent during linting.
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r-- | src/nvim/lua/executor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c index 12304b6f11..c61569eb9a 100644 --- a/src/nvim/lua/executor.c +++ b/src/nvim/lua/executor.c @@ -474,7 +474,8 @@ static int nlua_wait(lua_State *lstate) (int)timeout, got_int || (is_function ? nlua_wait_condition(lstate, &pcall_status, - &callback_result) : false)); + &callback_result) : + false)); // Stop dummy timer time_watcher_stop(tw); |