diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-04-12 16:33:19 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-04-12 16:33:19 +0000 |
commit | fc9b52216e92282f7cd5fbc80707650a81e99317 (patch) | |
tree | 95eaf98497ff100aa005ce1c88a09e66dae5ab75 /Build | |
parent | 8a580ec8c90f7e948c0c850b83fa145dcdd26484 (diff) |
tie and ctie help and usage message
git-svn-id: svn://tug.org/texlive/trunk@17818 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/web2c/ctiedir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/ctiedir/ctie-k.ch | 10 | ||||
-rw-r--r-- | Build/source/texk/web2c/cwebdir/comm-w2c.ch | 2 | ||||
-rw-r--r-- | Build/source/texk/web2c/tiedir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/tiedir/tie-w2c.ch | 4 |
5 files changed, 22 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/ctiedir/ChangeLog b/Build/source/texk/web2c/ctiedir/ChangeLog index c2962e046f9..b8def28f2d6 100644 --- a/Build/source/texk/web2c/ctiedir/ChangeLog +++ b/Build/source/texk/web2c/ctiedir/ChangeLog @@ -1,3 +1,7 @@ +2010-04-10 Peter Breitenlohner <peb@mppmu.mpg.de> + + * ctie-k.ch: Replace "-[m|c]" in usage message by "-m|-c". + 2009-08-29 Peter Breitenlohner <peb@mppmu.mpg.de> Avoid maximal compiler warnings. diff --git a/Build/source/texk/web2c/ctiedir/ctie-k.ch b/Build/source/texk/web2c/ctiedir/ctie-k.ch index f57a5686b76..044fef94f7a 100644 --- a/Build/source/texk/web2c/ctiedir/ctie-k.ch +++ b/Build/source/texk/web2c/ctiedir/ctie-k.ch @@ -78,7 +78,7 @@ mechanism that the \Kpathsea/ library provides. We set |kpse_program_name| to |"ctie"|. This means if the variable |CWEBINPUTS.ctie| is present in \.{texmf.cnf} (or |CWEBINPUTS_ctie| in the environment) its value will be used as the search path for -filenames. This allows different flawors of \.{CTIE} to have +filenames. This allows different flavors of \.{CTIE} to have different search paths. @<Set up |PROGNAME| feature and initialize the search path mechanism@>= @@ -378,9 +378,15 @@ e_of_ch_preamble (file_index i) @x l.1106 void usage_error() +{ + @<Print the banners@>; + fprintf(stderr, "Usage: ctie -[mc] outfile master changefile(s)\n"); @y static void usage_error (void) +{ + @<Print the banners@>; + fprintf(stderr, "Usage: ctie -m|-c outfile master changefile(s)\n"); @z @x l.1119 Add Web2C version to banner string @@ -393,8 +399,10 @@ printf("%s\n", banner); /* print a ``banner line'' */ @x l.1218 string CTIEHELP[] = { + "Usage: ctie -[mc] outfile master changefile(s)", @y const_string CTIEHELP[] = { + "Usage: ctie -m|-c outfile master changefile(s)", @z @x l.1233 diff --git a/Build/source/texk/web2c/cwebdir/comm-w2c.ch b/Build/source/texk/web2c/cwebdir/comm-w2c.ch index 6cbee2fc400..cf1f9ede4fa 100644 --- a/Build/source/texk/web2c/cwebdir/comm-w2c.ch +++ b/Build/source/texk/web2c/cwebdir/comm-w2c.ch @@ -192,7 +192,7 @@ that \Kpathsea/ library provides. We set |kpse_program_name| to a |"cweb"|. This means if the variable |CWEBINPUTS.cweb| is present in \.{texmf.cnf} (or |CWEBINPUTS_cweb| in the environment) its value will be used as the search path for -filenames. This allows different flawors of \.{CWEB} to have +filenames. This allows different flavors of \.{CWEB} to have different search paths. FIXME: Not sure this is the best way to go about this. diff --git a/Build/source/texk/web2c/tiedir/ChangeLog b/Build/source/texk/web2c/tiedir/ChangeLog index a9aa50bfc41..5eee8aec666 100644 --- a/Build/source/texk/web2c/tiedir/ChangeLog +++ b/Build/source/texk/web2c/tiedir/ChangeLog @@ -1,3 +1,7 @@ +2010-04-10 Peter Breitenlohner <peb@mppmu.mpg.de> + + * tie-w2c.ch: Replace "-[m|c]" in usage message by "-m|-c". + 2009-08-29 Peter Breitenlohner <peb@mppmu.mpg.de> Avoid maximal compiler warnings. diff --git a/Build/source/texk/web2c/tiedir/tie-w2c.ch b/Build/source/texk/web2c/tiedir/tie-w2c.ch index fcf2a987e61..a55866691c5 100644 --- a/Build/source/texk/web2c/tiedir/tie-w2c.ch +++ b/Build/source/texk/web2c/tiedir/tie-w2c.ch @@ -108,9 +108,13 @@ e_of_ch_preamble (file_index i) @x void usage() +{ + print("Usage: tie -[mc] outfile master changefile(s)"); @y static void usage (void) +{ + print("Usage: tie -m|-c outfile master changefile(s)"); @z @x |