texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * Pod-Simple-Texinfo/pod2texi.pl (@included): fix


From: Patrice Dumas
Subject: branch master updated: * Pod-Simple-Texinfo/pod2texi.pl (@included): fix included files information order in array reference.
Date: Fri, 20 Sep 2024 04:58:46 -0400

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 7f344d0fd6 * Pod-Simple-Texinfo/pod2texi.pl (@included): fix included 
files information order in array reference.
7f344d0fd6 is described below

commit 7f344d0fd65761de118a9f09b5c0e65a56fce031
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Fri Sep 20 10:58:47 2024 +0200

    * Pod-Simple-Texinfo/pod2texi.pl (@included): fix included files
    information order in array reference.
---
 ChangeLog                      | 5 +++++
 Pod-Simple-Texinfo/pod2texi.pl | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 220468f1e8..87d68adab2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-09-20  Patrice Dumas  <pertusus@free.fr>
+
+       * Pod-Simple-Texinfo/pod2texi.pl (@included): fix included files
+       information order in array reference.
+
 2024-09-20  Patrice Dumas  <pertusus@free.fr>
 
        * Pod-Simple-Texinfo/pod2texi.pl ($pod2texi_help, $outdir)
diff --git a/Pod-Simple-Texinfo/pod2texi.pl b/Pod-Simple-Texinfo/pod2texi.pl
index df78fd9173..da392d3196 100755
--- a/Pod-Simple-Texinfo/pod2texi.pl
+++ b/Pod-Simple-Texinfo/pod2texi.pl
@@ -492,7 +492,7 @@ foreach my $file (@input_files) {
 
   my $new = Pod::Simple::Texinfo->new();
 
-  push @included, [$manual_name, $incfile, $outfile, $file]
+  push @included, [$manual_name, $outfile, $incfile, $file]
     if ($base_level > 0);
   my $fh;
   if ($outfile eq '-') {



reply via email to

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