diff --git a/source/texk/web2c/luatexdir/luatex_svnversion.h b/source/texk/web2c/luatexdir/luatex_svnversion.h index b658a8e9d8d2f0c0a7aec3a9e0fb56c24077dbfb..6380809598739c48f29e5125c0396d32794307e9 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 2c8ecf6d03f167e2655fcf3c85b4a7fe86c57251..3a99f6db4de072047ece7deacf2ae9f2b46915f0 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); }