diff options
author | Ralph Giles <giles@ghostscript.com> | 2008-10-02 12:41:42 +0200 |
---|---|---|
committer | Ralph Giles <giles@ghostscript.com> | 2008-10-02 12:41:42 +0200 |
commit | a24c2e9d163a56bd597bb9400607e494f8341c6e (patch) | |
tree | 038226656124a1a3305450730aa9acd179c04076 /apps/unix/x11pdf.c | |
parent | 1dbb4a87321d157985844b5314885f4dc809aa1c (diff) | |
download | mupdf-a24c2e9d163a56bd597bb9400607e494f8341c6e.tar.xz |
Branch apps as mupdf.
Previously the example front end applications were called generically
'pdfview' and 'pdftool'. In preparation for release we'd like to brand
them more uniquely. Since the user-facing part of the tree is the mupdf
library, we intend to brand the releases mupdf.
In support of this, 'pdfview' becomes 'mupdf' and 'pdftool' becomes
'mupdftool'.
Diffstat (limited to 'apps/unix/x11pdf.c')
-rw-r--r-- | apps/unix/x11pdf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/unix/x11pdf.c b/apps/unix/x11pdf.c index e7699620..0b1ff37c 100644 --- a/apps/unix/x11pdf.c +++ b/apps/unix/x11pdf.c @@ -79,7 +79,7 @@ static pdfapp_t gapp; void winwarn(pdfapp_t *app, char *msg) { - fprintf(stderr, "pdfview: %s\n", msg); + fprintf(stderr, "mupdf: %s\n", msg); } void winerror(pdfapp_t *app, fz_error *error) @@ -457,7 +457,7 @@ void onmouse(int x, int y, int btn, int modifiers, int state) void usage(void) { - fprintf(stderr, "usage: pdfview [-d password] [-z zoom] [-p pagenumber] file.pdf\n"); + fprintf(stderr, "usage: mupdf [-d password] [-z zoom] [-p pagenumber] file.pdf\n"); exit(1); } |