summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorLuigi Scarso <luigi.scarso@gmail.com>2022-02-26 17:11:16 +0000
committerLuigi Scarso <luigi.scarso@gmail.com>2022-02-26 17:11:16 +0000
commit9328c9d27cbeedd3e2fb75f37e534fb0db781b40 (patch)
tree97dcf166d08a62b6688373084cc63073746385e5 /Build
parentdc7cf2f245828eb93b4a71549cb706ca55ed8757 (diff)
LuatTeX: write xformattributes and xformresources (thanks to E. Renkema)
git-svn-id: svn://tug.org/texlive/trunk@62182 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/luatexdir/ChangeLog3
-rw-r--r--Build/source/texk/web2c/luatexdir/luatex_svnversion.h2
-rw-r--r--Build/source/texk/web2c/luatexdir/pdf/pdfgen.c2
3 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog
index 25899a5f681..73d286050f6 100644
--- a/Build/source/texk/web2c/luatexdir/ChangeLog
+++ b/Build/source/texk/web2c/luatexdir/ChangeLog
@@ -1,3 +1,6 @@
+2022-02-26 Luigi Scarso <luigi.scarso@gmail.com>
+ * write xformattributes and xformresources (thanks to E. Renkema)
+
2022-02-25 Luigi Scarso <luigi.scarso@gmail.com>
* lower max to 10000 and reverse check to max check exception penalty (H.Hagen)
diff --git a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
index 09450cb65e1..1a5ae5a47ec 100644
--- a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
+++ b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
@@ -1 +1 @@
-#define luatex_svn_revision 7495
+#define luatex_svn_revision 7499
diff --git a/Build/source/texk/web2c/luatexdir/pdf/pdfgen.c b/Build/source/texk/web2c/luatexdir/pdf/pdfgen.c
index 2f288fac50a..9ed47cc9e73 100644
--- a/Build/source/texk/web2c/luatexdir/pdf/pdfgen.c
+++ b/Build/source/texk/web2c/luatexdir/pdf/pdfgen.c
@@ -1678,6 +1678,7 @@ void pdf_begin_page(PDF pdf)
form_margin = obj_xform_margin(pdf, pdf_cur_form);
if (xform_attributes != null)
pdf_print_toks(pdf, xform_attributes);
+ print_pdf_table_string(pdf, "xformattributes");
if (obj_xform_attr(pdf, pdf_cur_form) != null) {
pdf_print_toks(pdf, obj_xform_attr(pdf, pdf_cur_form));
delete_token_ref(obj_xform_attr(pdf, pdf_cur_form));
@@ -1963,6 +1964,7 @@ void pdf_end_page(PDF pdf)
if (xform_resources != null) {
pdf_print_toks(pdf, xform_resources);
}
+ print_pdf_table_string(pdf, "xformresources");
if (obj_xform_resources(pdf, pdf_cur_form) != null) {
pdf_print_toks(pdf, obj_xform_resources(pdf, pdf_cur_form));
delete_token_ref(obj_xform_resources(pdf, pdf_cur_form));