diff options
author | Luigi Scarso <luigi.scarso@gmail.com> | 2024-05-05 10:02:00 +0000 |
---|---|---|
committer | Luigi Scarso <luigi.scarso@gmail.com> | 2024-05-05 10:02:00 +0000 |
commit | 98e33c2d326e4dc0ac6afad4aadc28669638a64c (patch) | |
tree | 27ad6bebe3d5b641854ecdbf3245e8618a7651db /Build/source | |
parent | 8ed32e57a7eb3568525b30a9446c3915edc2ebae (diff) |
Fixed some unprotected underscores in comments (thanks to Toby Thurston).
git-svn-id: svn://tug.org/texlive/trunk@71177 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/web2c/mplibdir/mp.w | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/Build/source/texk/web2c/mplibdir/mp.w b/Build/source/texk/web2c/mplibdir/mp.w index df12979e079..3392aa9f73b 100644 --- a/Build/source/texk/web2c/mplibdir/mp.w +++ b/Build/source/texk/web2c/mplibdir/mp.w @@ -128,7 +128,7 @@ typedef int integer; #define MPOST_ABS abs #else /* See source/texk/web2c/w2c/config.h */ -#if INTEGER_MAX == LONG_MAX /* this should mean INTEGER_TYPE == long */ +#if INTEGER_MAX == LONG_MAX /* this should mean |INTEGER_TYPE| == long */ #ifdef HAVE_LABS #define MPOST_ABS labs #else @@ -136,8 +136,8 @@ typedef int integer; #endif #else #define MPOST_ABS abs -#endif /* if INTEGER_TYPE == long */ -#endif /* ifndef INTEGER_TYPE */ +#endif /* if |INTEGER_TYPE| == long */ +#endif /* ifndef |INTEGER_TYPE| */ @<Declare helpers@>; @@ -3757,9 +3757,9 @@ mp_envelope_of, /* operation code for \.{envelope} */ mp_boundingpath_of, /* operation code for \.{boundingpath} */ mp_glyph_infont, /* operation code for \.{glyph} */ mp_kern_flag, /* operation code for \.{kern} */ -mp_m_get_left_endpoint_op, /* math interval new primitives operation code for \.{interval_get_left_endpoint} */ -mp_m_get_right_endpoint_op, /* math interval new primitives operation code for \.{interval_get_right_endpoint} */ -mp_interval_set_op, /* math interval new primitives operation code for \.{interval_set} */ +mp_m_get_left_endpoint_op, /* math interval new primitives operation code for \.{interval\_get\_left\_endpoint} */ +mp_m_get_right_endpoint_op, /* math interval new primitives operation code for \.{interval\_get\_right\_endpoint} */ +mp_interval_set_op, /* math interval new primitives operation code for \.{interval\_set} */ @ @c @@ -18222,7 +18222,7 @@ new level (having, initially, the same properties as the old). mp->max_in_stack=mp->input_ptr; if ( mp->input_ptr==mp->stack_size ) { int l = (mp->stack_size+(mp->stack_size/4)); - /* The mp->stack_size < 1001 condition is necessary to prevent C stack overflow due infinite recursion. */ + /* The mp->stack\_size < 1001 condition is necessary to prevent C stack overflow due infinite recursion. */ if (l>1000) {fprintf(stderr, "input stack overflow\n");exit(EXIT_FAILURE);} XREALLOC(mp->input_stack, l, in_state_record); mp->stack_size = l; @@ -19359,7 +19359,8 @@ static mp_node mp_scan_toks (MP mp, mp_command_code terminator, @ @c void mp_print_sym (mp_sym sym) { - printf("{type = %d, v = {type = %d, data = {indep = {scale = %d, serial = %d}, n = %d, str = %p, sym = %p, node = %p, p = %p}}, text = %p}\n", sym->type, sym->v.type, (int)sym->v.data.indep.scale, (int)sym->v.data.indep.serial, + printf("{type = %d, v = {type = %d, data = {indep = {scale = %d, serial = %d}, n = %d, str = %p, sym = %p, node = %p, p = %p}}, text = %p}\n", + sym->type, sym->v.type, (int)sym->v.data.indep.scale, (int)sym->v.data.indep.serial, sym->v.data.n.type, sym->v.data.str, sym->v.data.sym, sym->v.data.node, sym->v.data.p, sym->text); if (is_number(sym->v.data.n)) { mp_number n = sym->v.data.n; @@ -25424,11 +25425,11 @@ mp_primitive (mp, "boundingpath", mp_primary_binary, mp_boundingpath_of); mp_primitive (mp, "glyph", mp_primary_binary, mp_glyph_infont); @:glyph_infont_}{\&{glyph} primitive@>; mp_primitive (mp, "interval_get_left_endpoint", mp_unary, mp_m_get_left_endpoint_op); /* math interval new primitives */ -@:m_get_left_endpoint_}{\&{mget_left_endpoint} primitive@>; +@:m_get_left_endpoint_}{\&{mget\_left\_endpoint} primitive@>; mp_primitive (mp, "interval_get_right_endpoint", mp_unary, mp_m_get_right_endpoint_op); /* math interval new primitives */ -@:m_get_right_endpoint_}{\&{mget_right_endpoint} primitive@>; +@:m_get_right_endpoint_}{\&{mget\_right\_endpoint} primitive@>; mp_primitive (mp, "interval_set", mp_unary, mp_interval_set_op); /* math interval new primitives */ -@:interval_set}{\&{interval_set} primitive@>; +@:interval_set}{\&{interval\_set} primitive@>; @ @<Cases of |print_cmd...@>= |