From 9b38b4319e6b5c6743138e5afd34633837fecbab Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Tue, 27 Jan 2009 10:00:51 -0700 Subject: [PATCH] version-etc: use consistent URL formatting * lib/version-etc.c (emit_bug_reporting_address, version_etc_va): Improve formatting. Use fputs for string without %. Signed-off-by: Eric Blake --- ChangeLog | 6 ++++++ lib/version-etc.c | 7 ++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9db195a47..c0eb833f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-01-28 Eric Blake + + version-etc: use consistent URL formatting + * lib/version-etc.c (emit_bug_reporting_address, version_etc_va): + Improve formatting. Use fputs for string without %. + 2009-01-28 Jim Meyering 00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning diff --git a/lib/version-etc.c b/lib/version-etc.c index 0fe5d6c10..2258c2e21 100644 --- a/lib/version-etc.c +++ b/lib/version-etc.c @@ -66,7 +66,7 @@ version_etc_va (FILE *stream, fputs (_("\ \n\ -License GPLv3+: GNU GPL version 3 or later \n\ +License GPLv3+: GNU GPL version 3 or later .\n\ This is free software: you are free to change and redistribute it.\n\ There is NO WARRANTY, to the extent permitted by law.\n\ \n\ @@ -179,7 +179,8 @@ emit_bug_reporting_address (void) "Report translation bugs to <...>\n" with the address for translation bugs (typically your translation team's web or email address). */ printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); - printf (_("%s home page: http://www.gnu.org/software/%s/\n"), + printf (_("%s home page: .\n"), PACKAGE_NAME, PACKAGE); - printf (_("General help using GNU software: http://www.gnu.org/gethelp/\n")); + fputs (_("General help using GNU software: .\n"), + stdout); } -- 2.11.0