texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * p/Texinfo/ParserNonXS.pm (_process_remaining_on


From: Patrice Dumas
Subject: branch master updated: * p/Texinfo/ParserNonXS.pm (_process_remaining_on_line), tp/Texinfo/XS/parsetexi/separator.c (handle_close_brace): rename region extra anchor key to element_region.
Date: Wed, 22 Feb 2023 11:25:59 -0500

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 4440a14398 * p/Texinfo/ParserNonXS.pm (_process_remaining_on_line), 
tp/Texinfo/XS/parsetexi/separator.c (handle_close_brace): rename region extra 
anchor key to element_region.
4440a14398 is described below

commit 4440a143987a983f199d8cec6f9353596e1acb4c
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Wed Feb 22 17:25:50 2023 +0100

    * p/Texinfo/ParserNonXS.pm (_process_remaining_on_line),
    tp/Texinfo/XS/parsetexi/separator.c (handle_close_brace): rename
    region extra anchor key to element_region.
---
 ChangeLog                                                      |  6 ++++++
 tp/Texinfo/ParserNonXS.pm                                      | 10 ++++------
 tp/Texinfo/XS/parsetexi/separator.c                            |  2 +-
 .../converters_tests/references_to_top_no_top_output.pl        |  2 +-
 tp/t/results/float/float_copying.pl                            |  4 ++--
 tp/t/results/html_tests/float_copying.pl                       |  4 ++--
 tp/t/results/indices/index_special_region.pl                   |  8 ++++----
 tp/t/results/indices/index_special_region_no_insertcopying.pl  |  8 ++++----
 ...ex_special_region_no_insertcopying_no_titlepage_no_nodes.pl |  8 ++++----
 ...index_special_region_no_insertcopying_titlepage_no_nodes.pl |  8 ++++----
 ...on_no_insertcopying_titlepage_no_nodes_footnotes_default.pl |  8 ++++----
 .../indices/index_special_region_no_titlepage_no_nodes.pl      |  8 ++++----
 .../results/indices/index_special_region_titlepage_no_nodes.pl |  8 ++++----
 ...ndex_special_region_titlepage_no_nodes_footnotes_default.pl |  8 ++++----
 tp/t/results/latex_tests/anchor_in_copying.pl                  |  2 +-
 .../latex_tests/anchor_in_copying_insertcopying_chap.pl        |  2 +-
 .../latex_tests/anchor_in_copying_insertcopying_titlepage.pl   |  4 ++--
 .../anchor_in_copying_insertcopying_titlepage_chap.pl          |  2 +-
 tp/t/results/regions/anchor_in_copying.pl                      |  2 +-
 tp/t/results/regions/anchor_in_copying_in_footnote.pl          |  2 +-
 tp/t/results/regions/anchor_in_titlepage.pl                    |  2 +-
 tp/t/results/regions/anchor_in_titlepage_titlepage.pl          |  2 +-
 22 files changed, 57 insertions(+), 53 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 95b84a4d17..3248848a82 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2023-02-22  Patrice Dumas  <pertusus@free.fr>
+
+       * p/Texinfo/ParserNonXS.pm (_process_remaining_on_line),
+       tp/Texinfo/XS/parsetexi/separator.c (handle_close_brace): rename
+       region extra anchor key to element_region.
+
 2023-02-22  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/ParserNonXS.pm (_process_remaining_on_line),
diff --git a/tp/Texinfo/ParserNonXS.pm b/tp/Texinfo/ParserNonXS.pm
index 68f431f0d5..f1636dd080 100644
--- a/tp/Texinfo/ParserNonXS.pm
+++ b/tp/Texinfo/ParserNonXS.pm
@@ -6261,13 +6261,14 @@ sub _process_remaining_on_line($$$$)
                             $current->{'parent'}->{'cmdname'}, $source_info)) {
             _register_label($self->{'targets'}, $current->{'parent'},
                             $parsed_anchor);
+             # the @anchor element_region information is not used in converters
              if ($self->{'nesting_context'}
                  and $self->{'nesting_context'}->{'regions_stack'}
            and scalar(@{$self->{'nesting_context'}->{'regions_stack'}}) > 0) {
                 $current->{'extra'} = {} if (!$current->{'extra'});
-                $current->{'extra'}->{'region'}
+                $current->{'extra'}->{'element_region'}
                   = $self->{'nesting_context'}->{'regions_stack'}->[-1];
-             }
+            }
           }
         } elsif ($ref_commands{$current->{'parent'}->{'cmdname'}}) {
           my $ref = $current->{'parent'};
@@ -8254,7 +8255,7 @@ index entry.
 
 The region command (C<@copying>, C<@titlepage>) containing the element,
 if it is in such an environement.  Set for @-commands elements that have an
-associated index entry.
+associated index entry and for @anchor.
 
 =item index_entry
 
@@ -8307,9 +8308,6 @@ the normalized label, built as specified in the Texinfo 
documentation in the
 I<HTML Xref> node.  There is also a I<node_content> key for an array holding
 the corresponding content.
 
-C<@anchor> also has I<region> set to the special region name if
-in a special region (C<@copying>, C<@titlepage>).
-
 =item C<@author>
 
 If in a C<@titlepage>, the titlepage is in I<titlepage>, if in
diff --git a/tp/Texinfo/XS/parsetexi/separator.c 
b/tp/Texinfo/XS/parsetexi/separator.c
index e91ec9d62b..65b5cec3b8 100644
--- a/tp/Texinfo/XS/parsetexi/separator.c
+++ b/tp/Texinfo/XS/parsetexi/separator.c
@@ -281,7 +281,7 @@ handle_close_brace (ELEMENT *current, char **line_inout)
               register_label (current->parent, parsed_anchor->node_content);
               if (nesting_context.regions_stack.top > 0)
                 {
-                  add_extra_string_dup (current, "region",
+                  add_extra_string_dup (current, "element_region",
                     command_name(top_command(&nesting_context.regions_stack)));
                 }
               if (parsed_anchor->manual_content)
diff --git a/tp/t/results/converters_tests/references_to_top_no_top_output.pl 
b/tp/t/results/converters_tests/references_to_top_no_top_output.pl
index f8de809f6f..c56062293e 100644
--- a/tp/t/results/converters_tests/references_to_top_no_top_output.pl
+++ b/tp/t/results/converters_tests/references_to_top_no_top_output.pl
@@ -92,7 +92,7 @@ $result_trees{'references_to_top_no_top_output'} = {
                             }
                           ],
                           'extra' => {
-                            'region' => 'copying'
+                            'element_region' => 'copying'
                           },
                           'type' => 'brace_command_arg'
                         }
diff --git a/tp/t/results/float/float_copying.pl 
b/tp/t/results/float/float_copying.pl
index 9c2a43a1de..5f881e8608 100644
--- a/tp/t/results/float/float_copying.pl
+++ b/tp/t/results/float/float_copying.pl
@@ -111,7 +111,7 @@ $result_trees{'float_copying'} = {
                                                     }
                                                   ],
                                                   'extra' => {
-                                                    'region' => 'copying'
+                                                    'element_region' => 
'copying'
                                                   },
                                                   'type' => 'brace_command_arg'
                                                 }
@@ -350,7 +350,7 @@ $result_trees{'float_copying'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git a/tp/t/results/html_tests/float_copying.pl 
b/tp/t/results/html_tests/float_copying.pl
index fa794654a9..a83cd8e7f4 100644
--- a/tp/t/results/html_tests/float_copying.pl
+++ b/tp/t/results/html_tests/float_copying.pl
@@ -168,7 +168,7 @@ $result_trees{'float_copying'} = {
                                                     }
                                                   ],
                                                   'extra' => {
-                                                    'region' => 'copying'
+                                                    'element_region' => 
'copying'
                                                   },
                                                   'type' => 'brace_command_arg'
                                                 }
@@ -407,7 +407,7 @@ $result_trees{'float_copying'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git a/tp/t/results/indices/index_special_region.pl 
b/tp/t/results/indices/index_special_region.pl
index cd1c479cb0..bc4300459f 100644
--- a/tp/t/results/indices/index_special_region.pl
+++ b/tp/t/results/indices/index_special_region.pl
@@ -93,7 +93,7 @@ $result_trees{'index_special_region'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'copying'
+                        'element_region' => 'copying'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -143,7 +143,7 @@ $result_trees{'index_special_region'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
@@ -395,7 +395,7 @@ $result_trees{'index_special_region'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -441,7 +441,7 @@ $result_trees{'index_special_region'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'titlepage'
+                                    'element_region' => 'titlepage'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git a/tp/t/results/indices/index_special_region_no_insertcopying.pl 
b/tp/t/results/indices/index_special_region_no_insertcopying.pl
index 1ef14424bb..89861d074e 100644
--- a/tp/t/results/indices/index_special_region_no_insertcopying.pl
+++ b/tp/t/results/indices/index_special_region_no_insertcopying.pl
@@ -93,7 +93,7 @@ $result_trees{'index_special_region_no_insertcopying'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'copying'
+                        'element_region' => 'copying'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -143,7 +143,7 @@ $result_trees{'index_special_region_no_insertcopying'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
@@ -395,7 +395,7 @@ $result_trees{'index_special_region_no_insertcopying'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -441,7 +441,7 @@ $result_trees{'index_special_region_no_insertcopying'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'titlepage'
+                                    'element_region' => 'titlepage'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git 
a/tp/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes.pl
 
b/tp/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes.pl
index 62f7a232eb..eaad206fac 100644
--- 
a/tp/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes.pl
+++ 
b/tp/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes.pl
@@ -93,7 +93,7 @@ 
$result_trees{'index_special_region_no_insertcopying_no_titlepage_no_nodes'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'copying'
+                        'element_region' => 'copying'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -143,7 +143,7 @@ 
$result_trees{'index_special_region_no_insertcopying_no_titlepage_no_nodes'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
@@ -395,7 +395,7 @@ 
$result_trees{'index_special_region_no_insertcopying_no_titlepage_no_nodes'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -441,7 +441,7 @@ 
$result_trees{'index_special_region_no_insertcopying_no_titlepage_no_nodes'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'titlepage'
+                                    'element_region' => 'titlepage'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git 
a/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes.pl
 
b/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes.pl
index 7ef4172872..b52146eeaa 100644
--- 
a/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes.pl
+++ 
b/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes.pl
@@ -93,7 +93,7 @@ 
$result_trees{'index_special_region_no_insertcopying_titlepage_no_nodes'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'copying'
+                        'element_region' => 'copying'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -143,7 +143,7 @@ 
$result_trees{'index_special_region_no_insertcopying_titlepage_no_nodes'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
@@ -395,7 +395,7 @@ 
$result_trees{'index_special_region_no_insertcopying_titlepage_no_nodes'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -441,7 +441,7 @@ 
$result_trees{'index_special_region_no_insertcopying_titlepage_no_nodes'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'titlepage'
+                                    'element_region' => 'titlepage'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git 
a/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default.pl
 
b/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default.pl
index ebc0d247a6..b43d568f00 100644
--- 
a/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default.pl
+++ 
b/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default.pl
@@ -93,7 +93,7 @@ 
$result_trees{'index_special_region_no_insertcopying_titlepage_no_nodes_footnote
                         }
                       ],
                       'extra' => {
-                        'region' => 'copying'
+                        'element_region' => 'copying'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -143,7 +143,7 @@ 
$result_trees{'index_special_region_no_insertcopying_titlepage_no_nodes_footnote
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
@@ -395,7 +395,7 @@ 
$result_trees{'index_special_region_no_insertcopying_titlepage_no_nodes_footnote
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -441,7 +441,7 @@ 
$result_trees{'index_special_region_no_insertcopying_titlepage_no_nodes_footnote
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'titlepage'
+                                    'element_region' => 'titlepage'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git a/tp/t/results/indices/index_special_region_no_titlepage_no_nodes.pl 
b/tp/t/results/indices/index_special_region_no_titlepage_no_nodes.pl
index 05449b10c5..3244340f55 100644
--- a/tp/t/results/indices/index_special_region_no_titlepage_no_nodes.pl
+++ b/tp/t/results/indices/index_special_region_no_titlepage_no_nodes.pl
@@ -93,7 +93,7 @@ $result_trees{'index_special_region_no_titlepage_no_nodes'} = 
{
                         }
                       ],
                       'extra' => {
-                        'region' => 'copying'
+                        'element_region' => 'copying'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -143,7 +143,7 @@ $result_trees{'index_special_region_no_titlepage_no_nodes'} 
= {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
@@ -395,7 +395,7 @@ $result_trees{'index_special_region_no_titlepage_no_nodes'} 
= {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -441,7 +441,7 @@ $result_trees{'index_special_region_no_titlepage_no_nodes'} 
= {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'titlepage'
+                                    'element_region' => 'titlepage'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git a/tp/t/results/indices/index_special_region_titlepage_no_nodes.pl 
b/tp/t/results/indices/index_special_region_titlepage_no_nodes.pl
index 042af72b47..662eff453a 100644
--- a/tp/t/results/indices/index_special_region_titlepage_no_nodes.pl
+++ b/tp/t/results/indices/index_special_region_titlepage_no_nodes.pl
@@ -93,7 +93,7 @@ $result_trees{'index_special_region_titlepage_no_nodes'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'copying'
+                        'element_region' => 'copying'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -143,7 +143,7 @@ $result_trees{'index_special_region_titlepage_no_nodes'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
@@ -395,7 +395,7 @@ $result_trees{'index_special_region_titlepage_no_nodes'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -441,7 +441,7 @@ $result_trees{'index_special_region_titlepage_no_nodes'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'titlepage'
+                                    'element_region' => 'titlepage'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git 
a/tp/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default.pl
 
b/tp/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default.pl
index eabdb416d7..320d827ecd 100644
--- 
a/tp/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default.pl
+++ 
b/tp/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default.pl
@@ -93,7 +93,7 @@ 
$result_trees{'index_special_region_titlepage_no_nodes_footnotes_default'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'copying'
+                        'element_region' => 'copying'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -143,7 +143,7 @@ 
$result_trees{'index_special_region_titlepage_no_nodes_footnotes_default'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'copying'
+                                    'element_region' => 'copying'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
@@ -395,7 +395,7 @@ 
$result_trees{'index_special_region_titlepage_no_nodes_footnotes_default'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
@@ -441,7 +441,7 @@ 
$result_trees{'index_special_region_titlepage_no_nodes_footnotes_default'} = {
                                     }
                                   ],
                                   'extra' => {
-                                    'region' => 'titlepage'
+                                    'element_region' => 'titlepage'
                                   },
                                   'type' => 'brace_command_arg'
                                 }
diff --git a/tp/t/results/latex_tests/anchor_in_copying.pl 
b/tp/t/results/latex_tests/anchor_in_copying.pl
index 3ee5b75dc9..07360a28e7 100644
--- a/tp/t/results/latex_tests/anchor_in_copying.pl
+++ b/tp/t/results/latex_tests/anchor_in_copying.pl
@@ -39,7 +39,7 @@ $result_trees{'anchor_in_copying'} = {
                             }
                           ],
                           'extra' => {
-                            'region' => 'copying'
+                            'element_region' => 'copying'
                           },
                           'type' => 'brace_command_arg'
                         }
diff --git a/tp/t/results/latex_tests/anchor_in_copying_insertcopying_chap.pl 
b/tp/t/results/latex_tests/anchor_in_copying_insertcopying_chap.pl
index c0ca009dd9..d89a0df698 100644
--- a/tp/t/results/latex_tests/anchor_in_copying_insertcopying_chap.pl
+++ b/tp/t/results/latex_tests/anchor_in_copying_insertcopying_chap.pl
@@ -39,7 +39,7 @@ $result_trees{'anchor_in_copying_insertcopying_chap'} = {
                             }
                           ],
                           'extra' => {
-                            'region' => 'copying'
+                            'element_region' => 'copying'
                           },
                           'type' => 'brace_command_arg'
                         }
diff --git 
a/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage.pl 
b/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage.pl
index 0087af373f..bee40a3883 100644
--- a/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage.pl
+++ b/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage.pl
@@ -39,7 +39,7 @@ $result_trees{'anchor_in_copying_insertcopying_titlepage'} = {
                             }
                           ],
                           'extra' => {
-                            'region' => 'copying'
+                            'element_region' => 'copying'
                           },
                           'type' => 'brace_command_arg'
                         }
@@ -175,7 +175,7 @@ $result_trees{'anchor_in_copying_insertcopying_titlepage'} 
= {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
diff --git 
a/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage_chap.pl 
b/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage_chap.pl
index 086b3a4802..e1970c0097 100644
--- a/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage_chap.pl
+++ b/tp/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage_chap.pl
@@ -39,7 +39,7 @@ 
$result_trees{'anchor_in_copying_insertcopying_titlepage_chap'} = {
                             }
                           ],
                           'extra' => {
-                            'region' => 'copying'
+                            'element_region' => 'copying'
                           },
                           'type' => 'brace_command_arg'
                         }
diff --git a/tp/t/results/regions/anchor_in_copying.pl 
b/tp/t/results/regions/anchor_in_copying.pl
index b234d40f4f..e1a0fa140f 100644
--- a/tp/t/results/regions/anchor_in_copying.pl
+++ b/tp/t/results/regions/anchor_in_copying.pl
@@ -55,7 +55,7 @@ $result_trees{'anchor_in_copying'} = {
                             }
                           ],
                           'extra' => {
-                            'region' => 'copying'
+                            'element_region' => 'copying'
                           },
                           'type' => 'brace_command_arg'
                         }
diff --git a/tp/t/results/regions/anchor_in_copying_in_footnote.pl 
b/tp/t/results/regions/anchor_in_copying_in_footnote.pl
index 7366f8e15a..dab5f1f800 100644
--- a/tp/t/results/regions/anchor_in_copying_in_footnote.pl
+++ b/tp/t/results/regions/anchor_in_copying_in_footnote.pl
@@ -54,7 +54,7 @@ $result_trees{'anchor_in_copying_in_footnote'} = {
                                         }
                                       ],
                                       'extra' => {
-                                        'region' => 'copying'
+                                        'element_region' => 'copying'
                                       },
                                       'type' => 'brace_command_arg'
                                     }
diff --git a/tp/t/results/regions/anchor_in_titlepage.pl 
b/tp/t/results/regions/anchor_in_titlepage.pl
index 0828e7b412..897acaefdb 100644
--- a/tp/t/results/regions/anchor_in_titlepage.pl
+++ b/tp/t/results/regions/anchor_in_titlepage.pl
@@ -39,7 +39,7 @@ $result_trees{'anchor_in_titlepage'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }
diff --git a/tp/t/results/regions/anchor_in_titlepage_titlepage.pl 
b/tp/t/results/regions/anchor_in_titlepage_titlepage.pl
index cf17618daa..cce02c2420 100644
--- a/tp/t/results/regions/anchor_in_titlepage_titlepage.pl
+++ b/tp/t/results/regions/anchor_in_titlepage_titlepage.pl
@@ -39,7 +39,7 @@ $result_trees{'anchor_in_titlepage_titlepage'} = {
                         }
                       ],
                       'extra' => {
-                        'region' => 'titlepage'
+                        'element_region' => 'titlepage'
                       },
                       'type' => 'brace_command_arg'
                     }



reply via email to

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