diff options
author | Norbert Preining <preining@logic.at> | 2015-06-16 13:21:24 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2015-06-16 13:21:24 +0000 |
commit | ee9ce4d625216b93a7fa2f0021f3b1818ff5a38c (patch) | |
tree | a41e3e9e2f83b09587c749c6ab6a7e157a8d4576 | |
parent | 971877e3767a302d8293bd4fe89d82f3dd847971 (diff) |
fmtutil: document /ENGINE part in --enablefmt/--disablefmt
git-svn-id: svn://tug.org/texlive/trunk@37563 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/fmtutil.pl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/texlive/fmtutil.pl b/Master/texmf-dist/scripts/texlive/fmtutil.pl index 6f817bec2b5..e0c29ab0ae0 100755 --- a/Master/texmf-dist/scripts/texlive/fmtutil.pl +++ b/Master/texmf-dist/scripts/texlive/fmtutil.pl @@ -717,7 +717,8 @@ sub callback_enable_disable_format { my @engs = keys %{$alldata->{'merged'}{$fmt}}; if (($#engs > 0) || ($#engs == -1)) { print_warning("More engines given for format $fmt.\n"); - print_warning("Please specify one of the engines: @engs\n"); + print_warning("Possible engines: @engs\n"); + print_warning("Please select one by passing in $fmt/ENGINE\n"); print_warning("No changes done.\n"); return 0; } else { @@ -1169,8 +1170,11 @@ Commands: --byengine ENGINENAME (re)create formats using ENGINENAME --byfmt FORMATNAME (re)create format for FORMATNAME --byhyphen HYPHENFILE (re)create formats that depend on HYPHENFILE - --enablefmt FORMATNAME enable formatname in config file - --disablefmt FORMATNAME disable formatname in config file + --enablefmt FORMATNAME[/ENGINE] enable formatname in config file + --disablefmt FORMATNAME[/ENGINE] disable formatname in config file + If more formats share the same name but have + different engines, the ENGINE parameter is + obligatory. --listcfg list (enabled and disabled) configurations, filtered to available formats --catcfg output the content of the config file |