summaryrefslogtreecommitdiff
path: root/Build/source/texk/ps2pk/pktest.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/ps2pk/pktest.c')
-rw-r--r--Build/source/texk/ps2pk/pktest.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/Build/source/texk/ps2pk/pktest.c b/Build/source/texk/ps2pk/pktest.c
index 61ae6d59acd..2cc97f1c7c5 100644
--- a/Build/source/texk/ps2pk/pktest.c
+++ b/Build/source/texk/ps2pk/pktest.c
@@ -1,15 +1,10 @@
-/*
- * FILE: pktest.c
- *
+/* FILE: pktest.c
* PURPOSE: This program demonstrates how a PK file can be created from
* a single character bitmap.
- *
* USAGE: pktest -c<char_code> -W<with> -H<Height> pkname < test.bm
* (test.bm contains the character from `The GFtoPK processor')
- *
- * VERSION: 1.7 (December 2014)
- *
- * AUTHOR: Piet Tutelaers (rcpt@urc.tue.nl)
+ * AUTHOR: Piet Tutelaers
+ * (see README for license)
*/
int testing = 1;
@@ -49,12 +44,14 @@ int main(int argc, char *argv[])
W = atoi(*argv); done = 1;
break;
default:
- fatal("%s: %c illegal option\n", myname, c);
+ fatal("%s: %c invalid option\n", myname, c);
}
}
- if (argc == 0 || C == 0 || W*H == 0)
+ if (argc == 0 || C == 0 || W*H == 0) {
+ msg ("pktest (ps2pk) version " PACKAGE_VERSION "\n");
fatal("Usage: %s -c<char> -W<width> -H<height> pkfile\n", myname);
+ }
pkname = argv[0];
pk_open(pkname);