blob: 4b6d8162f564e276b1e3dfe76e750c2d23a47bc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
if not modules then modules = { } end modules ['font-com'] = {
version = 1.002,
comment = "Luaotfload backward compatibility module",
author = "Elie Roux",
copyright = "Luaotfload Development Team",
license = "GNU GPL v2"
}
fonts = fonts or { }
local fonts = fonts
-- In new ConTeXt versions, fonts.identifiers is renamed in
-- fonts.hashes.identifiers, this break fontspec from TeXLive 2012
if not fonts.identifiers then
fonts.identifiers = fonts.hashes.identifiers
end
|