blob: 30ebd6aef33e37c9af27632a32125667854378b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--
-- This is file `cctb.lua',
-- generated with the docstrip utility.
--
-- The original source files were:
--
-- luatexbase-cctb.dtx (with options: `luamodule')
--
-- See the aforementioned source file(s) for copyright and licensing information.
--
module('luatexbase', package.seeall)
catcodetables = {}
function catcodetabledef_from_tex(name, number)
catcodetables[name] = tonumber(number)
end
function catcodetable_do_shortcuts()
local cat = catcodetables
cat['latex'] = cat.CatcodeTableLaTeX
cat['latex-package'] = cat.CatcodeTableLaTeXAtLetter
cat['latex-atletter'] = cat.CatcodeTableLaTeXAtLetter
cat['ini'] = cat.CatcodeTableIniTeX
cat['expl3'] = cat.CatcodeTableExpl
cat['expl'] = cat.CatcodeTableExpl
cat['string'] = cat.CatcodeTableString
cat['other'] = cat.CatcodeTableOther
end
--
-- End of File `cctb.lua'.
|