# HG changeset patch # User Jim Meyering # Date 926701863 0 # Node ID 2a63a615fc73d9758809c291e5b5c4524d6e792f # Parent 29f0e78db3795bfec6caa2aa71ad42b0d52db29c (version_etc): Put version info and author names on the first two lines respectively rather than putting the three lines of copyright info between them. diff --git a/lib/version-etc.c b/lib/version-etc.c --- a/lib/version-etc.c +++ b/lib/version-etc.c @@ -35,13 +35,12 @@ const char *version, const char *authors) { fprintf (stream, "%s (%s) %s\n", command_name, package, version); + fprintf (stream, _("Written by %s.\n"), authors); fputs (_("\ \n\ Copyright (C) 1999 Free Software Foundation, Inc.\n\ This is free software; see the source for copying conditions. There is NO\n\ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\ -\n\ " ), stream); - fprintf (stream, _("Written by %s.\n"), authors); }