diff options
author | Andreas Scherer <andreas_tex@freenet.de> | 2020-06-10 14:32:32 +0000 |
---|---|---|
committer | Andreas Scherer <andreas_tex@freenet.de> | 2020-06-10 14:32:32 +0000 |
commit | 099bed71ffa7fb4e19f4e614c077a149aae72930 (patch) | |
tree | d7c9e23132b3bb74a0084d2f6e32cc4e76f92aa8 /Build/source/texk/web2c/pktogf.ch | |
parent | 10ea2d43b2a54d06a93f949af0753391c6d9f275 (diff) |
[WEB2C] Redactions in changefiles.
Most notably:
* Section [34] in PKTYPE: More consistent layout of meta-comments
* Section [8] in TANGLE: Max out some array sizes as in CTANGLE.
git-svn-id: svn://tug.org/texlive/trunk@55506 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/pktogf.ch')
-rw-r--r-- | Build/source/texk/web2c/pktogf.ch | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/pktogf.ch b/Build/source/texk/web2c/pktogf.ch index 64419092f75..f8a03595d72 100644 --- a/Build/source/texk/web2c/pktogf.ch +++ b/Build/source/texk/web2c/pktogf.ch @@ -236,6 +236,7 @@ cur_loc:=cur_loc+2; if a<128 then signed_pair:=a*256+b else signed_pair:=(a-256)*256+b; end; +@# @{ function get_three_bytes:integer; {returns the next three bytes, unsigned} var a,@!b,@!c:eight_bits; @@ -243,7 +244,9 @@ begin read(pk_file,a); read(pk_file,b); read(pk_file,c); cur_loc:=cur_loc+3; get_three_bytes:=(a*256+b)*256+c; end; -@# +@{ +@/ +@} function signed_trio:integer; {returns the next three bytes, signed} var a,@!b,@!c:eight_bits; begin read(pk_file,a); read(pk_file,b); read(pk_file,c); @@ -252,6 +255,7 @@ if a<128 then signed_trio:=(a*256+b)*256+c else signed_trio:=((a-256)*256+b)*256+c; end; @} +@# function signed_quad:integer; {returns the next four bytes, signed} var a,@!b,@!c,@!d:eight_bits; begin read(pk_file,a); read(pk_file,b); read(pk_file,c); read(pk_file,d); |