aboutsummaryrefslogtreecommitdiff
path: root/scripts/gendispatch.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-04-13 16:37:09 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2016-10-22 10:51:32 +0200
commitf6968dc0f7775591108aebbfe30e597dd0882c91 (patch)
tree048c0d9ee6b37ce26d9e270ef8efd187eea99976 /scripts/gendispatch.lua
parent9d4fcec7c6b65ef04fd4416b014e96f33b1f708a (diff)
downloadrneovim-f6968dc0f7775591108aebbfe30e597dd0882c91.tar.gz
rneovim-f6968dc0f7775591108aebbfe30e597dd0882c91.tar.bz2
rneovim-f6968dc0f7775591108aebbfe30e597dd0882c91.zip
api: call multiple methods atomically (useful in async contexts)
remove unused response_id parameter of handle_nvim_... helpers
Diffstat (limited to 'scripts/gendispatch.lua')
-rw-r--r--scripts/gendispatch.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gendispatch.lua b/scripts/gendispatch.lua
index 00ed84212b..96cf2d3a11 100644
--- a/scripts/gendispatch.lua
+++ b/scripts/gendispatch.lua
@@ -246,7 +246,7 @@ for i = 1, #functions do
if fn.impl_name == nil then
local args = {}
- output:write('Object handle_'..fn.name..'(uint64_t channel_id, uint64_t request_id, Array args, Error *error)')
+ output:write('Object handle_'..fn.name..'(uint64_t channel_id, Array args, Error *error)')
output:write('\n{')
output:write('\n Object ret = NIL;')
-- Declare/initialize variables that will hold converted arguments