Skip to content

Commit

Permalink
Merge pull request #98 from latex3/fix-97
Browse files Browse the repository at this point in the history
Avoid issues when object number reaches 2^16
  • Loading branch information
u-fischer authored Feb 18, 2024
2 parents 23bb61a + 1f45147 commit 0d3b480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tagpdf-backend.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ end
% \begin{macrocode}
local function @@_pdf_object_ref (name)
local tokenname = 'c__pdf_backend_object_'..name..'_int'
local object = token.create(tokenname).index..' 0 R'
local object = token.create(tokenname).mode ..' 0 R'
return object
end
ltx.@@.func.pdf_object_ref=@@_pdf_object_ref
Expand Down

0 comments on commit 0d3b480

Please sign in to comment.