Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
metapost
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeXLive
metapost
Commits
100c311b
Commit
100c311b
authored
11 months ago
by
Luigi Scarso
Browse files
Options
Downloads
Patches
Plain Diff
Fixed some unprotected underscores in comments (thanks to Toby Thurston).
parent
d25c9c0a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/texk/web2c/mplibdir/mp.w
+12
-11
12 additions, 11 deletions
source/texk/web2c/mplibdir/mp.w
with
12 additions
and
11 deletions
source/texk/web2c/mplibdir/mp.w
+
12
−
11
View file @
100c311b
...
...
@@ -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...@>=
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment