texlive[62182] Build/source/texk/web2c/luatexdir: LuatTeX: write

commits+lscarso at tug.org commits+lscarso at tug.org
Sat Feb 26 18:11:17 CET 2022


Revision: 62182
          http://tug.org/svn/texlive?view=revision&revision=62182
Author:   lscarso
Date:     2022-02-26 18:11:16 +0100 (Sat, 26 Feb 2022)
Log Message:
-----------
LuatTeX: write xformattributes and xformresources  (thanks to E. Renkema)

Modified Paths:
--------------
    trunk/Build/source/texk/web2c/luatexdir/ChangeLog
    trunk/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
    trunk/Build/source/texk/web2c/luatexdir/pdf/pdfgen.c

Modified: trunk/Build/source/texk/web2c/luatexdir/ChangeLog
===================================================================
--- trunk/Build/source/texk/web2c/luatexdir/ChangeLog	2022-02-26 16:29:51 UTC (rev 62181)
+++ trunk/Build/source/texk/web2c/luatexdir/ChangeLog	2022-02-26 17:11:16 UTC (rev 62182)
@@ -1,3 +1,6 @@
+2022-02-26 Luigi Scarso <luigi.scarso at gmail.com>
+    * write xformattributes and xformresources  (thanks to E. Renkema)
+
 2022-02-25 Luigi Scarso <luigi.scarso at gmail.com>
     * lower max to 10000 and reverse check to max check exception penalty (H.Hagen)
 

Modified: trunk/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
===================================================================
--- trunk/Build/source/texk/web2c/luatexdir/luatex_svnversion.h	2022-02-26 16:29:51 UTC (rev 62181)
+++ trunk/Build/source/texk/web2c/luatexdir/luatex_svnversion.h	2022-02-26 17:11:16 UTC (rev 62182)
@@ -1 +1 @@
-#define luatex_svn_revision 7495
+#define luatex_svn_revision 7499

Modified: trunk/Build/source/texk/web2c/luatexdir/pdf/pdfgen.c
===================================================================
--- trunk/Build/source/texk/web2c/luatexdir/pdf/pdfgen.c	2022-02-26 16:29:51 UTC (rev 62181)
+++ trunk/Build/source/texk/web2c/luatexdir/pdf/pdfgen.c	2022-02-26 17:11:16 UTC (rev 62182)
@@ -1678,6 +1678,7 @@
         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 @@
         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));



More information about the tex-live-commits mailing list.