summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2015-08-27 06:54:38 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2015-08-27 06:54:38 +0000
commita4fe64f503a9bf54c31c80eddc34475ef9f249d5 (patch)
tree5dc84c9d6b8d116d18e7bff77d92a60206e61455 /Build
parent6a7adf3286358d1da8babfb700479d50c92b44fa (diff)
web2c/luatexdir: Remove --[no-]parse-first-line option, since it does not exist in lua(jit)tex
git-svn-id: svn://tug.org/texlive/trunk@38215 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/luatexdir/ChangeLog3
-rw-r--r--Build/source/texk/web2c/luatexdir/lua/luainit.w3
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/mainbody.h1
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/mainbody.w1
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/printing.w4
5 files changed, 3 insertions, 9 deletions
diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog
index a872d51dfbf..b325d0e67b0 100644
--- a/Build/source/texk/web2c/luatexdir/ChangeLog
+++ b/Build/source/texk/web2c/luatexdir/ChangeLog
@@ -2,6 +2,9 @@
* tex/mlist.w: Sync with the trunk.
See http://tug.org/pipermail/luatex/2015-August/005319.html
+ * tex/mainbody.h, tex/mainbody.w, tex/printing.w, lua/luainit.w:
+ Remove the option --[no-]parse-first-line, since it does not
+ exist in lua(jit)tex.
2015-07-10 Peter Breitenlohner <peb@mppmu.mpg.de>
diff --git a/Build/source/texk/web2c/luatexdir/lua/luainit.w b/Build/source/texk/web2c/luatexdir/lua/luainit.w
index fc79023cf84..eae69d127e2 100644
--- a/Build/source/texk/web2c/luatexdir/lua/luainit.w
+++ b/Build/source/texk/web2c/luatexdir/lua/luainit.w
@@ -91,7 +91,6 @@ const_string LUATEX_IHELP[] = {
" --output-comment=STRING use STRING for DVI file comment instead of date (no effect for PDF)",
" --output-directory=DIR use existing DIR as the directory to write files in",
" --output-format=FORMAT use FORMAT for job output; FORMAT is 'dvi' or 'pdf'",
- " --[no-]parse-first-line disable/enable parsing of the first line of the input file",
" --progname=STRING set the program name to STRING",
" --recorder enable filename recorder",
" --safer disable easily exploitable lua commands",
@@ -236,8 +235,6 @@ static struct option long_options[]
{"file-line-error", 0, &filelineerrorstylep, 1},
{"no-file-line-error", 0, &filelineerrorstylep, -1},
{"jobname", 1, 0, 0},
-{"parse-first-line", 0, &parsefirstlinep, 1},
-{"no-parse-first-line", 0, &parsefirstlinep, -1},
{"translate-file", 1, 0, 0},
{"default-translate-file", 1, 0, 0},
{"8bit", 0, 0, 0},
diff --git a/Build/source/texk/web2c/luatexdir/tex/mainbody.h b/Build/source/texk/web2c/luatexdir/tex/mainbody.h
index 1cbd214e016..996af533745 100644
--- a/Build/source/texk/web2c/luatexdir/tex/mainbody.h
+++ b/Build/source/texk/web2c/luatexdir/tex/mainbody.h
@@ -136,7 +136,6 @@ extern int param_size;
extern int nest_size;
extern int save_size;
extern int expand_depth;
-extern int parsefirstlinep;
extern int filelineerrorstylep;
extern int haltonerrorp;
extern boolean quoted_filename;
diff --git a/Build/source/texk/web2c/luatexdir/tex/mainbody.w b/Build/source/texk/web2c/luatexdir/tex/mainbody.w
index a98bd74a9e0..6f1de58676e 100644
--- a/Build/source/texk/web2c/luatexdir/tex/mainbody.w
+++ b/Build/source/texk/web2c/luatexdir/tex/mainbody.w
@@ -214,7 +214,6 @@ int nest_size; /* maximum number of semantic levels simultaneou
int save_size; /* space for saving values outside of current group; must be
at most |max_halfword| */
int expand_depth; /* limits recursive calls of the |expand| procedure */
-int parsefirstlinep; /* parse the first line for options */
int filelineerrorstylep; /* format messages as file:line:error */
int haltonerrorp; /* stop at first error */
boolean quoted_filename; /* current filename is quoted */
diff --git a/Build/source/texk/web2c/luatexdir/tex/printing.w b/Build/source/texk/web2c/luatexdir/tex/printing.w
index 72889583191..f824cb66ea1 100644
--- a/Build/source/texk/web2c/luatexdir/tex/printing.w
+++ b/Build/source/texk/web2c/luatexdir/tex/printing.w
@@ -524,10 +524,6 @@ void log_banner(const char *v, int ver)
wlog_cr();
fprintf(log_file, " file:line:error style messages enabled.");
}
- if (parsefirstlinep) {
- wlog_cr();
- fprintf(log_file, " %%&-line parsing enabled.");
- }
}
@ @c