summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-12-29 01:46:40 +0000
committerKarl Berry <karl@freefriends.org>2022-12-29 01:46:40 +0000
commit788cf728c00d34c8f2aaf240d89b937ddbae2954 (patch)
tree52a70cc32fc85a7ca53874254c8539ce6357ccc3 /Build
parentb7857573c077dccc571dd775192c11d92a290a49 (diff)
indicate structured pdfdest in tracing output, pdftex r888
git-svn-id: svn://tug.org/texlive/trunk@65392 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/pdftexdir/ChangeLog6
-rw-r--r--Build/source/texk/web2c/pdftexdir/NEWS2
-rw-r--r--Build/source/texk/web2c/pdftexdir/pdftex.web4
3 files changed, 11 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/pdftexdir/ChangeLog b/Build/source/texk/web2c/pdftexdir/ChangeLog
index 87c0b274901..2244d67fd24 100644
--- a/Build/source/texk/web2c/pdftexdir/ChangeLog
+++ b/Build/source/texk/web2c/pdftexdir/ChangeLog
@@ -1,3 +1,9 @@
+2022-12-28 Thanh Han The <hanthethanh@gmail.com>
+
+ * pdftex.web (Display the whatsit...) <pdf_dest_node>: indicate
+ if a pdfdest is a struct (pdftex r888). Report from Ulrike Fischer,
+ https://tug.org/pipermail/pdftex/2022-December/009315.html
+
2022-12-28 TANAKA Takuji <ttk@t-lab.opal.ne.jp>
* wcfname.test, am/pdftex.am:
diff --git a/Build/source/texk/web2c/pdftexdir/NEWS b/Build/source/texk/web2c/pdftexdir/NEWS
index 13608964df2..6962c0fc03d 100644
--- a/Build/source/texk/web2c/pdftexdir/NEWS
+++ b/Build/source/texk/web2c/pdftexdir/NEWS
@@ -1,6 +1,6 @@
pdfTeX 3.141592653-2.6-1.40.25
- changes:
- - new primitive \pdfomitinfodict to omit /Info dictionary completely.
+ - new primitive \pdfinfoomitdict to omit /Info dictionary completely.
- new primitive \pdfomitprocset to control omitting /ProcSet array;
/ProcSet is included if this parameter is negative, or if this
parameter is zero and pdftex is generating PDF 1.x output.
diff --git a/Build/source/texk/web2c/pdftexdir/pdftex.web b/Build/source/texk/web2c/pdftexdir/pdftex.web
index b29fe75dda3..fb7700e4593 100644
--- a/Build/source/texk/web2c/pdftexdir/pdftex.web
+++ b/Build/source/texk/web2c/pdftexdir/pdftex.web
@@ -35537,6 +35537,10 @@ end;
pdf_end_link_node: print_esc("pdfendlink");
pdf_dest_node: begin
print_esc("pdfdest");
+ if pdf_dest_objnum(p) <> null then begin
+ print(" struct");
+ print_int(pdf_dest_objnum(p));
+ end;
if pdf_dest_named_id(p) > 0 then begin
print(" name");
print_mark(pdf_dest_id(p));