summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-04-16 20:24:29 +0000
committerKarl Berry <karl@freefriends.org>2022-04-16 20:24:29 +0000
commit27c9dc6aece409690e3c020b4882dfee978205f8 (patch)
tree07f1bbf08ecb0e6946d04a6c9ee11846e018cab6
parentcac8a949764a5646e8201c521340622219fa6748 (diff)
penlight (16apr22)
git-svn-id: svn://tug.org/texlive/trunk@63044 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf-dist/doc/luatex/penlight/penlight.pdfbin38589 -> 38483 bytes
-rw-r--r--Master/texmf-dist/doc/luatex/penlight/penlight.tex2
-rw-r--r--Master/texmf-dist/tex/luatex/penlight/penlight.sty6
-rw-r--r--Master/texmf-dist/tex/luatex/penlight/penlightextras.lua3
4 files changed, 6 insertions, 5 deletions
diff --git a/Master/texmf-dist/doc/luatex/penlight/penlight.pdf b/Master/texmf-dist/doc/luatex/penlight/penlight.pdf
index 3fcd22c54e5..55eda4b6fe4 100644
--- a/Master/texmf-dist/doc/luatex/penlight/penlight.pdf
+++ b/Master/texmf-dist/doc/luatex/penlight/penlight.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/luatex/penlight/penlight.tex b/Master/texmf-dist/doc/luatex/penlight/penlight.tex
index d70fc258f3e..f1c07a00cb5 100644
--- a/Master/texmf-dist/doc/luatex/penlight/penlight.tex
+++ b/Master/texmf-dist/doc/luatex/penlight/penlight.tex
@@ -1,5 +1,5 @@
% Kale Ewasiuk (kalekje@gmail.com)
-% 2022-03-15
+% 2022-04-16
% Copyright (C) 2021-2022 Kale Ewasiuk
%
% Permission is hereby granted, free of charge, to any person obtaining a copy
diff --git a/Master/texmf-dist/tex/luatex/penlight/penlight.sty b/Master/texmf-dist/tex/luatex/penlight/penlight.sty
index a73948af294..04cb66a482c 100644
--- a/Master/texmf-dist/tex/luatex/penlight/penlight.sty
+++ b/Master/texmf-dist/tex/luatex/penlight/penlight.sty
@@ -1,5 +1,5 @@
% Kale Ewasiuk (kalekje@gmail.com)
-% 2022-03-15
+% 2022-04-16
% Copyright (C) 2021-2022 Kale Ewasiuk
%
% Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -22,7 +22,7 @@
% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
% OR OTHER DEALINGS IN THE SOFTWARE.
-\ProvidesPackage{penlight}[2022-03-15]
+\ProvidesPackage{penlight}[2022-04-16]
\RequirePackage{luacode}
@@ -65,7 +65,7 @@ end
}}{
\luadirect{
__PDFmetadata__ = __PDFmetadata__ or {}
- table.update(__PDFmetadata__, luakeys.parse(\luastring{#2})
+ table.update(__PDFmetadata__, luakeys.parse(\luastring{#2}))
writePDFmetadata()
}}
}
diff --git a/Master/texmf-dist/tex/luatex/penlight/penlightextras.lua b/Master/texmf-dist/tex/luatex/penlight/penlightextras.lua
index e021567c139..253527cc52b 100644
--- a/Master/texmf-dist/tex/luatex/penlight/penlightextras.lua
+++ b/Master/texmf-dist/tex/luatex/penlight/penlightextras.lua
@@ -1,5 +1,5 @@
--% Kale Ewasiuk (kalekje@gmail.com)
---% 2022-03-15
+--% 2022-04-16
--% Copyright (C) 2021-2022 Kale Ewasiuk
--%
--% Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -30,6 +30,7 @@ __PL_EXTRAS__ = 1
-- requires penlight
local pl = _G['penlight'] or _G['pl'] -- penlight for this namespace is pl
+luakeys = require'luakeys'
-- some bonus string operations, % text operator, and functional programming
pl.stringx.import()