From 92cdb460eaf49517fc12500c0c1c37d4561e6156 Mon Sep 17 00:00:00 2001 From: Luigi Scarso <luigi.scarso@gmail.com> Date: Sun, 27 Jan 2019 10:42:55 +0000 Subject: [PATCH] metapost: fixed typo in mpost.w [[Split portion of a mixed commit.]] --- source/texk/web2c/luatexdir/luatex_svnversion.h | 2 +- source/texk/web2c/mplibdir/mpost.w | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/texk/web2c/luatexdir/luatex_svnversion.h b/source/texk/web2c/luatexdir/luatex_svnversion.h index b658a8e9d..638080959 100644 --- a/source/texk/web2c/luatexdir/luatex_svnversion.h +++ b/source/texk/web2c/luatexdir/luatex_svnversion.h @@ -1 +1 @@ -#define luatex_svn_revision 7064 +#define luatex_svn_revision 7070 diff --git a/source/texk/web2c/mplibdir/mpost.w b/source/texk/web2c/mplibdir/mpost.w index 2c8ecf6d0..3a99f6db4 100644 --- a/source/texk/web2c/mplibdir/mpost.w +++ b/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); } -- GitLab