summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/lpdf-wid.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-04-08 00:43:40 +0000
committerKarl Berry <karl@freefriends.org>2013-04-08 00:43:40 +0000
commit824f7b0903de8ad7f6ee3d7656005e4c59155e06 (patch)
treeabfc8673ef9916f3ab7074e811207384c301492b /Master/texmf-dist/tex/context/base/lpdf-wid.lua
parent689aefb0727676ed3cddf331337b4be226495e72 (diff)
context import for TL13, from www.pragma-ade.com/context/beta/cont-tmf.zip
git-svn-id: svn://tug.org/texlive/trunk@29731 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/context/base/lpdf-wid.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/lpdf-wid.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/texmf-dist/tex/context/base/lpdf-wid.lua b/Master/texmf-dist/tex/context/base/lpdf-wid.lua
index 13940be9c86..9ea4744f164 100644
--- a/Master/texmf-dist/tex/context/base/lpdf-wid.lua
+++ b/Master/texmf-dist/tex/context/base/lpdf-wid.lua
@@ -185,7 +185,7 @@ local function flushembeddedfiles()
local e = pdfarray()
for tag, reference in next, filestreams do
if not reference then
- report_attachment("unreferenced file: tag '%s'",tag)
+ report_attachment("unreferenced file, tag %a",tag)
elseif referenced[tag] == "hidden" then
e[#e+1] = pdfstring(tag)
e[#e+1] = reference -- already a reference
@@ -279,13 +279,13 @@ function nodeinjections.attachfile(specification)
else
filename = specification.file
if not filename or filename == "" then
- report_attachment("missing file specification: registered '%s', using registered instead",registered)
+ report_attachment("no file specified, using registered %a instead",registered)
filename = registered
specification.file = registered
end
local foundname = resolvers.findbinfile(filename) or ""
if foundname == "" or not lfs.isfile(foundname) then
- report_attachment("invalid file specification: registered '%s', filename '%s'",registered,filename)
+ report_attachment("invalid filename %a, ignoring registered %a",filename,registered)
return nil
else
specification.foundname = foundname
@@ -317,7 +317,7 @@ function nodeinjections.attachfile(specification)
attachments[registered] = aref
end
if not aref then
- report_attachment("skipping: registered '%s'",registered)
+ report_attachment("skipping attachment, registered %a",registered)
-- already reported
elseif specification.method == v_hidden then
referenced[hash] = "hidden"
@@ -595,7 +595,7 @@ end
local function insertrenderingobject(specification) -- todo
local label = specification.label
if not mf[label] then
- report_media("todo: unknown medium '%s'",label or "?")
+ report_media("unknown medium, label %a",label)
local clip = pdfdictionary { -- does not work that well one level up
Type = pdfconstant("MediaClip"),
S = pdfconstant("MCD"),