summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/mkiv/font-enh.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/context/base/mkiv/font-enh.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/mkiv/font-enh.lua16
1 files changed, 10 insertions, 6 deletions
diff --git a/Master/texmf-dist/tex/context/base/mkiv/font-enh.lua b/Master/texmf-dist/tex/context/base/mkiv/font-enh.lua
index 9ec116d47f3..b1fcd9be8df 100644
--- a/Master/texmf-dist/tex/context/base/mkiv/font-enh.lua
+++ b/Master/texmf-dist/tex/context/base/mkiv/font-enh.lua
@@ -115,7 +115,7 @@ local registerotffeature = otffeatures.register
----- tosixteen = fonts.mappings.tounicode16
-local function initialize(tfmdata)
+local function initializeunicoding(tfmdata)
local goodies = tfmdata.goodies
local newcoding = nil
for i=1,#goodies do
@@ -165,14 +165,18 @@ local function initialize(tfmdata)
end
end
-local specification = {
+local unicoding_specification = {
name = "unicoding",
description = "adapt unicode table",
initializers = {
- base = initialize,
- node = initialize,
+ base = initializeunicoding,
+ node = initializeunicoding,
},
+ -- manipulators = {
+ -- base = finalizeunicoding,
+ -- node = finalizeunicoding,
+ -- }
}
-registerotffeature(specification)
-registerafmfeature(specification)
+registerotffeature(unicoding_specification)
+registerafmfeature(unicoding_specification)