diff options
author | Karl Berry <karl@freefriends.org> | 2020-06-04 21:08:08 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-06-04 21:08:08 +0000 |
commit | fb965ebe584a58c4a1b6fc16aafa0bf548769b82 (patch) | |
tree | 1391eb47affe0b7f16b0291942c9b5841d914508 /Master/texmf-dist/scripts | |
parent | 4177d2b15acdcb38887f3649667696b9dbb5aad7 (diff) |
pdftexcmds (4jun20)
git-svn-id: svn://tug.org/texlive/trunk@55416 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r-- | Master/texmf-dist/scripts/pdftexcmds/pdftexcmds.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/pdftexcmds/pdftexcmds.lua b/Master/texmf-dist/scripts/pdftexcmds/pdftexcmds.lua index 1546160732e..9c9a5d51e68 100644 --- a/Master/texmf-dist/scripts/pdftexcmds/pdftexcmds.lua +++ b/Master/texmf-dist/scripts/pdftexcmds/pdftexcmds.lua @@ -9,7 +9,7 @@ -- This is a generated file. -- -- Project: pdftexcmds --- Version: 2019/11/24 v0.31 +-- Version: 2020-06-04 v0.32 -- -- Copyright (C) -- 2007, 2009-2011 Heiko Oberdiek @@ -45,7 +45,7 @@ local pdftexcmds = oberdiek.pdftexcmds or {} oberdiek.pdftexcmds = pdftexcmds local systemexitstatus function pdftexcmds.getversion() - tex.write("2019/11/24 v0.31") + tex.write("2020-06-04 v0.32") end function pdftexcmds.strcmp(A, B) if A == B then @@ -288,7 +288,7 @@ function pdftexcmds.elapsedtime() if val > 2147483647 then val = 2147483647 end - tex.write(string.format("%d", val)) + tex.write(string.format("%d", math.floor(val))) end function pdftexcmds.shellescape() if os.execute then @@ -372,5 +372,6 @@ function pdftexcmds.pipe(cmdline, patch) tex.settoks(pdftexcmds.toks, "") end end +-- \section{Installation} -- -- End of File `pdftexcmds.lua'. |