diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2021-02-13 09:45:37 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2021-02-13 09:45:37 +0000 |
commit | 29a53021f09a33510bfc86395b70476368e85b7f (patch) | |
tree | 295b722320aa5fdb70af5e0ae34e2751b0082155 /Build/source/texk/web2c/ptexdir | |
parent | 3f810b92c78abba65b46c392c00f24cb85fbc5e6 (diff) |
Support \tracingstacklevels in [e][u]pTeX (H. Kitagawa)
git-svn-id: svn://tug.org/texlive/trunk@57726 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/ptexdir')
-rw-r--r-- | Build/source/texk/web2c/ptexdir/am/ptex.am | 1 | ||||
-rw-r--r-- | Build/source/texk/web2c/ptexdir/ptex-base.ch | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/ptexdir/am/ptex.am b/Build/source/texk/web2c/ptexdir/am/ptex.am index 3de571c7cbe..043acb701b4 100644 --- a/Build/source/texk/web2c/ptexdir/am/ptex.am +++ b/Build/source/texk/web2c/ptexdir/am/ptex.am @@ -74,6 +74,7 @@ ptex.web: tie$(EXEEXT) $(ptex_web_srcs) ptex_web_srcs = \ tex.web \ tex.ch \ + tracingstacklevels.ch \ zlib-fmt.ch # Generate ptex.ch diff --git a/Build/source/texk/web2c/ptexdir/ptex-base.ch b/Build/source/texk/web2c/ptexdir/ptex-base.ch index c50d70db518..780e840a414 100644 --- a/Build/source/texk/web2c/ptexdir/ptex-base.ch +++ b/Build/source/texk/web2c/ptexdir/ptex-base.ch @@ -1275,7 +1275,8 @@ if n<math_code_base then @d char_sub_def_min_code=web2c_int_base {smallest value in the charsubdef list} @d char_sub_def_max_code=web2c_int_base+1 {largest value in the charsubdef list} @d tracing_char_sub_def_code=web2c_int_base+2 {traces changes to a charsubdef def} -@d web2c_int_pars=web2c_int_base+3 {total number of web2c's integer parameters} +@d tracing_stack_levels_code=web2c_int_base+3 {tracing input_stack level if tracingmacros positive} +@d web2c_int_pars=web2c_int_base+4 {total number of web2c's integer parameters} @# @d int_pars=web2c_int_pars {total number of integer parameters} @d count_base=int_base+int_pars {256 user \.{\\count} registers} @@ -1300,7 +1301,8 @@ if n<math_code_base then @d char_sub_def_min_code=60 {smallest value in the charsubdef list} @d char_sub_def_max_code=61 {largest value in the charsubdef list} @d tracing_char_sub_def_code=62 {traces changes to a charsubdef def} -@d int_pars=63 {total number of integer parameters} +@d tracing_stack_levels_code=63 +@d int_pars=64 {total number of integer parameters} @d count_base=int_base+int_pars {256 user \.{\\count} registers} @z |