diff options
author | Karl Berry <karl@freefriends.org> | 2015-10-07 22:32:58 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-10-07 22:32:58 +0000 |
commit | 908355bfd70069fa5c62ccdaaac6d39e5da341ff (patch) | |
tree | faf1a69c961384894e6ca7855d21e332ac491e95 /Master/texmf-dist/scripts | |
parent | 76d512571a67e5fbb1a910796c5d0a10102b066f (diff) |
sync
git-svn-id: svn://tug.org/texlive/trunk@38582 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/fmtutil.pl | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/Master/texmf-dist/scripts/texlive/fmtutil.pl b/Master/texmf-dist/scripts/texlive/fmtutil.pl index 35ed5b710b4..d01ad7cef1f 100755 --- a/Master/texmf-dist/scripts/texlive/fmtutil.pl +++ b/Master/texmf-dist/scripts/texlive/fmtutil.pl @@ -716,10 +716,11 @@ sub callback_enable_disable_format { if ($alldata->{'merged'}{$fmt}) { my @engs = keys %{$alldata->{'merged'}{$fmt}}; if (($#engs > 0) || ($#engs == -1)) { - print_warning("Selected format $fmt not uniquely defined,\n"); - print_warning("possible format/engines combinations:\n"); + print_warning("Selected format $fmt not uniquely defined;\n"); + print_warning("possible format/engine combinations:\n"); for my $e (@engs) { - print_warning(" $fmt/$e (currently " . $alldata->{'merged'}{$fmt}{$e}{'status'} . ")\n"); + print_warning(" $fmt/$e (currently " + . $alldata->{'merged'}{$fmt}{$e}{'status'} . ")\n"); } print_warning("Please select one by fully specifying $fmt/ENGINE\n"); print_warning("No changes done.\n"); @@ -729,8 +730,8 @@ sub callback_enable_disable_format { return enable_disable_format_engine($tc, $fmt, $engs[0], $mode); } } else { - print_warning("Format $fmt is not defined.\n"); - print_warning("Cannot (de)activate it.\n"); + print_warning("Format $fmt is not defined;\n"); + print_warning("cannot (de)activate it.\n"); return -1; } } @@ -1175,9 +1176,9 @@ Commands: --byhyphen HYPHENFILE (re)create formats that depend on HYPHENFILE --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. + If multiple formats have the same name but + different engines, the /ENGINE specifier is + required. --listcfg list (enabled and disabled) configurations, filtered to available formats --catcfg output the content of the config file |