diff options
Diffstat (limited to 'Master/texmf-dist/tex/context/base/lpdf-nod.lua')
-rw-r--r-- | Master/texmf-dist/tex/context/base/lpdf-nod.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf-dist/tex/context/base/lpdf-nod.lua b/Master/texmf-dist/tex/context/base/lpdf-nod.lua index f40039b9461..0ae9001232a 100644 --- a/Master/texmf-dist/tex/context/base/lpdf-nod.lua +++ b/Master/texmf-dist/tex/context/base/lpdf-nod.lua @@ -1,6 +1,6 @@ if not modules then modules = { } end modules ['lpdf-nod'] = { version = 1.001, - comment = "companion to lpdf-ini.tex", + comment = "companion to lpdf-ini.mkiv", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files" @@ -20,7 +20,7 @@ local views = { -- beware, we do support the pdf keys but this is *not* official fith = 2, [variables.width] = 2, fitv = 3, [variables.height] = 3, fitb = 4, - fitbh = 5, [variables.minheight] = 5, + fitbh = 5, [variables.minwidth] = 5, fitbv = 6, [variables.minheight] = 6, fitr = 7, } @@ -31,7 +31,7 @@ function nodes.pdfliteral(str) return t end -function nodes.pdfannot(w,h,d,data,n) +function nodes.pdfannotation(w,h,d,data,n) local t = copy_node(pdfannot) if w and w ~= 0 then t.width = w end if h and h ~= 0 then t.height = h end @@ -41,7 +41,7 @@ function nodes.pdfannot(w,h,d,data,n) return t end -function nodes.pdfdest(w,h,d,name,view,n) +function nodes.pdfdestination(w,h,d,name,view,n) local t = copy_node(pdfdest) if w and w ~= 0 then t.width = w end if h and h ~= 0 then t.height = h end |