diff options
author | Karl Berry <karl@freefriends.org> | 2015-09-22 22:26:34 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-09-22 22:26:34 +0000 |
commit | 834fbf692e502b3f10cee9adcbb9d7833874b8c5 (patch) | |
tree | 6f0cfc2a8476bd9696f71083cefa988bf52930dc /Master/texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua | |
parent | aa040bf06e9ffb30895fc92178a8f1aa44fda1de (diff) |
lualatex-math (22sep15)
git-svn-id: svn://tug.org/texlive/trunk@38436 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua')
-rw-r--r-- | Master/texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Master/texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua b/Master/texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua index b31a4e7ca1f..2513e7b1452 100644 --- a/Master/texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua +++ b/Master/texmf-dist/tex/lualatex/lualatex-math/lualatex-math.lua @@ -20,11 +20,9 @@ -- and version 1.3c or later is part of all distributions of -- LaTeX version 2009/09/24 or later. -- -require("luatexbase.modutils") -require("luatexbase.cctb") lualatex = lualatex or {} lualatex.math = lualatex.math or {} -local err, warn, info, log = luatexbase.provides_module({ +luatexbase.provides_module({ name = "lualatex-math", date = "2013/08/03", version = 1.3, @@ -33,7 +31,8 @@ local err, warn, info, log = luatexbase.provides_module({ licence = "LPPL v1.3+" }) local unpack = unpack or table.unpack -local cctb = luatexbase.catcodetables +local cctb = luatexbase.catcodetables or + {string = luatexbase.registernumber("catcodetable@string")} function lualatex.math.print_fam_slot(char) local code = tex.getmathcode(char) local class, family, slot = unpack(code) |