From: Pádraig Brady Date: Tue, 1 Jan 2019 14:34:14 +0000 (-0800) Subject: doc: adjust URLs in help to avoid wrapping X-Git-Tag: v8.31~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=daaae12e3b56ebc51202f5b4d5b40be61982cd81;p=thirdparty%2Fcoreutils.git doc: adjust URLs in help to avoid wrapping * src/system.h: Adjust lines containing URLs so that they don't wrap on 80 column terminals. One could also use .UR macros, but these aren't universally available. Note the adjustments here need to be compatible with the pattern matching done in help2man. Addresses https://bugs.gnu.org/33914 --- diff --git a/src/system.h b/src/system.h index 80fc235631..e4790f7cc6 100644 --- a/src/system.h +++ b/src/system.h @@ -660,10 +660,10 @@ emit_ancillary_info (char const *program) to form one of the URLs at https://translationproject.org/team/. Otherwise, replace the entire URL with your translation team's email address. */ - printf (_("Report %s translation bugs to " - "\n"), program); + fputs (_("Report any translation bugs to " + "\n"), stdout); } - printf (_("Full documentation at: <%s%s>\n"), + printf (_("Full documentation <%s%s>\n"), PACKAGE_URL, program); printf (_("or available locally via: info '(coreutils) %s%s'\n"), node, node == program ? " invocation" : "");