summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorLuigi Scarso <luigi.scarso@gmail.com>2019-01-27 10:53:03 +0000
committerLuigi Scarso <luigi.scarso@gmail.com>2019-01-27 10:53:03 +0000
commitb9c0301ba579a3f12913ac93eca8019e21d7cdb9 (patch)
tree608dd031354b4da63db80b414c9ded12fa023f6f /Build
parente4a7708a43f1c2929cf219453b584ade72a6ef02 (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')
-rw-r--r--Build/source/texk/web2c/luatexdir/luatex_svnversion.h2
-rw-r--r--Build/source/texk/web2c/mplibdir/mpost.w4
2 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
index b658a8e9d8d..63808095987 100644
--- a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
+++ b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
@@ -1 +1 @@
-#define luatex_svn_revision 7064
+#define luatex_svn_revision 7070
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);
}