summaryrefslogtreecommitdiff
path: root/tex/context/base/lpdf-xmp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/lpdf-xmp.lua')
-rw-r--r--tex/context/base/lpdf-xmp.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/context/base/lpdf-xmp.lua b/tex/context/base/lpdf-xmp.lua
index 02d37342b..fbdea8815 100644
--- a/tex/context/base/lpdf-xmp.lua
+++ b/tex/context/base/lpdf-xmp.lua
@@ -83,7 +83,7 @@ local xmp, xmpfile, xmpname = nil, nil, "lpdf-pdx.xml"
local function setxmpfile(name)
if xmp then
- report_xmp("discarding loaded file '%s'",xmpfile)
+ report_xmp("discarding loaded file %a",xmpfile)
xmp = nil
end
xmpfile = name ~= "" and name
@@ -102,7 +102,7 @@ local function valid_xmp()
xmpfile = resolvers.findfile(xmpname) or ""
end
if xmpfile ~= "" then
- report_xmp("using file '%s'",xmpfile)
+ report_xmp("using file %a",xmpfile)
end
local xmpdata = (xmpfile ~= "" and io.loaddata(xmpfile)) or ""
xmp = xml.convert(xmpdata)
@@ -126,7 +126,7 @@ function lpdf.addtoinfo(tag,pdfvalue,strvalue)
addtoinfo(tag,pdfvalue)
local value = strvalue or gsub(tostring(pdfvalue),"^%((.*)%)$","%1") -- hack
if trace_info then
- report_info("set '%s' to '%s'",tag,value)
+ report_info("set %a to %a",tag,value)
end
addxmpinfo(tag,value)
end