diff options
author | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2017-07-17 02:30:36 +0000 |
---|---|---|
committer | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2017-07-17 02:30:36 +0000 |
commit | 87f4648d57d75c89f84182ebba973924a8a66a46 (patch) | |
tree | 278fddfb32a7ac32b87738df2fcb7cb299f3d143 /Build/source/texk/makejvf/main.c | |
parent | 3b9640944b02d59559834f77f83b15810788e0da (diff) |
makejvf: Improve enhanced mode (version 20170717)
git-svn-id: svn://tug.org/texlive/trunk@44827 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/makejvf/main.c')
-rw-r--r-- | Build/source/texk/makejvf/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Build/source/texk/makejvf/main.c b/Build/source/texk/makejvf/main.c index 45b8141a458..4d3c3f63516 100644 --- a/Build/source/texk/makejvf/main.c +++ b/Build/source/texk/makejvf/main.c @@ -1,5 +1,6 @@ #include <kpathsea/kpathsea.h> #include <ptexenc/ptexenc.h> +#include "version.h" #include "makejvf.h" #include "uniblock.h" @@ -173,7 +174,7 @@ int main(int argc, char ** argv) void usage(void) { - fputs2("MAKEJVF version 20170716 -- make Japanese VF file.\n", stderr); + fprintf(stderr, "MAKEJVF version %s -- make Japanese VF file.\n", VERSION); fputs2("%% makejvf [<options>] <TFMfile> <PSfontTFM>\n", stderr); fputs2("options:\n", stderr); fputs2("-C 長体モード\n", stderr); @@ -195,5 +196,5 @@ void usage(void) fputs2("-i font ID from No.0\n", stderr); fputs2("-e enhanced mode; the horizontal shift amount is determined\n", stderr); fputs2(" from the glue/kern table of <TFMfile> input\n", stderr); - fputs2("Email bug reports to issue@texjp.org.\n", stderr); + fprintf(stderr, "Email bug reports to %s.\n", BUG_ADDRESS); } |