summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/cwebdir/comm-w2c.ch
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_tex@freenet.de>2021-11-14 13:59:47 +0000
committerAndreas Scherer <andreas_tex@freenet.de>2021-11-14 13:59:47 +0000
commit869f1b15f661494a5f0f911a9bcdcbd8d2bef9bc (patch)
treeac7a12fafbda47f509a09c2c94bf35e5655b5665 /Build/source/texk/web2c/cwebdir/comm-w2c.ch
parente8444738becd7efe74c4960c53b61a26268fe221 (diff)
[CWEB] More generic point of interest.
Instead of to the tex-k mail address, we direct the CWEB user to the package home page on CTAN, where more detailed information is listed. git-svn-id: svn://tug.org/texlive/trunk@61053 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/cwebdir/comm-w2c.ch')
-rw-r--r--Build/source/texk/web2c/cwebdir/comm-w2c.ch10
1 files changed, 4 insertions, 6 deletions
diff --git a/Build/source/texk/web2c/cwebdir/comm-w2c.ch b/Build/source/texk/web2c/cwebdir/comm-w2c.ch
index 0bb4f8b70fc..b0bbbcead75 100644
--- a/Build/source/texk/web2c/cwebdir/comm-w2c.ch
+++ b/Build/source/texk/web2c/cwebdir/comm-w2c.ch
@@ -826,7 +826,7 @@ Modules for dealing with help messages and version info.
@ @<Display help message and |exit|@>=
cb_usagehelp(program==ctangle ? CTANGLEHELP :
- program==cweave ? CWEAVEHELP : CTWILLHELP, NULL);
+ program==cweave ? CWEAVEHELP : CTWILLHELP);
@.--help@>
@ Special variants from Web2c's `\.{lib/usage.c}', adapted for
@@ -835,7 +835,7 @@ cb_usagehelp(program==ctangle ? CTANGLEHELP :
@<Predecl...@>=
static void cb_usage (const_string str);@/
-static void cb_usagehelp (const_string *message, const_string bug_email);@/
+static void cb_usagehelp (const_string *message);@/
@ @c
static void cb_usage (const_string str)
@@ -850,10 +850,8 @@ static void cb_usage (const_string str)
history=fatal_message; exit(wrap_up());
}
-static void cb_usagehelp (const_string *message, const_string bug_email)
+static void cb_usagehelp (const_string *message)
{
- if (!bug_email)
- bug_email = "tex-k@@tug.org";
textdomain("web2c-help");
@.web2c-help.mo@>
while (*message) {
@@ -863,7 +861,7 @@ static void cb_usagehelp (const_string *message, const_string bug_email)
}
textdomain("cweb-tl");
@.cweb-tl.mo@>
- printf(_("\nEmail bug reports to %s.\n"), bug_email);
+ printf(_("\nPackage home page: %s.\n"), "https://ctan.org/pkg/cweb");
textdomain("cweb");
@.cweb.mo@>
history=spotless; exit(wrap_up());