summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/ctiedir
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-04-12 16:33:19 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-04-12 16:33:19 +0000
commitfc9b52216e92282f7cd5fbc80707650a81e99317 (patch)
tree95eaf98497ff100aa005ce1c88a09e66dae5ab75 /Build/source/texk/web2c/ctiedir
parent8a580ec8c90f7e948c0c850b83fa145dcdd26484 (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/source/texk/web2c/ctiedir')
-rw-r--r--Build/source/texk/web2c/ctiedir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/ctiedir/ctie-k.ch10
2 files changed, 13 insertions, 1 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