diff options
author | Luigi Scarso <luigi.scarso@gmail.com> | 2019-01-27 10:53:03 +0000 |
---|---|---|
committer | Luigi Scarso <luigi.scarso@gmail.com> | 2019-01-27 10:53:03 +0000 |
commit | b9c0301ba579a3f12913ac93eca8019e21d7cdb9 (patch) | |
tree | 608dd031354b4da63db80b414c9ded12fa023f6f /Build/source/texk/web2c/mplibdir | |
parent | e4a7708a43f1c2929cf219453b584ade72a6ef02 (diff) |
MetaPost: fixed typo in mpost.w. LuaTeX: updated dev. id.
git-svn-id: svn://tug.org/texlive/trunk@49831 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/mplibdir')
-rw-r--r-- | Build/source/texk/web2c/mplibdir/mpost.w | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/mplibdir/mpost.w b/Build/source/texk/web2c/mplibdir/mpost.w index 2c8ecf6d03f..3a99f6db4de 100644 --- a/Build/source/texk/web2c/mplibdir/mpost.w +++ b/Build/source/texk/web2c/mplibdir/mpost.w @@ -1102,7 +1102,7 @@ stored in the \MP\ instance, this will be taken as the first line of input. @d command_line_size 256 -@d max_commad_line_size 0xFFFFFFF /* should be the same of |max_halfword| (see |mp_reallocate_buffer|) */ +@d max_command_line_size 0xFFFFFFF /* should be the same of |max_halfword| (see |mp_reallocate_buffer|) */ @<Copy the rest of the command line@>= { @@ -1116,7 +1116,7 @@ input. buflen +=(strlen(argv[optind_aux])+1); /* reserve space for ' ' as separator */ } /* Last char is ' ', no need to reserve space for final '\0' */ - if (buflen > max_commad_line_size) { + if (buflen > max_command_line_size) { fprintf(stderr,"length of command line too long!\n"); exit(EXIT_FAILURE); } |