summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/lxml-ent.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/context/base/lxml-ent.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/lxml-ent.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/Master/texmf-dist/tex/context/base/lxml-ent.lua b/Master/texmf-dist/tex/context/base/lxml-ent.lua
index be69dec00ee..a5c5bc389a6 100644
--- a/Master/texmf-dist/tex/context/base/lxml-ent.lua
+++ b/Master/texmf-dist/tex/context/base/lxml-ent.lua
@@ -7,9 +7,8 @@ if not modules then modules = { } end modules ['lxml-ent'] = {
}
local type, next, tonumber = type, next, tonumber
-local utf = unicode.utf8
local byte, format = string.byte, string.format
-local utfupper, utfchar = utf.upper, utf.char
+local utfchar = utf.char
local lpegmatch = lpeg.match
--[[ldx--
@@ -36,7 +35,7 @@ local entities = xml.entities -- maybe some day properties
function xml.registerentity(key,value)
entities[key] = value
if trace_entities then
- report_xml("registering entity '%s' as: %s",key,value)
+ report_xml("registering entity %a as %a",key,value)
end
end