diff options
author | Hans Hagen <pragma@wxs.nl> | 2022-11-18 14:22:11 +0100 |
---|---|---|
committer | Context Git Mirror Bot <phg@phi-gamma.net> | 2022-11-18 14:22:11 +0100 |
commit | 2593c827482f6c5a315d504cd5316879d6172656 (patch) | |
tree | b696bd4e414c49230068ef8b8e4efed48f75d37f /source/luametatex/source/tex/texconditional.c | |
parent | 08473f11287cb263079c0435068312cbc6d736e8 (diff) | |
download | context-2593c827482f6c5a315d504cd5316879d6172656.tar.gz |
2022-11-18 13:17:00
Diffstat (limited to 'source/luametatex/source/tex/texconditional.c')
-rw-r--r-- | source/luametatex/source/tex/texconditional.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/source/luametatex/source/tex/texconditional.c b/source/luametatex/source/tex/texconditional.c index be68a8d6d..f89a57ba1 100644 --- a/source/luametatex/source/tex/texconditional.c +++ b/source/luametatex/source/tex/texconditional.c @@ -484,10 +484,6 @@ void tex_conditional_if(halfword code, int unless) goto RESULT; case if_abs_int_code: case if_int_code: - /*tex - Test the relation between integers or dimensions. Here we use the fact that |<|, - |=|, and |>| are consecutive ASCII codes. - */ { halfword n1 = tex_scan_int(0, NULL); halfword cp = tex_aux_scan_comparison(code); @@ -516,10 +512,6 @@ void tex_conditional_if(halfword code, int unless) goto RESULT; case if_abs_dim_code: case if_dim_code: - /*tex - Test the relation between integers or dimensions. Here we use the fact that |<|, - |=|, and |>| are consecutive ASCII codes. - */ { scaled n1 = tex_scan_dimen(0, 0, 0, 0, NULL); halfword cp = tex_aux_scan_comparison(code); @@ -547,7 +539,6 @@ void tex_conditional_if(halfword code, int unless) } goto RESULT; case if_odd_code: - /*tex Test if an integer is odd. */ { halfword v = tex_scan_int(0, NULL); result = odd(v); |