Skip to content

Commit

Permalink
(u)ptexdir: inhibit_xsp_type initialize
Browse files Browse the repository at this point in the history
  • Loading branch information
aminophen committed Feb 9, 2025
1 parent cf89b06 commit e9fb850
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
8 changes: 8 additions & 0 deletions source/texk/web2c/ptexdir/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2025-02-09 Hironori Kitagawa <[email protected]>

* ptex-base.ch:
Forgot to increase size of eqtb[] 256 -> 1024, when
inhibit_xsp/kinsoku tables were increased 256 -> 1024.
(Commit 2022-12-12 r65246-65248 was incomplete, and the
fix on commit 2024-09-22 r72333 was incorrect).

2025-02-02 TANAKA Takuji <[email protected]>

* ptex-prntknj.test, tests/pknj-{e,s}.log: Update tests.
Expand Down
3 changes: 1 addition & 2 deletions source/texk/web2c/ptexdir/ptex-base.ch
Original file line number Diff line number Diff line change
Expand Up @@ -1307,10 +1307,9 @@ for k:=0 to 255 do
begin cat_code(k):=other_char; kcat_code(k):=other_kchar;
math_code(k):=hi(k); sf_code(k):=1000;
auto_xsp_code(k):=0;
inhibit_xsp_type(k):=0;
end;
for k:=0 to 1023 do
begin inhibit_xsp_code(k):=0;
begin inhibit_xsp_code(k):=0; inhibit_xsp_type(k):=0;
kinsoku_code(k):=0; kinsoku_type(k):=0;
end;
@z
Expand Down
8 changes: 8 additions & 0 deletions source/texk/web2c/uptexdir/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2025-02-09 Hironori Kitagawa <[email protected]>

* ptex-base.ch, uptex-m.ch:
Forgot to increase size of eqtb[] 256 -> 1024, when
inhibit_xsp/kinsoku tables were increased 256 -> 1024.
(Commit 2022-12-12 r65246-65248 was incomplete, and the
fix on commit 2024-09-22 r72333 was incorrect).

2025-02-08 TANAKA Takuji <[email protected]>

* uptex-m.ch: Enable ^^^^xyzw format only when
Expand Down
3 changes: 1 addition & 2 deletions source/texk/web2c/uptexdir/ptex-base.ch
Original file line number Diff line number Diff line change
Expand Up @@ -1307,10 +1307,9 @@ for k:=0 to 255 do
begin cat_code(k):=other_char; kcat_code(k):=other_kchar;
math_code(k):=hi(k); sf_code(k):=1000;
auto_xsp_code(k):=0;
inhibit_xsp_type(k):=0;
end;
for k:=0 to 1023 do
begin inhibit_xsp_code(k):=0;
begin inhibit_xsp_code(k):=0; inhibit_xsp_type(k):=0;
kinsoku_code(k):=0; kinsoku_type(k):=0;
end;
@z
Expand Down
2 changes: 0 additions & 2 deletions source/texk/web2c/uptexdir/uptex-m.ch
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,6 @@ for k:=0 to 255 do
begin cat_code(k):=other_char; kcat_code(k):=other_kchar;
math_code(k):=hi(k); sf_code(k):=1000;
auto_xsp_code(k):=0;
inhibit_xsp_type(k):=0;
end;
@y
eqtb[auto_xspacing_code]:=eqtb[cat_code_base];
Expand All @@ -337,7 +336,6 @@ for k:=0 to 255 do
begin cat_code(k):=other_char;
math_code(k):=hi(k);
auto_xsp_code(k):=0;
inhibit_xsp_type(k):=0;
end;
for k:=0 to 511 do
begin kcat_code(k):=other_kchar;
Expand Down

0 comments on commit e9fb850

Please sign in to comment.