[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Gavin D. Smith |
Date: |
Fri, 4 Aug 2023 08:16:19 -0400 (EDT) |
branch: master
commit 9f1aa63c0a6357f06c0ea937074b3d1dac15682d
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Fri Aug 4 12:21:54 2023 +0100
* tp/Texinfo/Common.pm (%valid_tree_transformations):
Add 'complete_tree_nodes_missing_menu', which should have been in
this list as it is documented and implemented.
---
ChangeLog | 6 ++++++
tp/Texinfo/Common.pm | 4 +++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index 1760d1acd4..071898d5d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2023-08-04 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * tp/Texinfo/Common.pm (%valid_tree_transformations):
+ Add 'complete_tree_nodes_missing_menu', which should have been in
+ this list as it is documented and implemented.
+
2023-08-04 Gavin Smith <gavinsmith0123@gmail.com>
Move new_master_menu
diff --git a/tp/Texinfo/Common.pm b/tp/Texinfo/Common.pm
index c34f9eb3cf..1bbc8098f9 100644
--- a/tp/Texinfo/Common.pm
+++ b/tp/Texinfo/Common.pm
@@ -534,7 +534,9 @@ foreach my $valid_transformation ('simple_menus',
'fill_gaps_in_sectioning', 'move_index_entries_after_items',
'relate_index_entries_to_items',
'insert_nodes_for_sectioning_commands',
- 'complete_tree_nodes_menus', 'regenerate_master_menu',
+ 'complete_tree_nodes_menus',
+ 'complete_tree_nodes_missing_menu',
+ 'regenerate_master_menu',
'indent_menu_descriptions') {
$valid_tree_transformations{$valid_transformation} = 1;
}