summaryrefslogtreecommitdiff
path: root/luaotfload-legacy-attributes.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2013-05-10 21:11:34 +0200
committerPhilipp Gesang <phg42.2a@gmail.com>2013-05-10 21:11:34 +0200
commitc79bb2abad019324e8a1701c0310e09867cf1c1b (patch)
tree84c3168a005ad25b2c09f328e83b3c1fda6b56f2 /luaotfload-legacy-attributes.lua
parente6b84660875c89de138ebc0e9c9e9e9dbaa6db76 (diff)
downloadluaotfload-c79bb2abad019324e8a1701c0310e09867cf1c1b.tar.gz
import legacy files
Diffstat (limited to 'luaotfload-legacy-attributes.lua')
-rw-r--r--luaotfload-legacy-attributes.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/luaotfload-legacy-attributes.lua b/luaotfload-legacy-attributes.lua
new file mode 100644
index 0000000..c6130b4
--- /dev/null
+++ b/luaotfload-legacy-attributes.lua
@@ -0,0 +1,27 @@
+-----------------------------------------------------------------------
+-- 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
+