CVSROOT: /sources/m4 Module name: m4 Changes by: Eric Blake <ericb> 07/10/23 14:17:55
Index: src/main.c =================================================================== RCS file: /sources/m4/m4/src/main.c,v retrieving revision 1.117 retrieving revision 1.118 diff -u -b -r1.117 -r1.118 --- src/main.c 6 Sep 2007 22:58:26 -0000 1.117 +++ src/main.c 23 Oct 2007 14:17:55 -0000 1.118 @@ -66,11 +66,11 @@ usage (int status) { if (status != EXIT_SUCCESS) - fprintf (stderr, _("Try `%s --help' for more information.\n"), + xfprintf (stderr, _("Try `%s --help' for more information.\n"), m4_get_program_name ()); else { - printf (_("Usage: %s [OPTION]... [FILE]...\n"), m4_get_program_name ()); + xprintf (_("Usage: %s [OPTION]... [FILE]...\n"), m4_get_program_name ()); fputs (_("\ Process macros in FILEs.\n\ If no FILE or if FILE is `-', standard input is read. If no FILE, and both\n\ @@ -104,7 +104,7 @@ GREP, POSIX_AWK, POSIX_EGREP, MINIMAL, MINIMAL_BASIC, SED.\n\ "), stdout); puts (""); - printf (_("\ + xprintf (_("\ Dynamic loading features:\n\ -M, --module-directory=DIR add DIR to module search path before\n\ `%s'\n\ @@ -189,7 +189,7 @@ saying "Report translation bugs to <...>\n" with the address for translation bugs (typically your translation team's web or email address). */ - printf (_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT); + xprintf (_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); }