diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2014-01-02 21:01:48 +0100 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2014-01-02 21:01:48 +0100 |
commit | 118a01f6103d2d80e6c18bf9f7640ecf23c04cd4 (patch) | |
tree | 7130c0a4684970aa285430c0f5517c440a16e8d5 /luaotfload-legacy-attributes.lua | |
parent | 298dffaece66c307f9dcbfb23bba855385aa7132 (diff) | |
download | luaotfload-118a01f6103d2d80e6c18bf9f7640ecf23c04cd4.tar.gz |
[*] annihilate legacy code
Diffstat (limited to 'luaotfload-legacy-attributes.lua')
-rw-r--r-- | luaotfload-legacy-attributes.lua | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/luaotfload-legacy-attributes.lua b/luaotfload-legacy-attributes.lua deleted file mode 100644 index c6130b4..0000000 --- a/luaotfload-legacy-attributes.lua +++ /dev/null @@ -1,27 +0,0 @@ ------------------------------------------------------------------------ --- FILE: otfl-luat-att.lua --- USAGE: with old luaotfload --- DESCRIPTION: setting attributes abide luatexbase rules --- REQUIREMENTS: some old luatex --- AUTHOR: Philipp Gesang (Phg), <phg42.2a@gmail.com> --- CREATED: 2013-05-10 20:37:19+0200 ------------------------------------------------------------------------ --- - -if not modules then modules = { } end modules ['otfl-luat-att'] = { - version = math.pi/42, - comment = "companion to luaotfload.lua", - author = "Philipp Gesang", - copyright = "Luaotfload Development Team", - license = "GNU GPL v2" -} - -function attributes.private(name) - local attr = "otfl@" .. name - local number = luatexbase.attributes[attr] - if not number then - number = luatexbase.new_attribute(attr) - end - return number -end - |