From 69fd6485d3d61d025bb50fad72400ea2adfeb9f6 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 27 Aug 2001 08:50:04 +0000 Subject: [PATCH] (N_): Remove definition. Revert most of last change. Instead, simply don't mark the `Copyright...' string for translation. Based on advice from Paul Eggert. --- lib/version-etc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/version-etc.c b/lib/version-etc.c index ba04db4821..7005fd1256 100644 --- a/lib/version-etc.c +++ b/lib/version-etc.c @@ -34,10 +34,10 @@ /* Default copyright goes to the FSF. */ -char* version_etc_copyright_fmt = - N_("Copyright (C) %s Free Software Foundation, Inc."); +char* version_etc_copyright = + /* Do *not* mark this string for translation. */ + "Copyright (C) 2001 Free Software Foundation, Inc."; -#define COPYRIGHT_YEAR "2001" /* Display the --version information the standard way. @@ -61,7 +61,7 @@ version_etc (FILE *stream, fprintf (stream, _("Written by %s.\n"), authors); putc ('\n', stream); - fprintf (stream, _(version_etc_copyright_fmt), COPYRIGHT_YEAR); + fputs (version_etc_copyright, stream); putc ('\n', stream); fputs (_("\ -- 2.30.2