diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2016-04-13 09:21:32 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2016-04-13 09:21:32 -0300 |
commit | c18d5917e3442162f20eb9e95ba4bcffbbd8408b (patch) | |
tree | b85f5789efce5713b5e5f05b27fda6166afb17c3 /scripts/msgpack-gen.lua | |
parent | 10a8bb02acabe2c3a0d7cd2e9d8462e0228769a1 (diff) | |
download | rneovim-c18d5917e3442162f20eb9e95ba4bcffbbd8408b.tar.gz rneovim-c18d5917e3442162f20eb9e95ba4bcffbbd8408b.tar.bz2 rneovim-c18d5917e3442162f20eb9e95ba4bcffbbd8408b.zip |
Update lua client to 0.0.1-24
The new version of the lua client uses libmpack as a backend, and some test
scripts had to be updated to reflect that.
Diffstat (limited to 'scripts/msgpack-gen.lua')
-rw-r--r-- | scripts/msgpack-gen.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/msgpack-gen.lua b/scripts/msgpack-gen.lua index d50ebd85a2..c726db3920 100644 --- a/scripts/msgpack-gen.lua +++ b/scripts/msgpack-gen.lua @@ -1,5 +1,5 @@ lpeg = require('lpeg') -msgpack = require('MessagePack') +mpack = require('mpack') -- lpeg grammar for building api metadata from a set of header files. It -- ignores comments and preprocessor commands and parses a very small subset @@ -115,7 +115,7 @@ static const uint8_t msgpack_metadata[] = { ]]) -- serialize the API metadata using msgpack and embed into the resulting -- binary for easy querying by clients -packed = msgpack.pack(functions) +packed = mpack.pack(functions) for i = 1, #packed do output:write(string.byte(packed, i)..', ') if i % 10 == 0 then |