diff options
author | Jim Meyering <jim@meyering.net> | 2001-08-27 08:50:04 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-08-27 08:50:04 +0000 |
commit | 3a9d91bb5725e45def01b38f917e7f745be55fe0 (patch) | |
tree | 3d2a862e3cef7c08179c52206563c0a2a9645627 /lib | |
parent | a26e5e37b80c86aec97b2eb1e0a4498eab51faff (diff) | |
download | coreutils-3a9d91bb5725e45def01b38f917e7f745be55fe0.tar.xz |
(N_): Remove definition.
Revert most of last change.
Instead, simply don't mark the `Copyright...' string for translation.
Based on advice from Paul Eggert.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/version-etc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/version-etc.c b/lib/version-etc.c index ba04db482..7005fd125 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 (_("\ |