diff options
author | Jim Meyering <jim@meyering.net> | 1999-03-07 17:48:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-03-07 17:48:10 +0000 |
commit | be65d0ad03f101de86df163edd351b34cf08ce59 (patch) | |
tree | 29d057ba141d3a174fb6e7e79efdb0c8002fcb13 | |
parent | 3a69319e7688d39e15006155818f96793d0d7705 (diff) | |
download | coreutils-be65d0ad03f101de86df163edd351b34cf08ce59.tar.xz |
restore blank lines in --version output
-rw-r--r-- | lib/long-options.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/long-options.c b/lib/long-options.c index 649fdb98e..ae7078082 100644 --- a/lib/long-options.c +++ b/lib/long-options.c @@ -71,9 +71,11 @@ parse_long_options (int argc, case 'v': printf ("%s (%s) %s\n", command_name, package, version); printf (_("\ +\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\ ")); printf (_("Written by %s.\n"), authors); close_stdout (); /* FIXME: output failure exit status |