summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/lpdf-epa.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/lpdf-epa.lua')
-rw-r--r--tex/context/base/mkiv/lpdf-epa.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/tex/context/base/mkiv/lpdf-epa.lua b/tex/context/base/mkiv/lpdf-epa.lua
index 570d73881..01c4e237f 100644
--- a/tex/context/base/mkiv/lpdf-epa.lua
+++ b/tex/context/base/mkiv/lpdf-epa.lua
@@ -295,6 +295,12 @@ function codeinjections.mergereferences(specification)
if annotation.Subtype == "Link" then
local a = annotation.A
if not a then
+ local d = annotation.Dest
+ if d then
+ annotation.A = { S = "GoTo", D = d } -- no need for a dict
+ end
+ end
+ if not a then
report_link("missing link annotation")
else
local x, y, w, h = getdimensions(annotation,llx,lly,xscale,yscale,width,height,report_link)