texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: tp/Texinfo/XS/parsetexi/Parsetexi.pm: rename _com


From: Patrice Dumas
Subject: branch master updated: tp/Texinfo/XS/parsetexi/Parsetexi.pm: rename _complete_node_menus() as _associate_node_menus()
Date: Mon, 30 Aug 2021 09:29:36 -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 7d37771  tp/Texinfo/XS/parsetexi/Parsetexi.pm: rename 
_complete_node_menus() as _associate_node_menus()
7d37771 is described below

commit 7d377710dfc3f0fb03dd458ad649747b60340f49
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Mon Aug 30 15:28:58 2021 +0200

    tp/Texinfo/XS/parsetexi/Parsetexi.pm: rename _complete_node_menus() as
    _associate_node_menus()
---
 tp/Texinfo/XS/parsetexi/Parsetexi.pm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tp/Texinfo/XS/parsetexi/Parsetexi.pm 
b/tp/Texinfo/XS/parsetexi/Parsetexi.pm
index 8220d59..285d11f 100644
--- a/tp/Texinfo/XS/parsetexi/Parsetexi.pm
+++ b/tp/Texinfo/XS/parsetexi/Parsetexi.pm
@@ -153,7 +153,7 @@ sub _find_menus_of_node {
 
 # Set 'menus' array for each node.  This accounts for malformed input where
 # the number of sectioning commands between @node and @menu is not exactly 1.
-sub _complete_node_menus {
+sub _associate_node_menus {
   my $self = shift;
   my $root = shift;
 
@@ -258,7 +258,7 @@ sub parse_texi_file ($$)
   my $TREE = build_texinfo_tree ();
   get_parser_info ($self);
 
-  _complete_node_menus ($self, $TREE);
+  _associate_node_menus ($self, $TREE);
 
   my $text_root;
   if ($TREE->{'type'} eq 'text_root') {
@@ -334,7 +334,7 @@ sub parse_texi_text($$;$$$$)
     }
 
     get_parser_info($self);
-    _complete_node_menus ($self, $tree);
+    _associate_node_menus ($self, $tree);
 
     return $tree;
 }



reply via email to

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