texinfo-commits
[Top][All Lists]
Advanced

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

[no subject]


From: Patrice Dumas
Date: Thu, 27 Jan 2022 15:38:53 -0500 (EST)

branch: master
commit 5d7ec1dabee58aeb01eb58c4e80cc44c9a9602d8
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Thu Jan 27 21:38:40 2022 +0100

    * tp/Texinfo/Convert/LaTeX.pm (_convert): with ENABLE_ENCODING
    convert brace no args commands corresponding to letters to
    encoded characters if possible.
---
 ChangeLog                                          |   6 ++
 tp/TODO                                            |   2 +
 tp/Texinfo/Convert/LaTeX.pm                        |  12 +++
 tp/t/html_tests.t                                  |   7 +-
 tp/t/results/html_tests/commands_in_abbr.pl        |   2 +-
 tp/t/results/html_tests/commands_in_alt.pl         |   2 +-
 .../html_tests/example_at_commands_arguments.pl    |   2 +-
 tp/t/results/html_tests/example_class.pl           |   2 +-
 tp/t/results/html_tests/example_empty_arguments.pl |   2 +-
 tp/t/results/html_tests/example_multi_class.pl     |   2 +-
 tp/t/results/html_tests/image_link_prefix.pl       |   2 +-
 tp/t/results/html_tests/mathjax_with_texinfo.pl    |  10 +-
 .../mathjax_with_texinfo_enable_encoding.pl        | 103 ++++++++++++---------
 .../mathjax_with_texinfo_no_convert_to_latex.pl    |  10 +-
 tp/t/results/html_tests/raw_html.pl                |   2 +-
 tp/t/results/html_tests/shortcontents_no_top.pl    |   2 +-
 tp/t/results/html_tests/simple_menu.pl             |   6 +-
 tp/t/results/html_tests/simple_menu_in_example.pl  |   6 +-
 tp/t/results/html_tests/tex_expanded_in_copying.pl |   2 +-
 .../verbatim_in_multitable_in_example.pl           |   2 +-
 tp/t/results/html_tests/xml_protected_in_verb.pl   |   2 +-
 21 files changed, 112 insertions(+), 74 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index cde6149b3a..8d2c137fac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-01-27  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/Convert/LaTeX.pm (_convert): with ENABLE_ENCODING
+       convert brace no args commands corresponding to letters to
+       encoded characters if possible.
+
 2022-01-26  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/Convert/HTML.pm (_default_format_special_body_about),
diff --git a/tp/TODO b/tp/TODO
index 9624f021c6..66444d5e5c 100644
--- a/tp/TODO
+++ b/tp/TODO
@@ -13,6 +13,8 @@ xmllint --nonet --noout --valid commands.xml
 Before next release
 ===================
 
+for @example args, use *-user as class?
+
 Bugs
 ====
 
diff --git a/tp/Texinfo/Convert/LaTeX.pm b/tp/Texinfo/Convert/LaTeX.pm
index 16555f9801..acc4ddf5d2 100644
--- a/tp/Texinfo/Convert/LaTeX.pm
+++ b/tp/Texinfo/Convert/LaTeX.pm
@@ -2123,6 +2123,18 @@ sub _convert($$)
         and exists($element->{'extra'}->{'clickstyle'})) {
         $converted_command = $element->{'extra'}->{'clickstyle'};
       }
+      if ($self->{'enable_encoding'}) {
+        my $encoding = $self->{'output_encoding_name'};
+        if ($letter_no_arg_commands{$converted_command}) {
+          my $conversion
+            = 
Texinfo::Convert::Unicode::brace_no_arg_command($converted_command,
+                                                              $encoding);
+          if (defined($conversion)) {
+            $result .= $conversion;
+            return $result;
+          }
+        }
+      }
       if 
(exists($LaTeX_no_arg_brace_commands{$command_context}->{$converted_command})) {
         $result .= 
$LaTeX_no_arg_brace_commands{$command_context}->{$converted_command};
       } else {
diff --git a/tp/t/html_tests.t b/tp/t/html_tests.t
index 81a5adfe1d..4d102af843 100644
--- a/tp/t/html_tests.t
+++ b/tp/t/html_tests.t
@@ -132,7 +132,7 @@ my $itemize_arguments_text = '
 ';
 
 my $mathjax_with_texinfo = '@displaymath
-a@sup{b - \frac{\xsi}{phi @copyright{}}} @dotless{i}
+a@sup{b - \frac{\xi}{phi @copyright{}}} @dotless{i}
 @end displaymath
 
 Some @math{a @minus{} b @geq{} @AA{} @^e}.
@@ -466,7 +466,9 @@ in <b>html</b> in copying ``
 ['mathjax_with_texinfo',
 $mathjax_with_texinfo, {}, {'HTML_MATH' => 'mathjax'}],
 ['mathjax_with_texinfo_enable_encoding',
-$mathjax_with_texinfo, {}, {'HTML_MATH' => 'mathjax', 'ENABLE_ENCODING' => 1}],
+$mathjax_with_texinfo, {'test_formats' => ['latex', 'file_latex'],
+                        'full_document' => 1},
+{'HTML_MATH' => 'mathjax', 'ENABLE_ENCODING' => 1,},],
 ['mathjax_with_texinfo_no_convert_to_latex',
 $mathjax_with_texinfo, {}, {'HTML_MATH' => 'mathjax',
                             'CONVERT_TEXINFO_MATH_TO_LATEX' => 0}],
@@ -730,6 +732,7 @@ my @file_tests = (
 
 foreach my $test (@test_cases) {
   push @{$test->[2]->{'test_formats'}}, 'html';
+  $test->[2]->{'test_input_file_name'} = $test->[0] . '.texi';
 }
 foreach my $test (@test_cases_text) {
   push @{$test->[2]->{'test_formats'}}, 'html_text';
diff --git a/tp/t/results/html_tests/commands_in_abbr.pl 
b/tp/t/results/html_tests/commands_in_abbr.pl
index 79f66210d4..8d2bac08af 100644
--- a/tp/t/results/html_tests/commands_in_abbr.pl
+++ b/tp/t/results/html_tests/commands_in_abbr.pl
@@ -298,7 +298,7 @@ div.example {margin-left: 3.2em}
 
 $result_converted_errors{'html'}->{'commands_in_abbr'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'commands_in_abbr.texi: warning: must specify a title with 
a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/commands_in_alt.pl 
b/tp/t/results/html_tests/commands_in_alt.pl
index 736aee0420..831564866b 100644
--- a/tp/t/results/html_tests/commands_in_alt.pl
+++ b/tp/t/results/html_tests/commands_in_alt.pl
@@ -315,7 +315,7 @@ div.example {margin-left: 3.2em}
 
 $result_converted_errors{'html'}->{'commands_in_alt'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'commands_in_alt.texi: warning: must specify a title with 
a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/example_at_commands_arguments.pl 
b/tp/t/results/html_tests/example_at_commands_arguments.pl
index ef8d01ee92..637bfb9a71 100644
--- a/tp/t/results/html_tests/example_at_commands_arguments.pl
+++ b/tp/t/results/html_tests/example_at_commands_arguments.pl
@@ -340,7 +340,7 @@ div.example {margin-left: 3.2em}
 
 $result_converted_errors{'html'}->{'example_at_commands_arguments'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'example_at_commands_arguments.texi: warning: must specify 
a title with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/example_class.pl 
b/tp/t/results/html_tests/example_class.pl
index dd23f452c1..83dcfcdc7b 100644
--- a/tp/t/results/html_tests/example_class.pl
+++ b/tp/t/results/html_tests/example_class.pl
@@ -278,7 +278,7 @@ div.example {margin-left: 3.2em}
 
 $result_converted_errors{'html'}->{'example_class'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'example_class.texi: warning: must specify a title with a 
title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/example_empty_arguments.pl 
b/tp/t/results/html_tests/example_empty_arguments.pl
index abe471bb62..0480c41200 100644
--- a/tp/t/results/html_tests/example_empty_arguments.pl
+++ b/tp/t/results/html_tests/example_empty_arguments.pl
@@ -472,7 +472,7 @@ div.example {margin-left: 3.2em}
 
 $result_converted_errors{'html'}->{'example_empty_arguments'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'example_empty_arguments.texi: warning: must specify a 
title with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/example_multi_class.pl 
b/tp/t/results/html_tests/example_multi_class.pl
index 92fe2200d1..c7d2a0abd1 100644
--- a/tp/t/results/html_tests/example_multi_class.pl
+++ b/tp/t/results/html_tests/example_multi_class.pl
@@ -388,7 +388,7 @@ div.example {margin-left: 3.2em}
 
 $result_converted_errors{'html'}->{'example_multi_class'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'example_multi_class.texi: warning: must specify a title 
with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/image_link_prefix.pl 
b/tp/t/results/html_tests/image_link_prefix.pl
index dd48b82eeb..12e61d4dcf 100644
--- a/tp/t/results/html_tests/image_link_prefix.pl
+++ b/tp/t/results/html_tests/image_link_prefix.pl
@@ -85,7 +85,7 @@ $result_converted{'html'}->{'image_link_prefix'} = '<!DOCTYPE 
html>
 
 $result_converted_errors{'html'}->{'image_link_prefix'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'image_link_prefix.texi: warning: must specify a title 
with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/mathjax_with_texinfo.pl 
b/tp/t/results/html_tests/mathjax_with_texinfo.pl
index 0d6574231e..88284b6bfc 100644
--- a/tp/t/results/html_tests/mathjax_with_texinfo.pl
+++ b/tp/t/results/html_tests/mathjax_with_texinfo.pl
@@ -37,7 +37,7 @@ $result_trees{'mathjax_with_texinfo'} = {
                       'contents' => [
                         {
                           'parent' => {},
-                          'text' => '\\xsi'
+                          'text' => '\\xi'
                         }
                       ],
                       'line_nr' => {
@@ -345,14 +345,14 @@ 
$result_trees{'mathjax_with_texinfo'}{'contents'}[0]{'contents'}[2]{'parent'} =
 $result_trees{'mathjax_with_texinfo'}{'contents'}[0]{'parent'} = 
$result_trees{'mathjax_with_texinfo'};
 
 $result_texis{'mathjax_with_texinfo'} = '@displaymath
-a@sup{b - \\frac{\\xsi}{phi @copyright{}}} @dotless{i}
+a@sup{b - \\frac{\\xi}{phi @copyright{}}} @dotless{i}
 @end displaymath
 
 Some @math{a @minus{} b @geq{} @AA{} @^e}.
 ';
 
 
-$result_texts{'mathjax_with_texinfo'} = 'ab - \\frac{\\xsi}{phi (C)} i
+$result_texts{'mathjax_with_texinfo'} = 'ab - \\frac{\\xi}{phi (C)} i
 
 Some a - b >= AA e^.
 ';
@@ -392,7 +392,7 @@ MathJax = {
 </head>
 
 <body lang="en" class="tex2jax_ignore">
-<div class="displaymath"><em class="tex2jax_process">\\[a^{b - 
\\frac{\\xsi}{phi \\copyright{}}} \\imath{}
+<div class="displaymath"><em class="tex2jax_process">\\[a^{b - 
\\frac{\\xi}{phi \\copyright{}}} \\imath{}
 \\]</em></div>
 <p>Some <em class="math tex2jax_process">\\(a - b \\geq{} 
\\mathord{\\text{\\AA{}}} \\hat{e}\\)</em>.
 </p>
@@ -404,7 +404,7 @@ MathJax = {
 
 $result_converted_errors{'html'}->{'mathjax_with_texinfo'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'mathjax_with_texinfo.texi: warning: must specify a title 
with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/mathjax_with_texinfo_enable_encoding.pl 
b/tp/t/results/html_tests/mathjax_with_texinfo_enable_encoding.pl
index 744fdb7d3b..1748f1deea 100644
--- a/tp/t/results/html_tests/mathjax_with_texinfo_enable_encoding.pl
+++ b/tp/t/results/html_tests/mathjax_with_texinfo_enable_encoding.pl
@@ -9,6 +9,11 @@ $result_trees{'mathjax_with_texinfo_enable_encoding'} = {
   'contents' => [
     {
       'contents' => [
+        {
+          'contents' => [],
+          'parent' => {},
+          'type' => 'preamble_before_content'
+        },
         {
           'cmdname' => 'displaymath',
           'contents' => [
@@ -37,7 +42,7 @@ $result_trees{'mathjax_with_texinfo_enable_encoding'} = {
                       'contents' => [
                         {
                           'parent' => {},
-                          'text' => '\\xsi'
+                          'text' => '\\xi'
                         }
                       ],
                       'line_nr' => {
@@ -301,58 +306,59 @@ $result_trees{'mathjax_with_texinfo_enable_encoding'} = {
   ],
   'type' => 'document_root'
 };
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[0]{'extra'}{'command'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'contents'}[1];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[2]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[3]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[4]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[4]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[4];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[4]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[5]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[6]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[6]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[6];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[6]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'extra'}{'end_command'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'contents'}[6];
 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[0]{'parent'}
 = $result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'extra'}{'command'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[2]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[3]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[4]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[4]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[4];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[4]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[5]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[6]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[6]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[6];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[6]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'extra'}{'end_command'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'contents'}[6];
 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[1]{'parent'}
 = $result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[1];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[3];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[3]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[4]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[5]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[5];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[5]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[6]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[7]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[7]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[7]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[7];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'contents'}[7]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2];
-$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'contents'}[2]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2];
 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[2]{'parent'}
 = $result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[3]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[3];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[3]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[4]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[5]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[5];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[5]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[6]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[7]{'args'}[0]{'contents'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[7]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[7]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[7];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'contents'}[7]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'args'}[0]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[1]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'contents'}[2]{'parent'}
 = 
$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3];
+$result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'contents'}[3]{'parent'}
 = $result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0];
 $result_trees{'mathjax_with_texinfo_enable_encoding'}{'contents'}[0]{'parent'} 
= $result_trees{'mathjax_with_texinfo_enable_encoding'};
 
 $result_texis{'mathjax_with_texinfo_enable_encoding'} = '@displaymath
-a@sup{b - \\frac{\\xsi}{phi @copyright{}}} @dotless{i}
+a@sup{b - \\frac{\\xi}{phi @copyright{}}} @dotless{i}
 @end displaymath
 
 Some @math{a @minus{} b @geq{} @AA{} @^e}.
 ';
 
 
-$result_texts{'mathjax_with_texinfo_enable_encoding'} = 'ab - 
\\frac{\\xsi}{phi (C)} i
+$result_texts{'mathjax_with_texinfo_enable_encoding'} = 'ab - \\frac{\\xi}{phi 
(C)} i
 
 Some a - b >= AA e^.
 ';
@@ -364,6 +370,15 @@ $result_floats{'mathjax_with_texinfo_enable_encoding'} = 
{};
 
 
 
+$result_converted{'latex'}->{'mathjax_with_texinfo_enable_encoding'} = 
'\\begin{document}
+$$
+a^{b - \\frac{\\xi}{phi \\copyright{}}} ı
+$$
+
+Some $a - b \\geq{} Å ê$.
+';
+
+
 $result_converted{'html'}->{'mathjax_with_texinfo_enable_encoding'} = 
'<!DOCTYPE html>
 <html>
 <!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
@@ -392,9 +407,9 @@ MathJax = {
 </head>
 
 <body lang="en" class="tex2jax_ignore">
-<div class="displaymath"><em class="tex2jax_process">\\[a^{b - 
\\frac{\\xsi}{phi \\copyright{}}} ı
+<div class="displaymath"><em class="tex2jax_process">\\[a^{b - 
\\frac{\\xi}{phi \\copyright{}}} ı
 \\]</em></div>
-<p>Some <em class="math tex2jax_process">\\(a - b \\geq{} 
\\mathord{\\text{\\AA{}}} ê\\)</em>.
+<p>Some <em class="math tex2jax_process">\\(a - b \\geq{} Å ê\\)</em>.
 </p>
 
 <a href=\'js_licenses.html\' rel=\'jslicense\'><small>JavaScript license 
information</small></a>
@@ -404,7 +419,7 @@ MathJax = {
 
 $result_converted_errors{'html'}->{'mathjax_with_texinfo_enable_encoding'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'mathjax_with_texinfo_enable_encoding.texi: warning: must 
specify a title with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git 
a/tp/t/results/html_tests/mathjax_with_texinfo_no_convert_to_latex.pl 
b/tp/t/results/html_tests/mathjax_with_texinfo_no_convert_to_latex.pl
index 595828af16..6638dfd680 100644
--- a/tp/t/results/html_tests/mathjax_with_texinfo_no_convert_to_latex.pl
+++ b/tp/t/results/html_tests/mathjax_with_texinfo_no_convert_to_latex.pl
@@ -37,7 +37,7 @@ $result_trees{'mathjax_with_texinfo_no_convert_to_latex'} = {
                       'contents' => [
                         {
                           'parent' => {},
-                          'text' => '\\xsi'
+                          'text' => '\\xi'
                         }
                       ],
                       'line_nr' => {
@@ -345,14 +345,14 @@ 
$result_trees{'mathjax_with_texinfo_no_convert_to_latex'}{'contents'}[0]{'conten
 
$result_trees{'mathjax_with_texinfo_no_convert_to_latex'}{'contents'}[0]{'parent'}
 = $result_trees{'mathjax_with_texinfo_no_convert_to_latex'};
 
 $result_texis{'mathjax_with_texinfo_no_convert_to_latex'} = '@displaymath
-a@sup{b - \\frac{\\xsi}{phi @copyright{}}} @dotless{i}
+a@sup{b - \\frac{\\xi}{phi @copyright{}}} @dotless{i}
 @end displaymath
 
 Some @math{a @minus{} b @geq{} @AA{} @^e}.
 ';
 
 
-$result_texts{'mathjax_with_texinfo_no_convert_to_latex'} = 'ab - 
\\frac{\\xsi}{phi (C)} i
+$result_texts{'mathjax_with_texinfo_no_convert_to_latex'} = 'ab - 
\\frac{\\xi}{phi (C)} i
 
 Some a - b >= AA e^.
 ';
@@ -392,7 +392,7 @@ MathJax = {
 </head>
 
 <body lang="en" class="tex2jax_ignore">
-<div class="displaymath"><em class="tex2jax_process">\\[a<sup class="sup">b - 
\\frac{\\xsi}{phi &copy;}</sup> i
+<div class="displaymath"><em class="tex2jax_process">\\[a<sup class="sup">b - 
\\frac{\\xi}{phi &copy;}</sup> i
 \\]</em></div>
 <p>Some <em class="math tex2jax_process">\\(a - b &ge; &Aring; &ecirc;\\)</em>.
 </p>
@@ -404,7 +404,7 @@ MathJax = {
 
 $result_converted_errors{'html'}->{'mathjax_with_texinfo_no_convert_to_latex'} 
= [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'mathjax_with_texinfo_no_convert_to_latex.texi: warning: 
must specify a title with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/raw_html.pl 
b/tp/t/results/html_tests/raw_html.pl
index 7e52ceabc9..c516ebebcf 100644
--- a/tp/t/results/html_tests/raw_html.pl
+++ b/tp/t/results/html_tests/raw_html.pl
@@ -134,7 +134,7 @@ $result_converted{'html'}->{'raw_html'} = '<!DOCTYPE html>
 
 $result_converted_errors{'html'}->{'raw_html'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'raw_html.texi: warning: must specify a title with a title 
command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/shortcontents_no_top.pl 
b/tp/t/results/html_tests/shortcontents_no_top.pl
index 76a75ebf26..b9cfbc31ec 100644
--- a/tp/t/results/html_tests/shortcontents_no_top.pl
+++ b/tp/t/results/html_tests/shortcontents_no_top.pl
@@ -286,7 +286,7 @@ ul.toc-numbered-mark {list-style: none}
 
 $result_converted_errors{'html'}->{'shortcontents_no_top'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'shortcontents_no_top.texi: warning: must specify a title 
with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/simple_menu.pl 
b/tp/t/results/html_tests/simple_menu.pl
index d717fd6fbf..7f7224f05a 100644
--- a/tp/t/results/html_tests/simple_menu.pl
+++ b/tp/t/results/html_tests/simple_menu.pl
@@ -2163,7 +2163,7 @@ $result_floats{'simple_menu'} = {};
 
 
 
-$result_converted{'info'}->{'simple_menu'} = 'This is , produced from .
+$result_converted{'info'}->{'simple_menu'} = 'This is , produced from 
simple_menu.texi.
 
 
 File: ,  Node: Top,  Next: (ggg),  Up: (dir)
@@ -2213,7 +2213,7 @@ in detaildescription
 
 
 Tag Table:
-Node: Top27
+Node: Top43
 
 End Tag Table
 
@@ -2321,7 +2321,7 @@ in detaildescription
 
 $result_converted_errors{'html'}->{'simple_menu'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'simple_menu.texi: warning: must specify a title with a 
title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/simple_menu_in_example.pl 
b/tp/t/results/html_tests/simple_menu_in_example.pl
index 761d0f7bec..5729081a62 100644
--- a/tp/t/results/html_tests/simple_menu_in_example.pl
+++ b/tp/t/results/html_tests/simple_menu_in_example.pl
@@ -711,7 +711,7 @@ $result_floats{'simple_menu_in_example'} = {};
 
 
 
-$result_converted{'info'}->{'simple_menu_in_example'} = 'This is , produced 
from .
+$result_converted{'info'}->{'simple_menu_in_example'} = 'This is , produced 
from simple_menu_in_example.texi.
 
 
 File: ,  Node: Top,  Up: (dir)
@@ -728,7 +728,7 @@ File: ,  Node: Top,  Up: (dir)
 
 
 Tag Table:
-Node: Top27
+Node: Top54
 
 End Tag Table
 
@@ -795,7 +795,7 @@ pre.menu-preformatted {font-family: serif}
 
 $result_converted_errors{'html'}->{'simple_menu_in_example'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'simple_menu_in_example.texi: warning: must specify a 
title with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/tex_expanded_in_copying.pl 
b/tp/t/results/html_tests/tex_expanded_in_copying.pl
index 981f949c17..044ca5052e 100644
--- a/tp/t/results/html_tests/tex_expanded_in_copying.pl
+++ b/tp/t/results/html_tests/tex_expanded_in_copying.pl
@@ -196,7 +196,7 @@ $result_converted{'html'}->{'tex_expanded_in_copying'} = 
'<!DOCTYPE html>
 
 $result_converted_errors{'html'}->{'tex_expanded_in_copying'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'tex_expanded_in_copying.texi: warning: must specify a 
title with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/verbatim_in_multitable_in_example.pl 
b/tp/t/results/html_tests/verbatim_in_multitable_in_example.pl
index c4bf31c69f..ce04663e26 100644
--- a/tp/t/results/html_tests/verbatim_in_multitable_in_example.pl
+++ b/tp/t/results/html_tests/verbatim_in_multitable_in_example.pl
@@ -450,7 +450,7 @@ div.example {margin-left: 3.2em}
 
 $result_converted_errors{'html'}->{'verbatim_in_multitable_in_example'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'verbatim_in_multitable_in_example.texi: warning: must 
specify a title with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'
diff --git a/tp/t/results/html_tests/xml_protected_in_verb.pl 
b/tp/t/results/html_tests/xml_protected_in_verb.pl
index ea221dd9eb..af567b7a0a 100644
--- a/tp/t/results/html_tests/xml_protected_in_verb.pl
+++ b/tp/t/results/html_tests/xml_protected_in_verb.pl
@@ -199,7 +199,7 @@ $result_converted{'html'}->{'xml_protected_in_verb'} = 
'<!DOCTYPE html>
 
 $result_converted_errors{'html'}->{'xml_protected_in_verb'} = [
   {
-    'error_line' => 'warning: must specify a title with a title command or @top
+    'error_line' => 'xml_protected_in_verb.texi: warning: must specify a title 
with a title command or @top
 ',
     'text' => 'must specify a title with a title command or @top',
     'type' => 'warning'



reply via email to

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