diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-04-05 16:54:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-04-05 16:54:08 +0200 |
commit | 1dced5727f8f4f51fd623d9f6e672e70e1793d13 (patch) | |
tree | e1c77c699008f7096d30aef926bf4265615ba597 /src/proto/if_lua.pro | |
parent | e0ebfd75077c5010f31fcecefb87f9fe06889131 (diff) | |
download | vim-1dced5727f8f4f51fd623d9f6e672e70e1793d13.zip |
updated for version 7.3.490
Problem: Member confusion in Lua interface.
Solution: Fix it. Add luaeval(). (Taro Muraoka, Luis Carvalho)
Diffstat (limited to 'src/proto/if_lua.pro')
-rw-r--r-- | src/proto/if_lua.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/if_lua.pro b/src/proto/if_lua.pro index 3bac4cce8..8db66a693 100644 --- a/src/proto/if_lua.pro +++ b/src/proto/if_lua.pro @@ -6,4 +6,6 @@ void ex_luado __ARGS((exarg_T *eap)); void ex_luafile __ARGS((exarg_T *eap)); void lua_buffer_free __ARGS((buf_T *buf)); void lua_window_free __ARGS((win_T *win)); +void do_luaeval __ARGS((char_u *str, typval_T *arg, typval_T *rettv)); +void set_ref_in_lua __ARGS((int copyID)); /* vim: set ft=c : */ |