diff options
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaxml/luaxml-stack.lua')
-rw-r--r-- | Master/texmf-dist/tex/luatex/luaxml/luaxml-stack.lua | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-stack.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-stack.lua index 54386ff84d3..6c2d83610fd 100644 --- a/Master/texmf-dist/tex/luatex/luaxml/luaxml-stack.lua +++ b/Master/texmf-dist/tex/luatex/luaxml/luaxml-stack.lua @@ -1,7 +1,9 @@ -- Code from http://lua-users.org/wiki/SimpleStack -module(...,package.seeall) -Stack = {} - +--module(...,package.seeall) +local M={} +local Stack = {} +M.Stack = Stack +local unpack = table.unpack -- Create a Table with stack functions function Stack:Create() @@ -61,3 +63,5 @@ function Stack:Create() end return t end + +return M |