summaryrefslogtreecommitdiff
path: root/man/help2man
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-07-11 22:44:26 +0000
committerJim Meyering <jim@meyering.net>2000-07-11 22:44:26 +0000
commitbfc1dacca8cd79f5c0044fad3b31384a47c0a023 (patch)
tree044126a59539c36338768d8b281bb6202343479c /man/help2man
parentb64a0a7a90469a9f4d1066f10a89dc7fde4b8a16 (diff)
downloadcoreutils-bfc1dacca8cd79f5c0044fad3b31384a47c0a023.tar.xz
import 1.022
Diffstat (limited to 'man/help2man')
-rwxr-xr-xman/help2man12
1 files changed, 7 insertions, 5 deletions
diff --git a/man/help2man b/man/help2man
index 1728036af..2c8164789 100755
--- a/man/help2man
+++ b/man/help2man
@@ -1,7 +1,7 @@
#!/usr/bin/perl -w
# Generate a short man page from --help and --version output.
-# Copyright © 1997, 98, 99 Free Software Foundation, Inc.
+# Copyright © 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -27,11 +27,11 @@ use Text::Tabs qw(expand);
use POSIX qw(strftime setlocale LC_TIME);
my $this_program = 'help2man';
-my $this_version = '1.020';
+my $this_version = '1.022';
my $version_info = <<EOT;
-$this_program $this_version
+GNU $this_program $this_version
-Copyright (C) 1997, 98, 99 Free Software Foundation, Inc.
+Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@@ -53,6 +53,8 @@ Usage: $this_program [OPTION]... EXECUTABLE
--version print version number, then exit
EXECUTABLE should accept `--help' and `--version' options.
+
+Report bugs to <bug-help2man\@gnu.org>.
EOT
my $section = 1;
@@ -480,7 +482,7 @@ for (@pre, (grep ! /^($filter)$/o, @include), @post)
{
my $quote = /\W/ ? '"' : '';
print ".SH $quote$_$quote\n";
-
+
for ($include{$_})
{
# Replace leading dot an backslash tokens.