summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/symb-ini.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/context/base/symb-ini.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/symb-ini.lua10
1 files changed, 6 insertions, 4 deletions
diff --git a/Master/texmf-dist/tex/context/base/symb-ini.lua b/Master/texmf-dist/tex/context/base/symb-ini.lua
index 559b032e490..deeef667a67 100644
--- a/Master/texmf-dist/tex/context/base/symb-ini.lua
+++ b/Master/texmf-dist/tex/context/base/symb-ini.lua
@@ -9,8 +9,10 @@ if not modules then modules = { } end modules ['symb-ini'] = {
local variables = interfaces.variables
-fonts.symbols = fonts.symbols or { }
-local symbols = fonts.symbols
+fonts = fonts or { } -- brrrr
+
+local symbols = fonts.symbols or { }
+fonts.symbols = symbols
local report_symbols = logs.reporter ("fonts","symbols")
local status_symbols = logs.messenger("fonts","symbols")
@@ -22,13 +24,13 @@ local function action(name,foundname)
-- context.startnointerference()
context.startreadingfile()
context.input(foundname)
- status_symbols("loaded: library '%s'",name)
+ status_symbols("library %a loaded",name)
context.stopreadingfile()
-- context.stopnointerference()
end
local function failure(name)
- report_symbols("unknown: library '%s'",name)
+ report_symbols("library %a is unknown",name)
end
function symbols.uselibrary(name)