texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Gavin D. Smith
Date: Wed, 16 Jun 2021 19:51:24 -0400 (EDT)

branch: master
commit 3dff8cf318986f2c9e5a34b97ef34536307d587c
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Thu Jun 17 00:51:15 2021 +0100

    * Pod-Simple-Texinfo/pod2texi.pl: Fix some messages.  Report from
    Benno Schulenberg.  Update copyright years.
---
 ChangeLog                      |  5 +++++
 Pod-Simple-Texinfo/pod2texi.pl | 12 ++++++------
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 4384f15..b75a825 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2021-06-17  Gavin Smith  <gavinsmith0123@gmail.com>
+
+       * Pod-Simple-Texinfo/pod2texi.pl: Fix some messages.  Report from
+       Benno Schulenberg.  Update copyright years.
+
 2021-06-16  Gavin Smith  <gavinsmith0123@gmail.com>
 
        pretest 6.7.91
diff --git a/Pod-Simple-Texinfo/pod2texi.pl b/Pod-Simple-Texinfo/pod2texi.pl
index c34c09a..e56d936 100755
--- a/Pod-Simple-Texinfo/pod2texi.pl
+++ b/Pod-Simple-Texinfo/pod2texi.pl
@@ -1,6 +1,6 @@
 #! /usr/bin/env perl
 # pod2texi -- convert Pod to Texinfo.
-# Copyright 2012-2019 Free Software Foundation, Inc.
+# Copyright 2012-2021 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
@@ -124,7 +124,7 @@ a hand-written top-level file.");
   $pod2texi_help .= __("    --preamble=STR          insert STR as beginning 
boilerplate")."\n";
   $pod2texi_help .= __("    --subdir=NAME           put files included in the 
main manual in NAME")."\n";
   $pod2texi_help .= __("    --top                   top for the main 
manual")."\n";
-  $pod2texi_help .= __("    --unnumbered-sections   use unumbered 
sections")."\n";
+  $pod2texi_help .= __("    --unnumbered-sections   do not number 
sections")."\n";
   $pod2texi_help .= __("    --version               display version 
information and exit");
   $pod2texi_help .= "\n\n";
 
@@ -151,7 +151,7 @@ my $result_options = Getopt::Long::GetOptions (
     printf __("Copyright (C) %s Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
 This is free software: you are free to change and redistribute it.
-There is NO WARRANTY, to the extent permitted by law.\n"), "2016";
+There is NO WARRANTY, to the extent permitted by law.\n"), "2021";
       exit 0;},
   'base-level=s' => sub {
      if ($_[1] =~ /^[0-4]$/) {
@@ -194,8 +194,8 @@ my @input_files = @ARGV;
 
 # use STDIN if not a tty, like makeinfo does
 @input_files = ('-') if (!scalar(@input_files) and !-t STDIN);
-die sprintf(__("%s: missing file argument;\n"), $real_command_name)
-   .sprintf(__("try `%s --help' for more information\n"), $real_command_name)
+die sprintf(__("%s: missing file argument\n"), $real_command_name)
+   .sprintf(__("Try `%s --help' for more information\n"), $real_command_name)
      unless (scalar(@input_files) >= 1);
 
 my @processed_files;
@@ -590,7 +590,7 @@ Texinfo home page: L<http://www.gnu.org/software/texinfo/>
 
 =head1 COPYRIGHT
 
-Copyright 2016 Free Software Foundation, Inc.
+Copyright 2021 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]