diff --git a/source/texk/web2c/luatexdir/ChangeLog b/source/texk/web2c/luatexdir/ChangeLog index 25899a5f68147bb67d169e82e1c0a6c4cf53ecac..73d286050f64c4b1d78991ef4931453ab25d4a0d 100644 --- a/source/texk/web2c/luatexdir/ChangeLog +++ b/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/source/texk/web2c/luatexdir/luatex_svnversion.h b/source/texk/web2c/luatexdir/luatex_svnversion.h index 09450cb65e158c74239801ffaf6a32ef41f7003b..1a5ae5a47ecc628d2758c47d12486cd8cdf52123 100644 --- a/source/texk/web2c/luatexdir/luatex_svnversion.h +++ b/source/texk/web2c/luatexdir/luatex_svnversion.h @@ -1 +1 @@ -#define luatex_svn_revision 7495 +#define luatex_svn_revision 7499 diff --git a/source/texk/web2c/luatexdir/pdf/pdfgen.c b/source/texk/web2c/luatexdir/pdf/pdfgen.c index 2f288fac50a33a2b9339ec3c0c3b44b89329ef2a..9ed47cc9e7345037e0c935e4b09e544d39ae14e1 100644 --- a/source/texk/web2c/luatexdir/pdf/pdfgen.c +++ b/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));