diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-16 07:27:23 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-16 07:27:23 +0000 |
commit | 2f6e1cc9e4c3f899a4142cbdf44e6fc10af0d32b (patch) | |
tree | 6ca7032c7cce84a2826dc9105b9aaf479800b561 /Build/source/texk/web2c/vptovf.ch | |
parent | 41e050122555719daad3bc3da47e3d559e39c42f (diff) |
texk/*: Pass known program names as arg2 to kpse_set_program_name()
git-svn-id: svn://tug.org/texlive/trunk@27073 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/vptovf.ch')
-rw-r--r-- | Build/source/texk/web2c/vptovf.ch | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/Build/source/texk/web2c/vptovf.ch b/Build/source/texk/web2c/vptovf.ch index 8c62af94142..d3a6ef13ec0 100644 --- a/Build/source/texk/web2c/vptovf.ch +++ b/Build/source/texk/web2c/vptovf.ch @@ -8,6 +8,13 @@ \def\title{VP$\,$\lowercase{to}$\,$VF changes for C} @z +@x [1] Define my_name +@d banner=='This is VPtoVF, Version 1.5' {printed when the program starts} +@y +@d my_name=='vptovf' +@d banner=='This is VPtoVF, Version 1.5' {printed when the program starts} +@z + @x [2] Print the banner later. procedure initialize; {this procedure gets things started properly} var @<Local variables for initialization@>@/ @@ -17,7 +24,7 @@ procedure initialize; {this procedure gets things started properly} procedure initialize; {this procedure gets things started properly} var @<Local variables for initialization@>@/ begin - kpse_set_program_name (argv[0], nil); + kpse_set_program_name (argv[0], my_name); parse_arguments; @z @@ -245,7 +252,7 @@ begin {End of arguments; we exit the loop below.} ; end else if getopt_return_val = "?" then begin - usage ('vptovf'); {|getopt| has already given an error message.} + usage (my_name); {|getopt| has already given an error message.} end else if argument_is ('help') then begin usage_help (VPTOVF_HELP, nil); @@ -260,8 +267,8 @@ begin We must have one to three remaining arguments.} if (optind + 1 <> argc) and (optind + 2 <> argc) and (optind + 3 <> argc) then begin - write_ln (stderr, 'vptovf: Need one to three file arguments.'); - usage ('vptovf'); + write_ln (stderr, my_name ,': Need one to three file arguments.'); + usage (my_name); end; vpl_name := extend_filename (cmdline (optind), 'vpl'); |