From: Bruno Haible Date: Mon, 23 Jun 2025 19:20:07 +0000 (+0200) Subject: Adhere to GNU Coding Style. X-Git-Tag: v0.26~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e7a638fd79cbdd937e2d3d6359e6cc082ff8fc9;p=thirdparty%2Fgettext.git Adhere to GNU Coding Style. * gettext-runtime/src/gettext.c (usage): Add space after 'printf'. * gettext-runtime/src/ngettext.c (usage): Likewise. * gettext-runtime/src/envsubst.c (usage): Likewise. --- diff --git a/gettext-runtime/src/envsubst.c b/gettext-runtime/src/envsubst.c index 0f90d64c0..e3db102f5 100644 --- a/gettext-runtime/src/envsubst.c +++ b/gettext-runtime/src/envsubst.c @@ -223,11 +223,11 @@ of the environment variables that are referenced in SHELL-FORMAT, one per line.\ email address for this package. Please add _another line_ saying "Report translation bugs to <...>\n" with the address for translation bugs (typically your translation team's web or email address). */ - printf(_("\ + printf (_("\ Report bugs in the bug tracker at <%s>\n\ or by email to <%s>.\n"), - "https://savannah.gnu.org/projects/gettext", - "bug-gettext@gnu.org"); + "https://savannah.gnu.org/projects/gettext", + "bug-gettext@gnu.org"); } exit (status); diff --git a/gettext-runtime/src/gettext.c b/gettext-runtime/src/gettext.c index a48106a3d..51fce993b 100644 --- a/gettext-runtime/src/gettext.c +++ b/gettext-runtime/src/gettext.c @@ -297,11 +297,11 @@ Standard search directory: %s\n"), email address for this package. Please add _another line_ saying "Report translation bugs to <...>\n" with the address for translation bugs (typically your translation team's web or email address). */ - printf(_("\ + printf (_("\ Report bugs in the bug tracker at <%s>\n\ or by email to <%s>.\n"), - "https://savannah.gnu.org/projects/gettext", - "bug-gettext@gnu.org"); + "https://savannah.gnu.org/projects/gettext", + "bug-gettext@gnu.org"); } exit (status); diff --git a/gettext-runtime/src/ngettext.c b/gettext-runtime/src/ngettext.c index baad695d6..4b6b25bee 100644 --- a/gettext-runtime/src/ngettext.c +++ b/gettext-runtime/src/ngettext.c @@ -263,11 +263,11 @@ Standard search directory: %s\n"), email address for this package. Please add _another line_ saying "Report translation bugs to <...>\n" with the address for translation bugs (typically your translation team's web or email address). */ - printf(_("\ + printf (_("\ Report bugs in the bug tracker at <%s>\n\ or by email to <%s>.\n"), - "https://savannah.gnu.org/projects/gettext", - "bug-gettext@gnu.org"); + "https://savannah.gnu.org/projects/gettext", + "bug-gettext@gnu.org"); } exit (status);