From c7d2f08ba44243ac1db478a0d5239763932a6861 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sat, 21 May 2016 12:37:33 +0200 Subject: vis-lua: add vis.VERSION property It is a string in `git describe` format, as reporte by `vis -v`. --- vis-lua.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'vis-lua.c') diff --git a/vis-lua.c b/vis-lua.c index ad017b1..ee474e1 100644 --- a/vis-lua.c +++ b/vis-lua.c @@ -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; -- cgit v1.2.3