summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/dvipdfmx.c
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-11-28 00:29:52 +0000
committerKarl Berry <karl@freefriends.org>2014-11-28 00:29:52 +0000
commite3050079bf005fb68d8988605c8d2d339909234a (patch)
tree643c137b0eb8dcb49517c05222bc292f4bdd13a1 /Build/source/texk/dvipdfm-x/dvipdfmx.c
parentc7cbb3204c55f770253d06d1b5bf0ac87d8d82e7 (diff)
basic purpose in help message
git-svn-id: svn://tug.org/texlive/trunk@35676 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/dvipdfmx.c')
-rw-r--r--Build/source/texk/dvipdfm-x/dvipdfmx.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/Build/source/texk/dvipdfm-x/dvipdfmx.c b/Build/source/texk/dvipdfm-x/dvipdfmx.c
index 453bbd4fab1..9fc45f6e640 100644
--- a/Build/source/texk/dvipdfm-x/dvipdfmx.c
+++ b/Build/source/texk/dvipdfm-x/dvipdfmx.c
@@ -168,9 +168,11 @@ show_version (void)
static void
show_usage (void)
{
- printf ("\nUsage: %s [options] [dvifile[.dvi|.xdv]]\n", my_name);
- printf (" %s --extractbb|--xbb|--ebb [options]\tBe \"extractbb\"\n", my_name);
+ printf ("\nUsage: %s [OPTION]... [DVIFILE[.dvi|.xdv]]\n", my_name);
+ printf (" %s --extractbb|--xbb|--ebb [OPTION]...\tBe \"extractbb\"\n",
+ my_name);
printf (" %s --help|--version\n", my_name);
+ printf ("Convert DVI or XDV intput to PDF; defaults given below.\n");
printf ("\nOptions:\n");
printf (" -c \t\tIgnore color specials (for B&W printing)\n");
printf (" --dvipdfm\tEnable DVIPDFM emulation mode\n");
@@ -180,16 +182,16 @@ show_usage (void)
printf (" -h | --help \tShow this help message and exit\n");
printf (" -l \t\tLandscape mode\n");
printf (" -m number\tSet additional magnification [1.0]\n");
- printf (" -o filename\tSet output file name, \"-\" for stdout [dvifile.pdf]\n");
+ printf (" -o filename\tSet output file name, \"-\" for stdout [DVIFILE.pdf]\n");
printf (" -p papersize\tSet papersize [a4]\n");
printf (" -q \t\tBe quiet\n");
printf (" -r resolution\tSet resolution (in DPI) for raster fonts [600]\n");
printf (" -s pages\tSelect page ranges (-)\n");
- printf (" -t \t\tEmbed thumbnail images of PNG format [dvifile.1] \n");
+ printf (" -t \t\tEmbed thumbnail images of PNG format [DVIFILE.1] \n");
printf (" --version\tOutput version information and exit\n");
printf (" -v \t\tBe verbose\n");
printf (" -vv\t\tBe more verbose\n");
- printf (" --kpathsea-debug number\tSet kpathsearch debugging flags [0]\n");
+ printf (" --kpathsea-debug number\tSet kpathsea debugging flags [0]\n");
printf (" -x dimension\tSet horizontal offset [1.0in]\n");
printf (" -y dimension\tSet vertical offset [1.0in]\n");
printf (" -z number \tSet zlib compression level (0-9) [9]\n");
@@ -931,6 +933,7 @@ CDECL main (int argc, char *argv[])
if (argc > 1 &&
(STREQ (argv[1], "--xbb") ||
+ STREQ (argv[1], "--extractbb") ||
STREQ (argv[1], "--dvipdfm") ||
STREQ (argv[1], "--ebb"))) {
argc--;