diff options
Diffstat (limited to 'vis-lua.c')
| -rw-r--r-- | vis-lua.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1198,6 +1198,9 @@ void vis_lua_init(Vis *vis) { luaL_newmetatable(L, "vis"); luaL_setfuncs(L, vis_lua, 0); + lua_pushstring(L, VERSION); + lua_setfield(L, -2, "VERSION"); + static const struct { enum VisMode id; const char *name; |
