summaryrefslogtreecommitdiff
path: root/tex/context/base/font-trt.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/font-trt.lua')
-rw-r--r--tex/context/base/font-trt.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/tex/context/base/font-trt.lua b/tex/context/base/font-trt.lua
index 319863fa3..ebe8007b7 100644
--- a/tex/context/base/font-trt.lua
+++ b/tex/context/base/font-trt.lua
@@ -17,14 +17,17 @@ something in a manual). It's one of the few places where an lfg file gets loaded
outside the goodies manager.</p>
--ldx]]--
-local treatments = utilities.storage.allocate()
+local treatments = fonts.treatments or { }
fonts.treatments = treatments
-local treatmentdata = { }
+
+local treatmentdata = treatments.data or utilities.storage.allocate()
treatments.data = treatmentdata
+
treatments.filename = "treatments.lfg"
local trace_treatments = false trackers.register("fonts.treatments", function(v) trace_treatments = v end)
local report_treatment = logs.reporter("fonts","treatment")
+
treatments.report = report_treatment
function treatments.trace(...)