diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2011-09-11 01:41:25 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2011-09-11 01:41:25 +0000 |
commit | dd4309074ab637047aa88d7ef05e0c4957ff4188 (patch) | |
tree | 2d2e88b6fe04ae9a2ea11fa065b2ee21e38101a9 /Build/source/texk/web2c/lib | |
parent | b01b10199f1353a010196f6980da79bd662fc7ce (diff) |
Disable options -translate-file, -default-translate-file, and -8bit for Aleph.
git-svn-id: svn://tug.org/texlive/trunk@23890 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/lib')
-rw-r--r-- | Build/source/texk/web2c/lib/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/lib/texmfmp.c | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/Build/source/texk/web2c/lib/ChangeLog b/Build/source/texk/web2c/lib/ChangeLog index 7ccfb34a10d..749cf1909e5 100644 --- a/Build/source/texk/web2c/lib/ChangeLog +++ b/Build/source/texk/web2c/lib/ChangeLog @@ -1,3 +1,9 @@ +2011-09-11 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * texmfmp.c: Disable options -translate-file, -default-translate-file, + and -8bit for Aleph. The option -kanji-internal=STRING is effective + also for pTeX and epTeX. + 2011-09-02 Peter Breitenlohner <peb@mp.mpg.de> * texmfmp.c: More changes to reduce diffs with W32TeX. diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c index b5909e0501c..e61ce728cd9 100644 --- a/Build/source/texk/web2c/lib/texmfmp.c +++ b/Build/source/texk/web2c/lib/texmfmp.c @@ -1416,9 +1416,11 @@ static struct option long_options[] { "output-directory", 1, 0, 0 }, { "parse-first-line", 0, &parsefirstlinep, 1 }, { "no-parse-first-line", 0, &parsefirstlinep, -1 }, +#if !defined(Aleph) { "translate-file", 1, 0, 0 }, { "default-translate-file", 1, 0, 0 }, { "8bit", 0, &eightbitp, 1 }, +#endif /* !Aleph */ #if defined(XeTeX) { "no-pdf", 0, &nopdfoutput, 1 }, { "output-driver", 1, 0, 0 }, @@ -1434,8 +1436,6 @@ static struct option long_options[] { "no-guess-input-enc", 0, &infile_enc_auto, 0 }, #endif { "kanji", 1, 0, 0 }, -#endif -#if IS_upTeX { "kanji-internal", 1, 0, 0 }, #endif { 0, 0, 0, 0 } }; @@ -1557,11 +1557,11 @@ parse_options (int argc, string *argv) pdfdraftmodevalue = 1; #endif /* pdfTeX */ #if defined (TeX) || defined (MF) +#if !defined(Aleph) } else if (ARGUMENT_IS ("translate-file")) { translate_filename = optarg; } else if (ARGUMENT_IS ("default-translate-file")) { default_translate_filename = optarg; -#if defined(Aleph) } else if (ARGUMENT_IS ("8bit")) { /* FIXME: print snippy message? Possibly also for above? */ #endif /* !Aleph */ @@ -1589,8 +1589,6 @@ parse_options (int argc, string *argv) if (!set_enc_string (optarg, NULL)) { WARNING1 ("Ignoring unknown argument `%s' to --kanji", optarg); } -#endif -#if IS_upTeX } else if (ARGUMENT_IS ("kanji-internal")) { if (!set_enc_string (NULL, optarg)) { WARNING1 ("Ignoring unknown argument `%s' to --kanji-internal", optarg); |