texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * tp/Texinfo/Convert/Plaintext.pm (_convert): do


From: Patrice Dumas
Subject: branch master updated: * tp/Texinfo/Convert/Plaintext.pm (_convert): do not consider the cartouche title to be a paragraph, reset paragraph count to the value before the title. Do not set the text_element_context counter, as the title is on its own line. Do not increase redundantly lines count.
Date: Wed, 21 Dec 2022 15:39:31 -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 1e2c52554e * tp/Texinfo/Convert/Plaintext.pm (_convert): do not 
consider the cartouche title to be a paragraph, reset paragraph count to the 
value before the title. Do not set the text_element_context counter, as the 
title is on its own line.  Do not increase redundantly lines count.
1e2c52554e is described below

commit 1e2c52554ee97b4686173f2f58e8e52144a91f6d
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Wed Dec 21 21:39:20 2022 +0100

    * tp/Texinfo/Convert/Plaintext.pm (_convert): do not consider the
    cartouche title to be a paragraph, reset paragraph count to the value
    before the title.
    Do not set the text_element_context counter, as the title is on its
    own line.  Do not increase redundantly lines count.
    
    * tp/Makefile.tres, tp/t/02coverage.t: add cartouche_title_and_content
    new test with cartouche title and some content in the cartouche.
---
 ChangeLog                                          |  11 +
 tp/Makefile.tres                                   |   1 +
 tp/Texinfo/Convert/Plaintext.pm                    |  10 +-
 tp/t/02coverage.t                                  |   6 +
 tp/t/results/coverage/cartouche.pl                 |   2 +-
 .../coverage/cartouche_title_and_content.pl        | 157 ++++
 tp/t/results/coverage/comment_on_cartouche_line.pl |   2 +-
 .../res_parser/formatting_info/formatting.info     | 836 ++++++++++-----------
 .../formatting.info                                | 836 ++++++++++-----------
 .../res_parser/formatting_plaintext/formatting.txt | 802 ++++++++++----------
 10 files changed, 1421 insertions(+), 1242 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 846a18a5da..a18d8b2504 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2022-12-21  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/Convert/Plaintext.pm (_convert): do not consider the
+       cartouche title to be a paragraph, reset paragraph count to the value
+       before the title.
+       Do not set the text_element_context counter, as the title is on its
+       own line.  Do not increase redundantly lines count.
+
+       * tp/Makefile.tres, tp/t/02coverage.t: add cartouche_title_and_content
+       new test with cartouche title and some content in the cartouche.
+
 2022-12-21  Patrice Dumas  <pertusus@free.fr>
 
        * doc/texinfo.texi (@code{@@cartouche}): document the title argument
diff --git a/tp/Makefile.tres b/tp/Makefile.tres
index 6d763b417e..d14bdd69f1 100644
--- a/tp/Makefile.tres
+++ b/tp/Makefile.tres
@@ -236,6 +236,7 @@ test_files_generated_list = 
$(test_tap_files_generated_list) \
   t/results/coverage/cartouche.pl \
   t/results/coverage/cartouche_in_example.pl \
   t/results/coverage/cartouche_in_quotation.pl \
+  t/results/coverage/cartouche_title_and_content.pl \
   t/results/coverage/center.pl \
   t/results/coverage/command_in_end.pl \
   t/results/coverage/command_in_end_expanded_raw_command_after.pl \
diff --git a/tp/Texinfo/Convert/Plaintext.pm b/tp/Texinfo/Convert/Plaintext.pm
index 05eecde0cd..57500054fa 100644
--- a/tp/Texinfo/Convert/Plaintext.pm
+++ b/tp/Texinfo/Convert/Plaintext.pm
@@ -2584,14 +2584,18 @@ sub _convert($$)
         if ($element->{'args'} and $element->{'args'}->[0]
             and $element->{'args'}->[0]->{'contents'}
             and @{$element->{'args'}->[0]->{'contents'}}) {
+          # FIXME reset the paragraph count in cartouche and use a
+          # specific format_context?
           my $prepended = $self->gdt('@center @b{{cartouche_arg}}', 
              {'cartouche_arg' => $element->{'args'}->[0]->{'contents'}});
           $prepended->{'type'} = 'frenchspacing';
+          # Do not consider the title to be like a paragraph
+          my $previous_paragraph_count
+              = $self->{'format_context'}->[-1]->{'paragraph_count'};
           $result .= $self->convert_line($prepended);
-          $self->{'text_element_context'}->[-1]->{'counter'} +=
-             Texinfo::Convert::Unicode::string_width($result);
           $self->{'empty_lines_count'} = 0 unless ($result eq '');
-          _add_lines_count($self, 1);
+          $self->{'format_context'}->[-1]->{'paragraph_count'}
+              = $previous_paragraph_count;
         }
       }
     } elsif ($command eq 'node') {
diff --git a/tp/t/02coverage.t b/tp/t/02coverage.t
index be67f545c4..0e9e2901ff 100644
--- a/tp/t/02coverage.t
+++ b/tp/t/02coverage.t
@@ -343,6 +343,12 @@ in cartouche.
 Out of main text
 @end cartouche
 '],
+['cartouche_title_and_content',
+'@cartouche Box title on @emph{documentation}
+Text on documentation explaining something important out of the main
+flow of the text.
+@end cartouche
+',],
 ['comment_on_group_line',
 '@group @c comment
 in group.
diff --git a/tp/t/results/coverage/cartouche.pl 
b/tp/t/results/coverage/cartouche.pl
index 25d374c42d..5c41c4ff3e 100644
--- a/tp/t/results/coverage/cartouche.pl
+++ b/tp/t/results/coverage/cartouche.pl
@@ -182,7 +182,7 @@ $result_floats{'cartouche'} = {};
 $result_converted{'plaintext'}->{'cartouche'} = 'in cartouche.
 
                             _Title of box_
-Out of main text
+   Out of main text
 ';
 
 
diff --git a/tp/t/results/coverage/cartouche_title_and_content.pl 
b/tp/t/results/coverage/cartouche_title_and_content.pl
new file mode 100644
index 0000000000..187879767c
--- /dev/null
+++ b/tp/t/results/coverage/cartouche_title_and_content.pl
@@ -0,0 +1,157 @@
+use vars qw(%result_texis %result_texts %result_trees %result_errors 
+   %result_indices %result_sectioning %result_nodes %result_menus
+   %result_floats %result_converted %result_converted_errors 
+   %result_elements %result_directions_text %result_indices_sort_strings);
+
+use utf8;
+
+$result_trees{'cartouche_title_and_content'} = {
+  'contents' => [
+    {
+      'contents' => [
+        {
+          'args' => [
+            {
+              'contents' => [
+                {
+                  'text' => 'Box title on '
+                },
+                {
+                  'args' => [
+                    {
+                      'contents' => [
+                        {
+                          'text' => 'documentation'
+                        }
+                      ],
+                      'type' => 'brace_command_arg'
+                    }
+                  ],
+                  'cmdname' => 'emph',
+                  'source_info' => {
+                    'file_name' => '',
+                    'line_nr' => 1,
+                    'macro' => ''
+                  }
+                }
+              ],
+              'info' => {
+                'spaces_after_argument' => '
+'
+              },
+              'type' => 'block_line_arg'
+            }
+          ],
+          'cmdname' => 'cartouche',
+          'contents' => [
+            {
+              'contents' => [
+                {
+                  'text' => 'Text on documentation explaining something 
important out of the main
+'
+                },
+                {
+                  'text' => 'flow of the text.
+'
+                }
+              ],
+              'type' => 'paragraph'
+            },
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'text' => 'cartouche'
+                    }
+                  ],
+                  'info' => {
+                    'spaces_after_argument' => '
+'
+                  },
+                  'type' => 'line_arg'
+                }
+              ],
+              'cmdname' => 'end',
+              'extra' => {
+                'text_arg' => 'cartouche'
+              },
+              'info' => {
+                'spaces_before_argument' => ' '
+              },
+              'source_info' => {
+                'file_name' => '',
+                'line_nr' => 4,
+                'macro' => ''
+              }
+            }
+          ],
+          'info' => {
+            'spaces_before_argument' => ' '
+          },
+          'source_info' => {
+            'file_name' => '',
+            'line_nr' => 1,
+            'macro' => ''
+          }
+        }
+      ],
+      'type' => 'before_node_section'
+    }
+  ],
+  'type' => 'document_root'
+};
+
+$result_texis{'cartouche_title_and_content'} = '@cartouche Box title on 
@emph{documentation}
+Text on documentation explaining something important out of the main
+flow of the text.
+@end cartouche
+';
+
+
+$result_texts{'cartouche_title_and_content'} = 'Box title on documentation
+Text on documentation explaining something important out of the main
+flow of the text.
+';
+
+$result_errors{'cartouche_title_and_content'} = [];
+
+
+$result_floats{'cartouche_title_and_content'} = {};
+
+
+
+$result_converted{'plaintext'}->{'cartouche_title_and_content'} = '            
         Box title on _documentation_
+Text on documentation explaining something important out of the main
+flow of the text.
+';
+
+
+$result_converted{'html_text'}->{'cartouche_title_and_content'} = '<table 
class="cartouche" border="1"><tr><th>
+Box title on <em class="emph">documentation</em></th></tr><tr><td>
+<p>Text on documentation explaining something important out of the main
+flow of the text.
+</p></td></tr></table>
+';
+
+
+$result_converted{'xml'}->{'cartouche_title_and_content'} = '<cartouche 
spaces=" " endspaces=" "><cartouchetitle>Box title on 
<emph>documentation</emph></cartouchetitle>
+<para>Text on documentation explaining something important out of the main
+flow of the text.
+</para></cartouche>
+';
+
+
+$result_converted{'latex_text'}->{'cartouche_title_and_content'} = 
'\\begin{mdframed}[style=Texinfocartouche, frametitle={Box title on 
\\emph{documentation}}]
+Text on documentation explaining something important out of the main
+flow of the text.
+\\end{mdframed}
+';
+
+
+$result_converted{'docbook'}->{'cartouche_title_and_content'} = 
'<sidebar><title>Box title on <emphasis>documentation</emphasis></title>
+<para>Text on documentation explaining something important out of the main
+flow of the text.
+</para></sidebar>';
+
+1;
diff --git a/tp/t/results/coverage/comment_on_cartouche_line.pl 
b/tp/t/results/coverage/comment_on_cartouche_line.pl
index fc8bada810..e16b1f2969 100644
--- a/tp/t/results/coverage/comment_on_cartouche_line.pl
+++ b/tp/t/results/coverage/comment_on_cartouche_line.pl
@@ -214,7 +214,7 @@ $result_floats{'comment_on_cartouche_line'} = {};
 $result_converted{'plaintext'}->{'comment_on_cartouche_line'} = 'in cartouche.
 
                             _Title of box_
-Out of main text
+   Out of main text
 ';
 
 
diff --git a/tp/tests/layout/res_parser/formatting_info/formatting.info 
b/tp/tests/layout/res_parser/formatting_info/formatting.info
index ee23651b87..69fe94ac09 100644
--- a/tp/tests/layout/res_parser/formatting_info/formatting.info
+++ b/tp/tests/layout/res_parser/formatting_info/formatting.info
@@ -515,7 +515,7 @@ _b_
    c-artouche
 
                             Tit-le _of box_
-With title c-artouche
+   With title c-artouche
 
 f-lushleft
 more text
@@ -1239,7 +1239,7 @@ _b_
    c-artouche
 
                             Tit-le _of box_
-With title c-artouche
+   With title c-artouche
 
 f-lushleft
 more text
@@ -1920,7 +1920,7 @@ _b_
    c-artouche
 
                             Tit-le _of box_
-With title c-artouche
+   With title c-artouche
 
 f-lushleft
 more text
@@ -2739,7 +2739,7 @@ cross ref name: (file name). '@inforef{}' *note ::
      c--artouche
 
                             Tit-le _of box_
-     With title c--artouche
+          With title c--artouche
 
      f--lushleft
      more text
@@ -2952,14 +2952,14 @@ aaa"]
 [index]
 * Menu:
 
-* truc:                                  chapter.            (line 2215)
+* truc:                                  chapter.            (line 2212)
 
    codeidx
 
 [index]
 * Menu:
 
-* a INDEX---ENTRY tẽ --- î:              chapter.            (line 2215)
+* a INDEX---ENTRY tẽ --- î:              chapter.            (line 2212)
 
    cp
 
@@ -2967,116 +2967,116 @@ aaa"]
 * Menu:
 
 * ":                                     chapter.            (line   28)
-* " <1>:                                 chapter.            (line  702)
-* " <2>:                                 chapter.            (line 1387)
+* " <1>:                                 chapter.            (line  701)
+* " <2>:                                 chapter.            (line 1385)
 * -option:                               chapter.            (line   28)
-* -option <1>:                           chapter.            (line  702)
-* -option <2>:                           chapter.            (line 1387)
-* .:                                     chapter.            (line 2215)
-* ?:                                     chapter.            (line 2215)
-* a:                                     chapter.            (line 2215)
-* aaa, bbb:                              chapter.            (line 2215)
-* a--a:                                  chapter.            (line 2215)
+* -option <1>:                           chapter.            (line  701)
+* -option <2>:                           chapter.            (line 1385)
+* .:                                     chapter.            (line 2212)
+* ?:                                     chapter.            (line 2212)
+* a:                                     chapter.            (line 2212)
+* aaa, bbb:                              chapter.            (line 2212)
+* a--a:                                  chapter.            (line 2212)
 * a--asis:                               chapter.            (line  510)
-* a--asis <1>:                           chapter.            (line 1184)
-* a--asis <2>:                           chapter.            (line 1996)
+* a--asis <1>:                           chapter.            (line 1183)
+* a--asis <2>:                           chapter.            (line 1994)
 * b:                                     chapter.            (line  511)
-* b <1>:                                 chapter.            (line 1185)
-* b <2>:                                 chapter.            (line 1997)
-* b--b, c--c:                            chapter.            (line 2215)
+* b <1>:                                 chapter.            (line 1184)
+* b <2>:                                 chapter.            (line 1995)
+* b--b, c--c:                            chapter.            (line 2212)
 * counting entry:                        chapter.            (line    4)
-* d--dd, e--ee, f--ff:                   chapter.            (line 2215)
+* d--dd, e--ee, f--ff:                   chapter.            (line 2212)
 * d--efcv_name:                          chapter.            (line  351)
 * d--efcv_name <1>:                      chapter.            (line  354)
-* d--efcv_name <2>:                      chapter.            (line 1025)
-* d--efcv_name <3>:                      chapter.            (line 1028)
-* d--efcv_name <4>:                      chapter.            (line 1837)
-* d--efcv_name <5>:                      chapter.            (line 1840)
+* d--efcv_name <2>:                      chapter.            (line 1024)
+* d--efcv_name <3>:                      chapter.            (line 1027)
+* d--efcv_name <4>:                      chapter.            (line 1835)
+* d--efcv_name <5>:                      chapter.            (line 1838)
 * d--efivar_name of c--lass:             chapter.            (line  396)
-* d--efivar_name of c--lass <1>:         chapter.            (line 1070)
-* d--efivar_name of c--lass <2>:         chapter.            (line 1882)
+* d--efivar_name of c--lass <1>:         chapter.            (line 1069)
+* d--efivar_name of c--lass <2>:         chapter.            (line 1880)
 * d--efopt_name:                         chapter.            (line  387)
-* d--efopt_name <1>:                     chapter.            (line 1061)
-* d--efopt_name <2>:                     chapter.            (line 1873)
+* d--efopt_name <1>:                     chapter.            (line 1060)
+* d--efopt_name <2>:                     chapter.            (line 1871)
 * d--eftypecv_name of c--lass:           chapter.            (line  357)
 * d--eftypecv_name of c--lass <1>:       chapter.            (line  360)
-* d--eftypecv_name of c--lass <2>:       chapter.            (line 1031)
-* d--eftypecv_name of c--lass <3>:       chapter.            (line 1034)
-* d--eftypecv_name of c--lass <4>:       chapter.            (line 1843)
-* d--eftypecv_name of c--lass <5>:       chapter.            (line 1846)
+* d--eftypecv_name of c--lass <2>:       chapter.            (line 1030)
+* d--eftypecv_name of c--lass <3>:       chapter.            (line 1033)
+* d--eftypecv_name of c--lass <4>:       chapter.            (line 1841)
+* d--eftypecv_name of c--lass <5>:       chapter.            (line 1844)
 * d--eftypecv_name2 of c--lass2:         chapter.            (line  428)
 * d--eftypecv_name2 of c--lass2 <1>:     chapter.            (line  431)
-* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1102)
-* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1105)
-* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1915)
-* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1918)
+* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1101)
+* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1104)
+* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1913)
+* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1916)
 * d--eftypeivar_name of c--lass:         chapter.            (line  399)
-* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1073)
-* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1885)
+* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1072)
+* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1883)
 * d--eftypevar_name:                     chapter.            (line  393)
-* d--eftypevar_name <1>:                 chapter.            (line 1067)
-* d--eftypevar_name <2>:                 chapter.            (line 1879)
+* d--eftypevar_name <1>:                 chapter.            (line 1066)
+* d--eftypevar_name <2>:                 chapter.            (line 1877)
 * d--eftypevr_name:                      chapter.            (line  348)
-* d--eftypevr_name <1>:                  chapter.            (line 1022)
-* d--eftypevr_name <2>:                  chapter.            (line 1834)
+* d--eftypevr_name <1>:                  chapter.            (line 1021)
+* d--eftypevr_name <2>:                  chapter.            (line 1832)
 * d--efvar_name:                         chapter.            (line  381)
 * d--efvar_name <1>:                     chapter.            (line  384)
-* d--efvar_name <2>:                     chapter.            (line 1055)
-* d--efvar_name <3>:                     chapter.            (line 1058)
-* d--efvar_name <4>:                     chapter.            (line 1867)
-* d--efvar_name <5>:                     chapter.            (line 1870)
+* d--efvar_name <2>:                     chapter.            (line 1054)
+* d--efvar_name <3>:                     chapter.            (line 1057)
+* d--efvar_name <4>:                     chapter.            (line 1865)
+* d--efvar_name <5>:                     chapter.            (line 1868)
 * d--efvr_name:                          chapter.            (line  327)
-* d--efvr_name <1>:                      chapter.            (line 1001)
-* d--efvr_name <2>:                      chapter.            (line 1813)
-* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2215)
+* d--efvr_name <1>:                      chapter.            (line 1000)
+* d--efvr_name <2>:                      chapter.            (line 1811)
+* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2212)
 * index entry between item and itemx:    chapter.            (line  515)
-* index entry between item and itemx <1>: chapter.           (line  637)
-* index entry between item and itemx <2>: chapter.           (line 1189)
-* index entry between item and itemx <3>: chapter.           (line 1311)
-* index entry between item and itemx <4>: chapter.           (line 2001)
-* index entry between item and itemx <5>: chapter.           (line 2156)
+* index entry between item and itemx <1>: chapter.           (line  636)
+* index entry between item and itemx <2>: chapter.           (line 1188)
+* index entry between item and itemx <3>: chapter.           (line 1309)
+* index entry between item and itemx <4>: chapter.           (line 1999)
+* index entry between item and itemx <5>: chapter.           (line 2153)
 * index entry in footnote:               chapter.            (line    4)
 * index entry within deffn:              chapter.            (line  302)
-* index entry within deffn <1>:          chapter.            (line  976)
-* index entry within deffn <2>:          chapter.            (line 1786)
+* index entry within deffn <1>:          chapter.            (line  975)
+* index entry within deffn <2>:          chapter.            (line 1784)
 * index entry within itemize:            chapter.            (line  213)
-* index entry within itemize <1>:        chapter.            (line  887)
-* index entry within itemize <2>:        chapter.            (line 1697)
+* index entry within itemize <1>:        chapter.            (line  886)
+* index entry within itemize <2>:        chapter.            (line 1695)
 * index entry within multitable:         chapter.            (line  235)
-* index entry within multitable <1>:     chapter.            (line  909)
-* index entry within multitable <2>:     chapter.            (line 1720)
-* t-ruc:                                 chapter.            (line 2215)
-* T-ruc:                                 chapter.            (line 2215)
+* index entry within multitable <1>:     chapter.            (line  908)
+* index entry within multitable <2>:     chapter.            (line 1718)
+* t-ruc:                                 chapter.            (line 2212)
+* T-ruc:                                 chapter.            (line 2212)
 * vtable i--tem code kbdinputstyle:      chapter.            (line  137)
-* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  811)
-* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1620)
+* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  810)
+* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1618)
 * vtable i--tem default kbdinputstyle:   chapter.            (line  132)
-* vtable i--tem default kbdinputstyle <1>: chapter.          (line  806)
-* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1615)
+* vtable i--tem default kbdinputstyle <1>: chapter.          (line  805)
+* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1613)
 * vtable i--tem distinct kbdinputstyle:  chapter.            (line  147)
-* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  821)
-* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1630)
+* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  820)
+* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1628)
 * vtable i--tem example kbdinputstyle:   chapter.            (line  142)
-* vtable i--tem example kbdinputstyle <1>: chapter.          (line  816)
-* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1625)
+* vtable i--tem example kbdinputstyle <1>: chapter.          (line  815)
+* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1623)
 * vtable i--tem in example code kbdinputstyle: chapter.      (line  139)
-* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  813)
-* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1622)
+* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  812)
+* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1620)
 * vtable i--tem in example default kbdinputstyle: chapter.   (line  134)
 * vtable i--tem in example default kbdinputstyle <1>: chapter.
-                                                             (line  808)
+                                                             (line  807)
 * vtable i--tem in example default kbdinputstyle <2>: chapter.
-                                                             (line 1617)
+                                                             (line 1615)
 * vtable i--tem in example distinct kbdinputstyle: chapter.  (line  149)
 * vtable i--tem in example distinct kbdinputstyle <1>: chapter.
-                                                             (line  823)
+                                                             (line  822)
 * vtable i--tem in example distinct kbdinputstyle <2>: chapter.
-                                                             (line 1632)
+                                                             (line 1630)
 * vtable i--tem in example example kbdinputstyle: chapter.   (line  144)
 * vtable i--tem in example example kbdinputstyle <1>: chapter.
-                                                             (line  818)
+                                                             (line  817)
 * vtable i--tem in example example kbdinputstyle <2>: chapter.
-                                                             (line 1627)
+                                                             (line 1625)
 
    fn
 
@@ -3084,171 +3084,171 @@ aaa"]
 * Menu:
 
 * --foption:                             chapter.            (line   28)
-* --foption <1>:                         chapter.            (line  702)
-* --foption <2>:                         chapter.            (line 1387)
-* .:                                     chapter.            (line 2215)
-* ?:                                     chapter.            (line 2215)
+* --foption <1>:                         chapter.            (line  701)
+* --foption <2>:                         chapter.            (line 1385)
+* .:                                     chapter.            (line 2212)
+* ?:                                     chapter.            (line 2212)
 * ``:                                    chapter.            (line   28)
-* `` <1>:                                chapter.            (line  702)
-* `` <2>:                                chapter.            (line 1387)
+* `` <1>:                                chapter.            (line  701)
+* `` <2>:                                chapter.            (line 1385)
 * a:                                     chapter.            (line  315)
 * a <1>:                                 chapter.            (line  514)
-* a <2>:                                 chapter.            (line  636)
-* a <3>:                                 chapter.            (line  989)
-* a <4>:                                 chapter.            (line 1188)
-* a <5>:                                 chapter.            (line 1310)
-* a <6>:                                 chapter.            (line 1799)
-* a <7>:                                 chapter.            (line 2000)
-* a <8>:                                 chapter.            (line 2155)
-* a <9>:                                 chapter.            (line 2215)
-* after:                                 chapter.            (line  647)
-* after <1>:                             chapter.            (line 1321)
-* after <2>:                             chapter.            (line 2166)
+* a <2>:                                 chapter.            (line  635)
+* a <3>:                                 chapter.            (line  988)
+* a <4>:                                 chapter.            (line 1187)
+* a <5>:                                 chapter.            (line 1308)
+* a <6>:                                 chapter.            (line 1797)
+* a <7>:                                 chapter.            (line 1998)
+* a <8>:                                 chapter.            (line 2152)
+* a <9>:                                 chapter.            (line 2212)
+* after:                                 chapter.            (line  646)
+* after <1>:                             chapter.            (line 1319)
+* after <2>:                             chapter.            (line 2163)
 * arg2:                                  chapter.            (line  434)
-* arg2 <1>:                              chapter.            (line 1108)
-* arg2 <2>:                              chapter.            (line 1922)
+* arg2 <1>:                              chapter.            (line 1107)
+* arg2 <2>:                              chapter.            (line 1920)
 * b:                                     chapter.            (line  515)
-* b <1>:                                 chapter.            (line  637)
-* b <2>:                                 chapter.            (line 1189)
-* b <3>:                                 chapter.            (line 1311)
-* b <4>:                                 chapter.            (line 2001)
-* b <5>:                                 chapter.            (line 2156)
+* b <1>:                                 chapter.            (line  636)
+* b <2>:                                 chapter.            (line 1188)
+* b <3>:                                 chapter.            (line 1309)
+* b <4>:                                 chapter.            (line 1999)
+* b <5>:                                 chapter.            (line 2153)
 * bidule machin:                         chapter.            (line  310)
-* bidule machin <1>:                     chapter.            (line  984)
-* bidule machin <2>:                     chapter.            (line 1794)
+* bidule machin <1>:                     chapter.            (line  983)
+* bidule machin <2>:                     chapter.            (line 1792)
 * d--effn_name:                          chapter.            (line  294)
-* d--effn_name <1>:                      chapter.            (line  968)
-* d--effn_name <2>:                      chapter.            (line 1778)
+* d--effn_name <1>:                      chapter.            (line  967)
+* d--effn_name <2>:                      chapter.            (line 1776)
 * d--efmac_name:                         chapter.            (line  375)
-* d--efmac_name <1>:                     chapter.            (line 1049)
-* d--efmac_name <2>:                     chapter.            (line 1861)
+* d--efmac_name <1>:                     chapter.            (line 1048)
+* d--efmac_name <2>:                     chapter.            (line 1859)
 * d--efmethod_name on c--lass:           chapter.            (line  402)
-* d--efmethod_name on c--lass <1>:       chapter.            (line 1076)
-* d--efmethod_name on c--lass <2>:       chapter.            (line 1888)
+* d--efmethod_name on c--lass <1>:       chapter.            (line 1075)
+* d--efmethod_name on c--lass <2>:       chapter.            (line 1886)
 * d--efop_name on c--lass:               chapter.            (line  363)
 * d--efop_name on c--lass <1>:           chapter.            (line  366)
-* d--efop_name on c--lass <2>:           chapter.            (line 1037)
-* d--efop_name on c--lass <3>:           chapter.            (line 1040)
-* d--efop_name on c--lass <4>:           chapter.            (line 1849)
-* d--efop_name on c--lass <5>:           chapter.            (line 1852)
+* d--efop_name on c--lass <2>:           chapter.            (line 1036)
+* d--efop_name on c--lass <3>:           chapter.            (line 1039)
+* d--efop_name on c--lass <4>:           chapter.            (line 1847)
+* d--efop_name on c--lass <5>:           chapter.            (line 1850)
 * d--efspec_name:                        chapter.            (line  378)
-* d--efspec_name <1>:                    chapter.            (line 1052)
-* d--efspec_name <2>:                    chapter.            (line 1864)
+* d--efspec_name <1>:                    chapter.            (line 1051)
+* d--efspec_name <2>:                    chapter.            (line 1862)
 * d--eftypefn_name:                      chapter.            (line  336)
 * d--eftypefn_name <1>:                  chapter.            (line  339)
-* d--eftypefn_name <2>:                  chapter.            (line 1010)
-* d--eftypefn_name <3>:                  chapter.            (line 1013)
-* d--eftypefn_name <4>:                  chapter.            (line 1822)
-* d--eftypefn_name <5>:                  chapter.            (line 1825)
+* d--eftypefn_name <2>:                  chapter.            (line 1009)
+* d--eftypefn_name <3>:                  chapter.            (line 1012)
+* d--eftypefn_name <4>:                  chapter.            (line 1820)
+* d--eftypefn_name <5>:                  chapter.            (line 1823)
 * d--eftypefn_name2:                     chapter.            (line  413)
-* d--eftypefn_name2 <1>:                 chapter.            (line 1087)
-* d--eftypefn_name2 <2>:                 chapter.            (line 1900)
+* d--eftypefn_name2 <1>:                 chapter.            (line 1086)
+* d--eftypefn_name2 <2>:                 chapter.            (line 1898)
 * d--eftypefun_name:                     chapter.            (line  390)
-* d--eftypefun_name <1>:                 chapter.            (line 1064)
-* d--eftypefun_name <2>:                 chapter.            (line 1876)
+* d--eftypefun_name <1>:                 chapter.            (line 1063)
+* d--eftypefun_name <2>:                 chapter.            (line 1874)
 * d--eftypemethod_name on c--lass:       chapter.            (line  405)
-* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1079)
-* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1891)
+* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1078)
+* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1889)
 * d--eftypeop_name on c--lass:           chapter.            (line  342)
 * d--eftypeop_name on c--lass <1>:       chapter.            (line  345)
-* d--eftypeop_name on c--lass <2>:       chapter.            (line 1016)
-* d--eftypeop_name on c--lass <3>:       chapter.            (line 1019)
-* d--eftypeop_name on c--lass <4>:       chapter.            (line 1828)
-* d--eftypeop_name on c--lass <5>:       chapter.            (line 1831)
+* d--eftypeop_name on c--lass <2>:       chapter.            (line 1015)
+* d--eftypeop_name on c--lass <3>:       chapter.            (line 1018)
+* d--eftypeop_name on c--lass <4>:       chapter.            (line 1826)
+* d--eftypeop_name on c--lass <5>:       chapter.            (line 1829)
 * d--eftypeop_name2 on c--lass2:         chapter.            (line  418)
 * d--eftypeop_name2 on c--lass2 <1>:     chapter.            (line  423)
-* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1092)
-* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1097)
-* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1905)
-* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1910)
+* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1091)
+* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1096)
+* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1903)
+* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1908)
 * d--efun_name:                          chapter.            (line  372)
-* d--efun_name <1>:                      chapter.            (line 1046)
-* d--efun_name <2>:                      chapter.            (line 1858)
+* d--efun_name <1>:                      chapter.            (line 1045)
+* d--efun_name <2>:                      chapter.            (line 1856)
 * de--ffn_name:                          chapter.            (line  297)
-* de--ffn_name <1>:                      chapter.            (line  971)
-* de--ffn_name <2>:                      chapter.            (line 1781)
+* de--ffn_name <1>:                      chapter.            (line  970)
+* de--ffn_name <2>:                      chapter.            (line 1779)
 * deffn:                                 chapter.            (line  318)
 * deffn <1>:                             chapter.            (line  320)
-* deffn <2>:                             chapter.            (line  992)
-* deffn <3>:                             chapter.            (line  994)
-* deffn <4>:                             chapter.            (line 1803)
-* deffn <5>:                             chapter.            (line 1805)
+* deffn <2>:                             chapter.            (line  991)
+* deffn <3>:                             chapter.            (line  993)
+* deffn <4>:                             chapter.            (line 1801)
+* deffn <5>:                             chapter.            (line 1803)
 * deffnx:                                chapter.            (line  316)
 * deffnx <1>:                            chapter.            (line  321)
-* deffnx <2>:                            chapter.            (line  990)
-* deffnx <3>:                            chapter.            (line  995)
-* deffnx <4>:                            chapter.            (line 1800)
-* deffnx <5>:                            chapter.            (line 1806)
-* f---aa:                                chapter.            (line 2215)
-* f---bb, f---cc:                        chapter.            (line 2215)
-* f---ddd, f---eee, ffff:                chapter.            (line 2215)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2215)
+* deffnx <2>:                            chapter.            (line  989)
+* deffnx <3>:                            chapter.            (line  994)
+* deffnx <4>:                            chapter.            (line 1798)
+* deffnx <5>:                            chapter.            (line 1804)
+* f---aa:                                chapter.            (line 2212)
+* f---bb, f---cc:                        chapter.            (line 2212)
+* f---ddd, f---eee, ffff:                chapter.            (line 2212)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2212)
 * followed:                              chapter.            (line  313)
-* followed <1>:                          chapter.            (line  645)
-* followed <2>:                          chapter.            (line  987)
-* followed <3>:                          chapter.            (line 1319)
-* followed <4>:                          chapter.            (line 1797)
-* followed <5>:                          chapter.            (line 2164)
+* followed <1>:                          chapter.            (line  644)
+* followed <2>:                          chapter.            (line  986)
+* followed <3>:                          chapter.            (line 1317)
+* followed <4>:                          chapter.            (line 1795)
+* followed <5>:                          chapter.            (line 2161)
 * I:                                     chapter.            (line  301)
 * I <1>:                                 chapter.            (line  323)
-* I <2>:                                 chapter.            (line  975)
-* I <3>:                                 chapter.            (line  997)
-* I <4>:                                 chapter.            (line 1785)
-* I <5>:                                 chapter.            (line 1808)
+* I <2>:                                 chapter.            (line  974)
+* I <3>:                                 chapter.            (line  996)
+* I <4>:                                 chapter.            (line 1783)
+* I <5>:                                 chapter.            (line 1806)
 * id i ule:                              chapter.            (line  307)
-* id i ule <1>:                          chapter.            (line  981)
-* id i ule <2>:                          chapter.            (line 1791)
+* id i ule <1>:                          chapter.            (line  980)
+* id i ule <2>:                          chapter.            (line 1789)
 * id ule:                                chapter.            (line  306)
-* id ule <1>:                            chapter.            (line  980)
-* id ule <2>:                            chapter.            (line 1790)
-* INVALID:                               chapter.            (line  649)
-* INVALID <1>:                           chapter.            (line 1323)
-* INVALID <2>:                           chapter.            (line 2168)
+* id ule <1>:                            chapter.            (line  979)
+* id ule <2>:                            chapter.            (line 1788)
+* INVALID:                               chapter.            (line  648)
+* INVALID <1>:                           chapter.            (line 1321)
+* INVALID <2>:                           chapter.            (line 2165)
 * log trap:                              chapter.            (line  303)
-* log trap <1>:                          chapter.            (line  977)
-* log trap <2>:                          chapter.            (line 1787)
+* log trap <1>:                          chapter.            (line  976)
+* log trap <2>:                          chapter.            (line 1785)
 * log trap1:                             chapter.            (line  304)
-* log trap1 <1>:                         chapter.            (line  978)
-* log trap1 <2>:                         chapter.            (line 1788)
+* log trap1 <1>:                         chapter.            (line  977)
+* log trap1 <2>:                         chapter.            (line 1786)
 * log trap2:                             chapter.            (line  305)
-* log trap2 <1>:                         chapter.            (line  979)
-* log trap2 <2>:                         chapter.            (line 1789)
+* log trap2 <1>:                         chapter.            (line  978)
+* log trap2 <2>:                         chapter.            (line 1787)
 * machin:                                chapter.            (line  309)
 * machin <1>:                            chapter.            (line  311)
-* machin <2>:                            chapter.            (line  641)
-* machin <3>:                            chapter.            (line  642)
-* machin <4>:                            chapter.            (line  643)
-* machin <5>:                            chapter.            (line  644)
-* machin <6>:                            chapter.            (line  983)
-* machin <7>:                            chapter.            (line  985)
-* machin <8>:                            chapter.            (line 1315)
-* machin <9>:                            chapter.            (line 1316)
-* machin <10>:                           chapter.            (line 1317)
-* machin <11>:                           chapter.            (line 1318)
-* machin <12>:                           chapter.            (line 1793)
-* machin <13>:                           chapter.            (line 1795)
-* machin <14>:                           chapter.            (line 2160)
-* machin <15>:                           chapter.            (line 2161)
-* machin <16>:                           chapter.            (line 2162)
-* machin <17>:                           chapter.            (line 2163)
+* machin <2>:                            chapter.            (line  640)
+* machin <3>:                            chapter.            (line  641)
+* machin <4>:                            chapter.            (line  642)
+* machin <5>:                            chapter.            (line  643)
+* machin <6>:                            chapter.            (line  982)
+* machin <7>:                            chapter.            (line  984)
+* machin <8>:                            chapter.            (line 1313)
+* machin <9>:                            chapter.            (line 1314)
+* machin <10>:                           chapter.            (line 1315)
+* machin <11>:                           chapter.            (line 1316)
+* machin <12>:                           chapter.            (line 1791)
+* machin <13>:                           chapter.            (line 1793)
+* machin <14>:                           chapter.            (line 2157)
+* machin <15>:                           chapter.            (line 2158)
+* machin <16>:                           chapter.            (line 2159)
+* machin <17>:                           chapter.            (line 2160)
 * n--ame:                                chapter.            (line  330)
 * n--ame <1>:                            chapter.            (line  333)
-* n--ame <2>:                            chapter.            (line 1004)
-* n--ame <3>:                            chapter.            (line 1007)
-* n--ame <4>:                            chapter.            (line 1816)
-* n--ame <5>:                            chapter.            (line 1819)
+* n--ame <2>:                            chapter.            (line 1003)
+* n--ame <3>:                            chapter.            (line 1006)
+* n--ame <4>:                            chapter.            (line 1814)
+* n--ame <5>:                            chapter.            (line 1817)
 * name2:                                 chapter.            (line  408)
-* name2 <1>:                             chapter.            (line 1082)
-* name2 <2>:                             chapter.            (line 1895)
-* t--ruc:                                chapter.            (line 2215)
-* T--ruc:                                chapter.            (line 2215)
+* name2 <1>:                             chapter.            (line 1081)
+* name2 <2>:                             chapter.            (line 1893)
+* t--ruc:                                chapter.            (line 2212)
+* T--ruc:                                chapter.            (line 2212)
 * truc:                                  chapter.            (line  302)
 * truc <1>:                              chapter.            (line  324)
-* truc <2>:                              chapter.            (line  976)
-* truc <3>:                              chapter.            (line  998)
-* truc <4>:                              chapter.            (line 1786)
-* truc <5>:                              chapter.            (line 1809)
-* xxx, zzz:                              chapter.            (line 2215)
+* truc <2>:                              chapter.            (line  975)
+* truc <3>:                              chapter.            (line  997)
+* truc <4>:                              chapter.            (line 1784)
+* truc <5>:                              chapter.            (line 1807)
+* xxx, zzz:                              chapter.            (line 2212)
 
    vr
 
@@ -3262,8 +3262,8 @@ aaa"]
 * Menu:
 
 * d--eftp_name:                          chapter.            (line  369)
-* d--eftp_name <1>:                      chapter.            (line 1043)
-* d--eftp_name <2>:                      chapter.            (line 1855)
+* d--eftp_name <1>:                      chapter.            (line 1042)
+* d--eftp_name <2>:                      chapter.            (line 1853)
 
    (8)
 
@@ -3346,306 +3346,306 @@ chapter 2
 * Menu:
 
 * ":                                     chapter.            (line   28)
-* " <1>:                                 chapter.            (line  702)
-* " <2>:                                 chapter.            (line 1387)
+* " <1>:                                 chapter.            (line  701)
+* " <2>:                                 chapter.            (line 1385)
 * -option:                               chapter.            (line   28)
-* -option <1>:                           chapter.            (line  702)
-* -option <2>:                           chapter.            (line 1387)
-* .:                                     chapter.            (line 2215)
-* ?:                                     chapter.            (line 2215)
-* a:                                     chapter.            (line 2215)
-* aaa, bbb:                              chapter.            (line 2215)
-* a--a:                                  chapter.            (line 2215)
+* -option <1>:                           chapter.            (line  701)
+* -option <2>:                           chapter.            (line 1385)
+* .:                                     chapter.            (line 2212)
+* ?:                                     chapter.            (line 2212)
+* a:                                     chapter.            (line 2212)
+* aaa, bbb:                              chapter.            (line 2212)
+* a--a:                                  chapter.            (line 2212)
 * a--asis:                               chapter.            (line  510)
-* a--asis <1>:                           chapter.            (line 1184)
-* a--asis <2>:                           chapter.            (line 1996)
+* a--asis <1>:                           chapter.            (line 1183)
+* a--asis <2>:                           chapter.            (line 1994)
 * b:                                     chapter.            (line  511)
-* b <1>:                                 chapter.            (line 1185)
-* b <2>:                                 chapter.            (line 1997)
-* b--b, c--c:                            chapter.            (line 2215)
-* counting entry:                        chapter.            (line 2565)
-* d--dd, e--ee, f--ff:                   chapter.            (line 2215)
+* b <1>:                                 chapter.            (line 1184)
+* b <2>:                                 chapter.            (line 1995)
+* b--b, c--c:                            chapter.            (line 2212)
+* counting entry:                        chapter.            (line 2562)
+* d--dd, e--ee, f--ff:                   chapter.            (line 2212)
 * d--efcv_name:                          chapter.            (line  351)
 * d--efcv_name <1>:                      chapter.            (line  354)
-* d--efcv_name <2>:                      chapter.            (line 1025)
-* d--efcv_name <3>:                      chapter.            (line 1028)
-* d--efcv_name <4>:                      chapter.            (line 1837)
-* d--efcv_name <5>:                      chapter.            (line 1840)
+* d--efcv_name <2>:                      chapter.            (line 1024)
+* d--efcv_name <3>:                      chapter.            (line 1027)
+* d--efcv_name <4>:                      chapter.            (line 1835)
+* d--efcv_name <5>:                      chapter.            (line 1838)
 * d--efivar_name of c--lass:             chapter.            (line  396)
-* d--efivar_name of c--lass <1>:         chapter.            (line 1070)
-* d--efivar_name of c--lass <2>:         chapter.            (line 1882)
+* d--efivar_name of c--lass <1>:         chapter.            (line 1069)
+* d--efivar_name of c--lass <2>:         chapter.            (line 1880)
 * d--efopt_name:                         chapter.            (line  387)
-* d--efopt_name <1>:                     chapter.            (line 1061)
-* d--efopt_name <2>:                     chapter.            (line 1873)
+* d--efopt_name <1>:                     chapter.            (line 1060)
+* d--efopt_name <2>:                     chapter.            (line 1871)
 * d--eftypecv_name of c--lass:           chapter.            (line  357)
 * d--eftypecv_name of c--lass <1>:       chapter.            (line  360)
-* d--eftypecv_name of c--lass <2>:       chapter.            (line 1031)
-* d--eftypecv_name of c--lass <3>:       chapter.            (line 1034)
-* d--eftypecv_name of c--lass <4>:       chapter.            (line 1843)
-* d--eftypecv_name of c--lass <5>:       chapter.            (line 1846)
+* d--eftypecv_name of c--lass <2>:       chapter.            (line 1030)
+* d--eftypecv_name of c--lass <3>:       chapter.            (line 1033)
+* d--eftypecv_name of c--lass <4>:       chapter.            (line 1841)
+* d--eftypecv_name of c--lass <5>:       chapter.            (line 1844)
 * d--eftypecv_name2 of c--lass2:         chapter.            (line  428)
 * d--eftypecv_name2 of c--lass2 <1>:     chapter.            (line  431)
-* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1102)
-* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1105)
-* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1915)
-* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1918)
+* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1101)
+* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1104)
+* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1913)
+* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1916)
 * d--eftypeivar_name of c--lass:         chapter.            (line  399)
-* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1073)
-* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1885)
+* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1072)
+* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1883)
 * d--eftypevar_name:                     chapter.            (line  393)
-* d--eftypevar_name <1>:                 chapter.            (line 1067)
-* d--eftypevar_name <2>:                 chapter.            (line 1879)
+* d--eftypevar_name <1>:                 chapter.            (line 1066)
+* d--eftypevar_name <2>:                 chapter.            (line 1877)
 * d--eftypevr_name:                      chapter.            (line  348)
-* d--eftypevr_name <1>:                  chapter.            (line 1022)
-* d--eftypevr_name <2>:                  chapter.            (line 1834)
+* d--eftypevr_name <1>:                  chapter.            (line 1021)
+* d--eftypevr_name <2>:                  chapter.            (line 1832)
 * d--efvar_name:                         chapter.            (line  381)
 * d--efvar_name <1>:                     chapter.            (line  384)
-* d--efvar_name <2>:                     chapter.            (line 1055)
-* d--efvar_name <3>:                     chapter.            (line 1058)
-* d--efvar_name <4>:                     chapter.            (line 1867)
-* d--efvar_name <5>:                     chapter.            (line 1870)
+* d--efvar_name <2>:                     chapter.            (line 1054)
+* d--efvar_name <3>:                     chapter.            (line 1057)
+* d--efvar_name <4>:                     chapter.            (line 1865)
+* d--efvar_name <5>:                     chapter.            (line 1868)
 * d--efvr_name:                          chapter.            (line  327)
-* d--efvr_name <1>:                      chapter.            (line 1001)
-* d--efvr_name <2>:                      chapter.            (line 1813)
-* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2215)
+* d--efvr_name <1>:                      chapter.            (line 1000)
+* d--efvr_name <2>:                      chapter.            (line 1811)
+* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2212)
 * index entry between item and itemx:    chapter.            (line  515)
-* index entry between item and itemx <1>: chapter.           (line  637)
-* index entry between item and itemx <2>: chapter.           (line 1189)
-* index entry between item and itemx <3>: chapter.           (line 1311)
-* index entry between item and itemx <4>: chapter.           (line 2001)
-* index entry between item and itemx <5>: chapter.           (line 2156)
-* index entry in footnote:               chapter.            (line 2560)
+* index entry between item and itemx <1>: chapter.           (line  636)
+* index entry between item and itemx <2>: chapter.           (line 1188)
+* index entry between item and itemx <3>: chapter.           (line 1309)
+* index entry between item and itemx <4>: chapter.           (line 1999)
+* index entry between item and itemx <5>: chapter.           (line 2153)
+* index entry in footnote:               chapter.            (line 2557)
 * index entry within deffn:              chapter.            (line  302)
-* index entry within deffn <1>:          chapter.            (line  976)
-* index entry within deffn <2>:          chapter.            (line 1786)
+* index entry within deffn <1>:          chapter.            (line  975)
+* index entry within deffn <2>:          chapter.            (line 1784)
 * index entry within itemize:            chapter.            (line  213)
-* index entry within itemize <1>:        chapter.            (line  887)
-* index entry within itemize <2>:        chapter.            (line 1697)
+* index entry within itemize <1>:        chapter.            (line  886)
+* index entry within itemize <2>:        chapter.            (line 1695)
 * index entry within multitable:         chapter.            (line  235)
-* index entry within multitable <1>:     chapter.            (line  909)
-* index entry within multitable <2>:     chapter.            (line 1720)
-* t-ruc:                                 chapter.            (line 2215)
-* T-ruc:                                 chapter.            (line 2215)
+* index entry within multitable <1>:     chapter.            (line  908)
+* index entry within multitable <2>:     chapter.            (line 1718)
+* t-ruc:                                 chapter.            (line 2212)
+* T-ruc:                                 chapter.            (line 2212)
 * vtable i--tem code kbdinputstyle:      chapter.            (line  137)
-* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  811)
-* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1620)
+* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  810)
+* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1618)
 * vtable i--tem default kbdinputstyle:   chapter.            (line  132)
-* vtable i--tem default kbdinputstyle <1>: chapter.          (line  806)
-* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1615)
+* vtable i--tem default kbdinputstyle <1>: chapter.          (line  805)
+* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1613)
 * vtable i--tem distinct kbdinputstyle:  chapter.            (line  147)
-* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  821)
-* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1630)
+* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  820)
+* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1628)
 * vtable i--tem example kbdinputstyle:   chapter.            (line  142)
-* vtable i--tem example kbdinputstyle <1>: chapter.          (line  816)
-* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1625)
+* vtable i--tem example kbdinputstyle <1>: chapter.          (line  815)
+* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1623)
 * vtable i--tem in example code kbdinputstyle: chapter.      (line  139)
-* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  813)
-* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1622)
+* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  812)
+* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1620)
 * vtable i--tem in example default kbdinputstyle: chapter.   (line  134)
 * vtable i--tem in example default kbdinputstyle <1>: chapter.
-                                                             (line  808)
+                                                             (line  807)
 * vtable i--tem in example default kbdinputstyle <2>: chapter.
-                                                             (line 1617)
+                                                             (line 1615)
 * vtable i--tem in example distinct kbdinputstyle: chapter.  (line  149)
 * vtable i--tem in example distinct kbdinputstyle <1>: chapter.
-                                                             (line  823)
+                                                             (line  822)
 * vtable i--tem in example distinct kbdinputstyle <2>: chapter.
-                                                             (line 1632)
+                                                             (line 1630)
 * vtable i--tem in example example kbdinputstyle: chapter.   (line  144)
 * vtable i--tem in example example kbdinputstyle <1>: chapter.
-                                                             (line  818)
+                                                             (line  817)
 * vtable i--tem in example example kbdinputstyle <2>: chapter.
-                                                             (line 1627)
+                                                             (line 1625)
 
 [index]
 * Menu:
 
 * --foption:                             chapter.            (line   28)
-* --foption <1>:                         chapter.            (line  702)
-* --foption <2>:                         chapter.            (line 1387)
-* .:                                     chapter.            (line 2215)
-* ?:                                     chapter.            (line 2215)
+* --foption <1>:                         chapter.            (line  701)
+* --foption <2>:                         chapter.            (line 1385)
+* .:                                     chapter.            (line 2212)
+* ?:                                     chapter.            (line 2212)
 * ``:                                    chapter.            (line   28)
-* `` <1>:                                chapter.            (line  702)
-* `` <2>:                                chapter.            (line 1387)
+* `` <1>:                                chapter.            (line  701)
+* `` <2>:                                chapter.            (line 1385)
 * a:                                     chapter.            (line  315)
 * a <1>:                                 chapter.            (line  514)
-* a <2>:                                 chapter.            (line  636)
-* a <3>:                                 chapter.            (line  989)
-* a <4>:                                 chapter.            (line 1188)
-* a <5>:                                 chapter.            (line 1310)
-* a <6>:                                 chapter.            (line 1799)
-* a <7>:                                 chapter.            (line 2000)
-* a <8>:                                 chapter.            (line 2155)
-* a <9>:                                 chapter.            (line 2215)
-* after:                                 chapter.            (line  647)
-* after <1>:                             chapter.            (line 1321)
-* after <2>:                             chapter.            (line 2166)
+* a <2>:                                 chapter.            (line  635)
+* a <3>:                                 chapter.            (line  988)
+* a <4>:                                 chapter.            (line 1187)
+* a <5>:                                 chapter.            (line 1308)
+* a <6>:                                 chapter.            (line 1797)
+* a <7>:                                 chapter.            (line 1998)
+* a <8>:                                 chapter.            (line 2152)
+* a <9>:                                 chapter.            (line 2212)
+* after:                                 chapter.            (line  646)
+* after <1>:                             chapter.            (line 1319)
+* after <2>:                             chapter.            (line 2163)
 * arg2:                                  chapter.            (line  434)
-* arg2 <1>:                              chapter.            (line 1108)
-* arg2 <2>:                              chapter.            (line 1922)
+* arg2 <1>:                              chapter.            (line 1107)
+* arg2 <2>:                              chapter.            (line 1920)
 * b:                                     chapter.            (line  515)
-* b <1>:                                 chapter.            (line  637)
-* b <2>:                                 chapter.            (line 1189)
-* b <3>:                                 chapter.            (line 1311)
-* b <4>:                                 chapter.            (line 2001)
-* b <5>:                                 chapter.            (line 2156)
+* b <1>:                                 chapter.            (line  636)
+* b <2>:                                 chapter.            (line 1188)
+* b <3>:                                 chapter.            (line 1309)
+* b <4>:                                 chapter.            (line 1999)
+* b <5>:                                 chapter.            (line 2153)
 * bidule machin:                         chapter.            (line  310)
-* bidule machin <1>:                     chapter.            (line  984)
-* bidule machin <2>:                     chapter.            (line 1794)
+* bidule machin <1>:                     chapter.            (line  983)
+* bidule machin <2>:                     chapter.            (line 1792)
 * d--effn_name:                          chapter.            (line  294)
-* d--effn_name <1>:                      chapter.            (line  968)
-* d--effn_name <2>:                      chapter.            (line 1778)
+* d--effn_name <1>:                      chapter.            (line  967)
+* d--effn_name <2>:                      chapter.            (line 1776)
 * d--efmac_name:                         chapter.            (line  375)
-* d--efmac_name <1>:                     chapter.            (line 1049)
-* d--efmac_name <2>:                     chapter.            (line 1861)
+* d--efmac_name <1>:                     chapter.            (line 1048)
+* d--efmac_name <2>:                     chapter.            (line 1859)
 * d--efmethod_name on c--lass:           chapter.            (line  402)
-* d--efmethod_name on c--lass <1>:       chapter.            (line 1076)
-* d--efmethod_name on c--lass <2>:       chapter.            (line 1888)
+* d--efmethod_name on c--lass <1>:       chapter.            (line 1075)
+* d--efmethod_name on c--lass <2>:       chapter.            (line 1886)
 * d--efop_name on c--lass:               chapter.            (line  363)
 * d--efop_name on c--lass <1>:           chapter.            (line  366)
-* d--efop_name on c--lass <2>:           chapter.            (line 1037)
-* d--efop_name on c--lass <3>:           chapter.            (line 1040)
-* d--efop_name on c--lass <4>:           chapter.            (line 1849)
-* d--efop_name on c--lass <5>:           chapter.            (line 1852)
+* d--efop_name on c--lass <2>:           chapter.            (line 1036)
+* d--efop_name on c--lass <3>:           chapter.            (line 1039)
+* d--efop_name on c--lass <4>:           chapter.            (line 1847)
+* d--efop_name on c--lass <5>:           chapter.            (line 1850)
 * d--efspec_name:                        chapter.            (line  378)
-* d--efspec_name <1>:                    chapter.            (line 1052)
-* d--efspec_name <2>:                    chapter.            (line 1864)
+* d--efspec_name <1>:                    chapter.            (line 1051)
+* d--efspec_name <2>:                    chapter.            (line 1862)
 * d--eftypefn_name:                      chapter.            (line  336)
 * d--eftypefn_name <1>:                  chapter.            (line  339)
-* d--eftypefn_name <2>:                  chapter.            (line 1010)
-* d--eftypefn_name <3>:                  chapter.            (line 1013)
-* d--eftypefn_name <4>:                  chapter.            (line 1822)
-* d--eftypefn_name <5>:                  chapter.            (line 1825)
+* d--eftypefn_name <2>:                  chapter.            (line 1009)
+* d--eftypefn_name <3>:                  chapter.            (line 1012)
+* d--eftypefn_name <4>:                  chapter.            (line 1820)
+* d--eftypefn_name <5>:                  chapter.            (line 1823)
 * d--eftypefn_name2:                     chapter.            (line  413)
-* d--eftypefn_name2 <1>:                 chapter.            (line 1087)
-* d--eftypefn_name2 <2>:                 chapter.            (line 1900)
+* d--eftypefn_name2 <1>:                 chapter.            (line 1086)
+* d--eftypefn_name2 <2>:                 chapter.            (line 1898)
 * d--eftypefun_name:                     chapter.            (line  390)
-* d--eftypefun_name <1>:                 chapter.            (line 1064)
-* d--eftypefun_name <2>:                 chapter.            (line 1876)
+* d--eftypefun_name <1>:                 chapter.            (line 1063)
+* d--eftypefun_name <2>:                 chapter.            (line 1874)
 * d--eftypemethod_name on c--lass:       chapter.            (line  405)
-* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1079)
-* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1891)
+* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1078)
+* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1889)
 * d--eftypeop_name on c--lass:           chapter.            (line  342)
 * d--eftypeop_name on c--lass <1>:       chapter.            (line  345)
-* d--eftypeop_name on c--lass <2>:       chapter.            (line 1016)
-* d--eftypeop_name on c--lass <3>:       chapter.            (line 1019)
-* d--eftypeop_name on c--lass <4>:       chapter.            (line 1828)
-* d--eftypeop_name on c--lass <5>:       chapter.            (line 1831)
+* d--eftypeop_name on c--lass <2>:       chapter.            (line 1015)
+* d--eftypeop_name on c--lass <3>:       chapter.            (line 1018)
+* d--eftypeop_name on c--lass <4>:       chapter.            (line 1826)
+* d--eftypeop_name on c--lass <5>:       chapter.            (line 1829)
 * d--eftypeop_name2 on c--lass2:         chapter.            (line  418)
 * d--eftypeop_name2 on c--lass2 <1>:     chapter.            (line  423)
-* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1092)
-* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1097)
-* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1905)
-* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1910)
+* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1091)
+* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1096)
+* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1903)
+* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1908)
 * d--efun_name:                          chapter.            (line  372)
-* d--efun_name <1>:                      chapter.            (line 1046)
-* d--efun_name <2>:                      chapter.            (line 1858)
+* d--efun_name <1>:                      chapter.            (line 1045)
+* d--efun_name <2>:                      chapter.            (line 1856)
 * de--ffn_name:                          chapter.            (line  297)
-* de--ffn_name <1>:                      chapter.            (line  971)
-* de--ffn_name <2>:                      chapter.            (line 1781)
+* de--ffn_name <1>:                      chapter.            (line  970)
+* de--ffn_name <2>:                      chapter.            (line 1779)
 * deffn:                                 chapter.            (line  318)
 * deffn <1>:                             chapter.            (line  320)
-* deffn <2>:                             chapter.            (line  992)
-* deffn <3>:                             chapter.            (line  994)
-* deffn <4>:                             chapter.            (line 1803)
-* deffn <5>:                             chapter.            (line 1805)
+* deffn <2>:                             chapter.            (line  991)
+* deffn <3>:                             chapter.            (line  993)
+* deffn <4>:                             chapter.            (line 1801)
+* deffn <5>:                             chapter.            (line 1803)
 * deffnx:                                chapter.            (line  316)
 * deffnx <1>:                            chapter.            (line  321)
-* deffnx <2>:                            chapter.            (line  990)
-* deffnx <3>:                            chapter.            (line  995)
-* deffnx <4>:                            chapter.            (line 1800)
-* deffnx <5>:                            chapter.            (line 1806)
-* f---aa:                                chapter.            (line 2215)
-* f---bb, f---cc:                        chapter.            (line 2215)
-* f---ddd, f---eee, ffff:                chapter.            (line 2215)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2215)
+* deffnx <2>:                            chapter.            (line  989)
+* deffnx <3>:                            chapter.            (line  994)
+* deffnx <4>:                            chapter.            (line 1798)
+* deffnx <5>:                            chapter.            (line 1804)
+* f---aa:                                chapter.            (line 2212)
+* f---bb, f---cc:                        chapter.            (line 2212)
+* f---ddd, f---eee, ffff:                chapter.            (line 2212)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2212)
 * followed:                              chapter.            (line  313)
-* followed <1>:                          chapter.            (line  645)
-* followed <2>:                          chapter.            (line  987)
-* followed <3>:                          chapter.            (line 1319)
-* followed <4>:                          chapter.            (line 1797)
-* followed <5>:                          chapter.            (line 2164)
+* followed <1>:                          chapter.            (line  644)
+* followed <2>:                          chapter.            (line  986)
+* followed <3>:                          chapter.            (line 1317)
+* followed <4>:                          chapter.            (line 1795)
+* followed <5>:                          chapter.            (line 2161)
 * I:                                     chapter.            (line  301)
 * I <1>:                                 chapter.            (line  323)
-* I <2>:                                 chapter.            (line  975)
-* I <3>:                                 chapter.            (line  997)
-* I <4>:                                 chapter.            (line 1785)
-* I <5>:                                 chapter.            (line 1808)
+* I <2>:                                 chapter.            (line  974)
+* I <3>:                                 chapter.            (line  996)
+* I <4>:                                 chapter.            (line 1783)
+* I <5>:                                 chapter.            (line 1806)
 * id i ule:                              chapter.            (line  307)
-* id i ule <1>:                          chapter.            (line  981)
-* id i ule <2>:                          chapter.            (line 1791)
+* id i ule <1>:                          chapter.            (line  980)
+* id i ule <2>:                          chapter.            (line 1789)
 * id ule:                                chapter.            (line  306)
-* id ule <1>:                            chapter.            (line  980)
-* id ule <2>:                            chapter.            (line 1790)
-* INVALID:                               chapter.            (line  649)
-* INVALID <1>:                           chapter.            (line 1323)
-* INVALID <2>:                           chapter.            (line 2168)
+* id ule <1>:                            chapter.            (line  979)
+* id ule <2>:                            chapter.            (line 1788)
+* INVALID:                               chapter.            (line  648)
+* INVALID <1>:                           chapter.            (line 1321)
+* INVALID <2>:                           chapter.            (line 2165)
 * log trap:                              chapter.            (line  303)
-* log trap <1>:                          chapter.            (line  977)
-* log trap <2>:                          chapter.            (line 1787)
+* log trap <1>:                          chapter.            (line  976)
+* log trap <2>:                          chapter.            (line 1785)
 * log trap1:                             chapter.            (line  304)
-* log trap1 <1>:                         chapter.            (line  978)
-* log trap1 <2>:                         chapter.            (line 1788)
+* log trap1 <1>:                         chapter.            (line  977)
+* log trap1 <2>:                         chapter.            (line 1786)
 * log trap2:                             chapter.            (line  305)
-* log trap2 <1>:                         chapter.            (line  979)
-* log trap2 <2>:                         chapter.            (line 1789)
+* log trap2 <1>:                         chapter.            (line  978)
+* log trap2 <2>:                         chapter.            (line 1787)
 * machin:                                chapter.            (line  309)
 * machin <1>:                            chapter.            (line  311)
-* machin <2>:                            chapter.            (line  641)
-* machin <3>:                            chapter.            (line  642)
-* machin <4>:                            chapter.            (line  643)
-* machin <5>:                            chapter.            (line  644)
-* machin <6>:                            chapter.            (line  983)
-* machin <7>:                            chapter.            (line  985)
-* machin <8>:                            chapter.            (line 1315)
-* machin <9>:                            chapter.            (line 1316)
-* machin <10>:                           chapter.            (line 1317)
-* machin <11>:                           chapter.            (line 1318)
-* machin <12>:                           chapter.            (line 1793)
-* machin <13>:                           chapter.            (line 1795)
-* machin <14>:                           chapter.            (line 2160)
-* machin <15>:                           chapter.            (line 2161)
-* machin <16>:                           chapter.            (line 2162)
-* machin <17>:                           chapter.            (line 2163)
+* machin <2>:                            chapter.            (line  640)
+* machin <3>:                            chapter.            (line  641)
+* machin <4>:                            chapter.            (line  642)
+* machin <5>:                            chapter.            (line  643)
+* machin <6>:                            chapter.            (line  982)
+* machin <7>:                            chapter.            (line  984)
+* machin <8>:                            chapter.            (line 1313)
+* machin <9>:                            chapter.            (line 1314)
+* machin <10>:                           chapter.            (line 1315)
+* machin <11>:                           chapter.            (line 1316)
+* machin <12>:                           chapter.            (line 1791)
+* machin <13>:                           chapter.            (line 1793)
+* machin <14>:                           chapter.            (line 2157)
+* machin <15>:                           chapter.            (line 2158)
+* machin <16>:                           chapter.            (line 2159)
+* machin <17>:                           chapter.            (line 2160)
 * n--ame:                                chapter.            (line  330)
 * n--ame <1>:                            chapter.            (line  333)
-* n--ame <2>:                            chapter.            (line 1004)
-* n--ame <3>:                            chapter.            (line 1007)
-* n--ame <4>:                            chapter.            (line 1816)
-* n--ame <5>:                            chapter.            (line 1819)
+* n--ame <2>:                            chapter.            (line 1003)
+* n--ame <3>:                            chapter.            (line 1006)
+* n--ame <4>:                            chapter.            (line 1814)
+* n--ame <5>:                            chapter.            (line 1817)
 * name2:                                 chapter.            (line  408)
-* name2 <1>:                             chapter.            (line 1082)
-* name2 <2>:                             chapter.            (line 1895)
-* t--ruc:                                chapter.            (line 2215)
-* T--ruc:                                chapter.            (line 2215)
+* name2 <1>:                             chapter.            (line 1081)
+* name2 <2>:                             chapter.            (line 1893)
+* t--ruc:                                chapter.            (line 2212)
+* T--ruc:                                chapter.            (line 2212)
 * truc:                                  chapter.            (line  302)
 * truc <1>:                              chapter.            (line  324)
-* truc <2>:                              chapter.            (line  976)
-* truc <3>:                              chapter.            (line  998)
-* truc <4>:                              chapter.            (line 1786)
-* truc <5>:                              chapter.            (line 1809)
-* xxx, zzz:                              chapter.            (line 2215)
+* truc <2>:                              chapter.            (line  975)
+* truc <3>:                              chapter.            (line  997)
+* truc <4>:                              chapter.            (line 1784)
+* truc <5>:                              chapter.            (line 1807)
+* xxx, zzz:                              chapter.            (line 2212)
 
 
 
 Tag Table:
-Node: Top19092
-Node: chapter19277
-Ref: chapter-Footnote-199296
-Ref: chapter-Footnote-299316
-Ref: chapter-Footnote-399337
-Ref: chapter-Footnote-499357
-Ref: chapter-Footnote-599378
-Ref: chapter-Footnote-699398
-Ref: chapter-Footnote-799419
-Ref: chapter-Footnote-899457
-Node: s--ect,ion99477
-Node: subsection99680
-Ref: anchor99861
-Node: subsubsection ``simple-double--99861
-Node: subsubsection three---four----''100061
-Node: chapter2100233
+Node: Top19095
+Node: chapter19280
+Ref: chapter-Footnote-199310
+Ref: chapter-Footnote-299330
+Ref: chapter-Footnote-399351
+Ref: chapter-Footnote-499371
+Ref: chapter-Footnote-599392
+Ref: chapter-Footnote-699412
+Ref: chapter-Footnote-799433
+Ref: chapter-Footnote-899471
+Node: s--ect,ion99491
+Node: subsection99694
+Ref: anchor99875
+Node: subsubsection ``simple-double--99875
+Node: subsubsection three---four----''100075
+Node: chapter2100247
 
 End Tag Table
 
diff --git 
a/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.info 
b/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.info
index 004d4f1764..156beaf978 100644
--- 
a/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.info
+++ 
b/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.info
@@ -516,7 +516,7 @@ _b_
    c-artouche
 
                             Tit-le _of box_
-With title c-artouche
+   With title c-artouche
 
 f-lushleft
 more text
@@ -1241,7 +1241,7 @@ _b_
    c-artouche
 
                             Tit-le _of box_
-With title c-artouche
+   With title c-artouche
 
 f-lushleft
 more text
@@ -1923,7 +1923,7 @@ _b_
    c-artouche
 
                             Tit-le _of box_
-With title c-artouche
+   With title c-artouche
 
 f-lushleft
 more text
@@ -2742,7 +2742,7 @@ cross ref name: (file name). '@inforef{}' *note ::
      c--artouche
 
                             Tit-le _of box_
-     With title c--artouche
+          With title c--artouche
 
      f--lushleft
      more text
@@ -2955,14 +2955,14 @@ aaa"]
 [index]
 * Menu:
 
-* truc:                                  chapter.            (line 2217)
+* truc:                                  chapter.            (line 2214)
 
    codeidx
 
 [index]
 * Menu:
 
-* a INDEX---ENTRY te~ --- i^:            chapter.            (line 2217)
+* a INDEX---ENTRY te~ --- i^:            chapter.            (line 2214)
 
    cp
 
@@ -2970,116 +2970,116 @@ aaa"]
 * Menu:
 
 * ":                                     chapter.            (line   28)
-* " <1>:                                 chapter.            (line  703)
-* " <2>:                                 chapter.            (line 1389)
+* " <1>:                                 chapter.            (line  702)
+* " <2>:                                 chapter.            (line 1387)
 * -option:                               chapter.            (line   28)
-* -option <1>:                           chapter.            (line  703)
-* -option <2>:                           chapter.            (line 1389)
-* .:                                     chapter.            (line 2217)
-* ?:                                     chapter.            (line 2217)
-* a:                                     chapter.            (line 2217)
-* aaa, bbb:                              chapter.            (line 2217)
-* a--a:                                  chapter.            (line 2217)
+* -option <1>:                           chapter.            (line  702)
+* -option <2>:                           chapter.            (line 1387)
+* .:                                     chapter.            (line 2214)
+* ?:                                     chapter.            (line 2214)
+* a:                                     chapter.            (line 2214)
+* aaa, bbb:                              chapter.            (line 2214)
+* a--a:                                  chapter.            (line 2214)
 * a--asis:                               chapter.            (line  511)
-* a--asis <1>:                           chapter.            (line 1186)
-* a--asis <2>:                           chapter.            (line 1998)
+* a--asis <1>:                           chapter.            (line 1185)
+* a--asis <2>:                           chapter.            (line 1996)
 * b:                                     chapter.            (line  512)
-* b <1>:                                 chapter.            (line 1187)
-* b <2>:                                 chapter.            (line 1999)
-* b--b, c--c:                            chapter.            (line 2217)
+* b <1>:                                 chapter.            (line 1186)
+* b <2>:                                 chapter.            (line 1997)
+* b--b, c--c:                            chapter.            (line 2214)
 * counting entry:                        chapter.            (line    4)
-* d--dd, e--ee, f--ff:                   chapter.            (line 2217)
+* d--dd, e--ee, f--ff:                   chapter.            (line 2214)
 * d--efcv_name:                          chapter.            (line  352)
 * d--efcv_name <1>:                      chapter.            (line  355)
-* d--efcv_name <2>:                      chapter.            (line 1027)
-* d--efcv_name <3>:                      chapter.            (line 1030)
-* d--efcv_name <4>:                      chapter.            (line 1839)
-* d--efcv_name <5>:                      chapter.            (line 1842)
+* d--efcv_name <2>:                      chapter.            (line 1026)
+* d--efcv_name <3>:                      chapter.            (line 1029)
+* d--efcv_name <4>:                      chapter.            (line 1837)
+* d--efcv_name <5>:                      chapter.            (line 1840)
 * d--efivar_name of c--lass:             chapter.            (line  397)
-* d--efivar_name of c--lass <1>:         chapter.            (line 1072)
-* d--efivar_name of c--lass <2>:         chapter.            (line 1884)
+* d--efivar_name of c--lass <1>:         chapter.            (line 1071)
+* d--efivar_name of c--lass <2>:         chapter.            (line 1882)
 * d--efopt_name:                         chapter.            (line  388)
-* d--efopt_name <1>:                     chapter.            (line 1063)
-* d--efopt_name <2>:                     chapter.            (line 1875)
+* d--efopt_name <1>:                     chapter.            (line 1062)
+* d--efopt_name <2>:                     chapter.            (line 1873)
 * d--eftypecv_name of c--lass:           chapter.            (line  358)
 * d--eftypecv_name of c--lass <1>:       chapter.            (line  361)
-* d--eftypecv_name of c--lass <2>:       chapter.            (line 1033)
-* d--eftypecv_name of c--lass <3>:       chapter.            (line 1036)
-* d--eftypecv_name of c--lass <4>:       chapter.            (line 1845)
-* d--eftypecv_name of c--lass <5>:       chapter.            (line 1848)
+* d--eftypecv_name of c--lass <2>:       chapter.            (line 1032)
+* d--eftypecv_name of c--lass <3>:       chapter.            (line 1035)
+* d--eftypecv_name of c--lass <4>:       chapter.            (line 1843)
+* d--eftypecv_name of c--lass <5>:       chapter.            (line 1846)
 * d--eftypecv_name2 of c--lass2:         chapter.            (line  429)
 * d--eftypecv_name2 of c--lass2 <1>:     chapter.            (line  432)
-* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1104)
-* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1107)
-* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1917)
-* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1920)
+* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1103)
+* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1106)
+* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1915)
+* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1918)
 * d--eftypeivar_name of c--lass:         chapter.            (line  400)
-* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1075)
-* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1887)
+* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1074)
+* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1885)
 * d--eftypevar_name:                     chapter.            (line  394)
-* d--eftypevar_name <1>:                 chapter.            (line 1069)
-* d--eftypevar_name <2>:                 chapter.            (line 1881)
+* d--eftypevar_name <1>:                 chapter.            (line 1068)
+* d--eftypevar_name <2>:                 chapter.            (line 1879)
 * d--eftypevr_name:                      chapter.            (line  349)
-* d--eftypevr_name <1>:                  chapter.            (line 1024)
-* d--eftypevr_name <2>:                  chapter.            (line 1836)
+* d--eftypevr_name <1>:                  chapter.            (line 1023)
+* d--eftypevr_name <2>:                  chapter.            (line 1834)
 * d--efvar_name:                         chapter.            (line  382)
 * d--efvar_name <1>:                     chapter.            (line  385)
-* d--efvar_name <2>:                     chapter.            (line 1057)
-* d--efvar_name <3>:                     chapter.            (line 1060)
-* d--efvar_name <4>:                     chapter.            (line 1869)
-* d--efvar_name <5>:                     chapter.            (line 1872)
+* d--efvar_name <2>:                     chapter.            (line 1056)
+* d--efvar_name <3>:                     chapter.            (line 1059)
+* d--efvar_name <4>:                     chapter.            (line 1867)
+* d--efvar_name <5>:                     chapter.            (line 1870)
 * d--efvr_name:                          chapter.            (line  328)
-* d--efvr_name <1>:                      chapter.            (line 1003)
-* d--efvr_name <2>:                      chapter.            (line 1815)
-* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2217)
+* d--efvr_name <1>:                      chapter.            (line 1002)
+* d--efvr_name <2>:                      chapter.            (line 1813)
+* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2214)
 * index entry between item and itemx:    chapter.            (line  516)
-* index entry between item and itemx <1>: chapter.           (line  638)
-* index entry between item and itemx <2>: chapter.           (line 1191)
-* index entry between item and itemx <3>: chapter.           (line 1313)
-* index entry between item and itemx <4>: chapter.           (line 2003)
-* index entry between item and itemx <5>: chapter.           (line 2158)
+* index entry between item and itemx <1>: chapter.           (line  637)
+* index entry between item and itemx <2>: chapter.           (line 1190)
+* index entry between item and itemx <3>: chapter.           (line 1311)
+* index entry between item and itemx <4>: chapter.           (line 2001)
+* index entry between item and itemx <5>: chapter.           (line 2155)
 * index entry in footnote:               chapter.            (line    4)
 * index entry within deffn:              chapter.            (line  303)
-* index entry within deffn <1>:          chapter.            (line  978)
-* index entry within deffn <2>:          chapter.            (line 1788)
+* index entry within deffn <1>:          chapter.            (line  977)
+* index entry within deffn <2>:          chapter.            (line 1786)
 * index entry within itemize:            chapter.            (line  214)
-* index entry within itemize <1>:        chapter.            (line  889)
-* index entry within itemize <2>:        chapter.            (line 1699)
+* index entry within itemize <1>:        chapter.            (line  888)
+* index entry within itemize <2>:        chapter.            (line 1697)
 * index entry within multitable:         chapter.            (line  236)
-* index entry within multitable <1>:     chapter.            (line  911)
-* index entry within multitable <2>:     chapter.            (line 1722)
-* t-ruc:                                 chapter.            (line 2217)
-* T-ruc:                                 chapter.            (line 2217)
+* index entry within multitable <1>:     chapter.            (line  910)
+* index entry within multitable <2>:     chapter.            (line 1720)
+* t-ruc:                                 chapter.            (line 2214)
+* T-ruc:                                 chapter.            (line 2214)
 * vtable i--tem code kbdinputstyle:      chapter.            (line  138)
-* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  813)
-* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1622)
+* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  812)
+* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1620)
 * vtable i--tem default kbdinputstyle:   chapter.            (line  133)
-* vtable i--tem default kbdinputstyle <1>: chapter.          (line  808)
-* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1617)
+* vtable i--tem default kbdinputstyle <1>: chapter.          (line  807)
+* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1615)
 * vtable i--tem distinct kbdinputstyle:  chapter.            (line  148)
-* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  823)
-* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1632)
+* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  822)
+* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1630)
 * vtable i--tem example kbdinputstyle:   chapter.            (line  143)
-* vtable i--tem example kbdinputstyle <1>: chapter.          (line  818)
-* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1627)
+* vtable i--tem example kbdinputstyle <1>: chapter.          (line  817)
+* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1625)
 * vtable i--tem in example code kbdinputstyle: chapter.      (line  140)
-* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  815)
-* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1624)
+* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  814)
+* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1622)
 * vtable i--tem in example default kbdinputstyle: chapter.   (line  135)
 * vtable i--tem in example default kbdinputstyle <1>: chapter.
-                                                             (line  810)
+                                                             (line  809)
 * vtable i--tem in example default kbdinputstyle <2>: chapter.
-                                                             (line 1619)
+                                                             (line 1617)
 * vtable i--tem in example distinct kbdinputstyle: chapter.  (line  150)
 * vtable i--tem in example distinct kbdinputstyle <1>: chapter.
-                                                             (line  825)
+                                                             (line  824)
 * vtable i--tem in example distinct kbdinputstyle <2>: chapter.
-                                                             (line 1634)
+                                                             (line 1632)
 * vtable i--tem in example example kbdinputstyle: chapter.   (line  145)
 * vtable i--tem in example example kbdinputstyle <1>: chapter.
-                                                             (line  820)
+                                                             (line  819)
 * vtable i--tem in example example kbdinputstyle <2>: chapter.
-                                                             (line 1629)
+                                                             (line 1627)
 
    fn
 
@@ -3087,171 +3087,171 @@ aaa"]
 * Menu:
 
 * --foption:                             chapter.            (line   28)
-* --foption <1>:                         chapter.            (line  703)
-* --foption <2>:                         chapter.            (line 1389)
-* .:                                     chapter.            (line 2217)
-* ?:                                     chapter.            (line 2217)
+* --foption <1>:                         chapter.            (line  702)
+* --foption <2>:                         chapter.            (line 1387)
+* .:                                     chapter.            (line 2214)
+* ?:                                     chapter.            (line 2214)
 * ``:                                    chapter.            (line   28)
-* `` <1>:                                chapter.            (line  703)
-* `` <2>:                                chapter.            (line 1389)
+* `` <1>:                                chapter.            (line  702)
+* `` <2>:                                chapter.            (line 1387)
 * a:                                     chapter.            (line  316)
 * a <1>:                                 chapter.            (line  515)
-* a <2>:                                 chapter.            (line  637)
-* a <3>:                                 chapter.            (line  991)
-* a <4>:                                 chapter.            (line 1190)
-* a <5>:                                 chapter.            (line 1312)
-* a <6>:                                 chapter.            (line 1801)
-* a <7>:                                 chapter.            (line 2002)
-* a <8>:                                 chapter.            (line 2157)
-* a <9>:                                 chapter.            (line 2217)
-* after:                                 chapter.            (line  648)
-* after <1>:                             chapter.            (line 1323)
-* after <2>:                             chapter.            (line 2168)
+* a <2>:                                 chapter.            (line  636)
+* a <3>:                                 chapter.            (line  990)
+* a <4>:                                 chapter.            (line 1189)
+* a <5>:                                 chapter.            (line 1310)
+* a <6>:                                 chapter.            (line 1799)
+* a <7>:                                 chapter.            (line 2000)
+* a <8>:                                 chapter.            (line 2154)
+* a <9>:                                 chapter.            (line 2214)
+* after:                                 chapter.            (line  647)
+* after <1>:                             chapter.            (line 1321)
+* after <2>:                             chapter.            (line 2165)
 * arg2:                                  chapter.            (line  435)
-* arg2 <1>:                              chapter.            (line 1110)
-* arg2 <2>:                              chapter.            (line 1924)
+* arg2 <1>:                              chapter.            (line 1109)
+* arg2 <2>:                              chapter.            (line 1922)
 * b:                                     chapter.            (line  516)
-* b <1>:                                 chapter.            (line  638)
-* b <2>:                                 chapter.            (line 1191)
-* b <3>:                                 chapter.            (line 1313)
-* b <4>:                                 chapter.            (line 2003)
-* b <5>:                                 chapter.            (line 2158)
+* b <1>:                                 chapter.            (line  637)
+* b <2>:                                 chapter.            (line 1190)
+* b <3>:                                 chapter.            (line 1311)
+* b <4>:                                 chapter.            (line 2001)
+* b <5>:                                 chapter.            (line 2155)
 * bidule machin:                         chapter.            (line  311)
-* bidule machin <1>:                     chapter.            (line  986)
-* bidule machin <2>:                     chapter.            (line 1796)
+* bidule machin <1>:                     chapter.            (line  985)
+* bidule machin <2>:                     chapter.            (line 1794)
 * d--effn_name:                          chapter.            (line  295)
-* d--effn_name <1>:                      chapter.            (line  970)
-* d--effn_name <2>:                      chapter.            (line 1780)
+* d--effn_name <1>:                      chapter.            (line  969)
+* d--effn_name <2>:                      chapter.            (line 1778)
 * d--efmac_name:                         chapter.            (line  376)
-* d--efmac_name <1>:                     chapter.            (line 1051)
-* d--efmac_name <2>:                     chapter.            (line 1863)
+* d--efmac_name <1>:                     chapter.            (line 1050)
+* d--efmac_name <2>:                     chapter.            (line 1861)
 * d--efmethod_name on c--lass:           chapter.            (line  403)
-* d--efmethod_name on c--lass <1>:       chapter.            (line 1078)
-* d--efmethod_name on c--lass <2>:       chapter.            (line 1890)
+* d--efmethod_name on c--lass <1>:       chapter.            (line 1077)
+* d--efmethod_name on c--lass <2>:       chapter.            (line 1888)
 * d--efop_name on c--lass:               chapter.            (line  364)
 * d--efop_name on c--lass <1>:           chapter.            (line  367)
-* d--efop_name on c--lass <2>:           chapter.            (line 1039)
-* d--efop_name on c--lass <3>:           chapter.            (line 1042)
-* d--efop_name on c--lass <4>:           chapter.            (line 1851)
-* d--efop_name on c--lass <5>:           chapter.            (line 1854)
+* d--efop_name on c--lass <2>:           chapter.            (line 1038)
+* d--efop_name on c--lass <3>:           chapter.            (line 1041)
+* d--efop_name on c--lass <4>:           chapter.            (line 1849)
+* d--efop_name on c--lass <5>:           chapter.            (line 1852)
 * d--efspec_name:                        chapter.            (line  379)
-* d--efspec_name <1>:                    chapter.            (line 1054)
-* d--efspec_name <2>:                    chapter.            (line 1866)
+* d--efspec_name <1>:                    chapter.            (line 1053)
+* d--efspec_name <2>:                    chapter.            (line 1864)
 * d--eftypefn_name:                      chapter.            (line  337)
 * d--eftypefn_name <1>:                  chapter.            (line  340)
-* d--eftypefn_name <2>:                  chapter.            (line 1012)
-* d--eftypefn_name <3>:                  chapter.            (line 1015)
-* d--eftypefn_name <4>:                  chapter.            (line 1824)
-* d--eftypefn_name <5>:                  chapter.            (line 1827)
+* d--eftypefn_name <2>:                  chapter.            (line 1011)
+* d--eftypefn_name <3>:                  chapter.            (line 1014)
+* d--eftypefn_name <4>:                  chapter.            (line 1822)
+* d--eftypefn_name <5>:                  chapter.            (line 1825)
 * d--eftypefn_name2:                     chapter.            (line  414)
-* d--eftypefn_name2 <1>:                 chapter.            (line 1089)
-* d--eftypefn_name2 <2>:                 chapter.            (line 1902)
+* d--eftypefn_name2 <1>:                 chapter.            (line 1088)
+* d--eftypefn_name2 <2>:                 chapter.            (line 1900)
 * d--eftypefun_name:                     chapter.            (line  391)
-* d--eftypefun_name <1>:                 chapter.            (line 1066)
-* d--eftypefun_name <2>:                 chapter.            (line 1878)
+* d--eftypefun_name <1>:                 chapter.            (line 1065)
+* d--eftypefun_name <2>:                 chapter.            (line 1876)
 * d--eftypemethod_name on c--lass:       chapter.            (line  406)
-* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1081)
-* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1893)
+* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1080)
+* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1891)
 * d--eftypeop_name on c--lass:           chapter.            (line  343)
 * d--eftypeop_name on c--lass <1>:       chapter.            (line  346)
-* d--eftypeop_name on c--lass <2>:       chapter.            (line 1018)
-* d--eftypeop_name on c--lass <3>:       chapter.            (line 1021)
-* d--eftypeop_name on c--lass <4>:       chapter.            (line 1830)
-* d--eftypeop_name on c--lass <5>:       chapter.            (line 1833)
+* d--eftypeop_name on c--lass <2>:       chapter.            (line 1017)
+* d--eftypeop_name on c--lass <3>:       chapter.            (line 1020)
+* d--eftypeop_name on c--lass <4>:       chapter.            (line 1828)
+* d--eftypeop_name on c--lass <5>:       chapter.            (line 1831)
 * d--eftypeop_name2 on c--lass2:         chapter.            (line  419)
 * d--eftypeop_name2 on c--lass2 <1>:     chapter.            (line  424)
-* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1094)
-* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1099)
-* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1907)
-* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1912)
+* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1093)
+* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1098)
+* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1905)
+* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1910)
 * d--efun_name:                          chapter.            (line  373)
-* d--efun_name <1>:                      chapter.            (line 1048)
-* d--efun_name <2>:                      chapter.            (line 1860)
+* d--efun_name <1>:                      chapter.            (line 1047)
+* d--efun_name <2>:                      chapter.            (line 1858)
 * de--ffn_name:                          chapter.            (line  298)
-* de--ffn_name <1>:                      chapter.            (line  973)
-* de--ffn_name <2>:                      chapter.            (line 1783)
+* de--ffn_name <1>:                      chapter.            (line  972)
+* de--ffn_name <2>:                      chapter.            (line 1781)
 * deffn:                                 chapter.            (line  319)
 * deffn <1>:                             chapter.            (line  321)
-* deffn <2>:                             chapter.            (line  994)
-* deffn <3>:                             chapter.            (line  996)
-* deffn <4>:                             chapter.            (line 1805)
-* deffn <5>:                             chapter.            (line 1807)
+* deffn <2>:                             chapter.            (line  993)
+* deffn <3>:                             chapter.            (line  995)
+* deffn <4>:                             chapter.            (line 1803)
+* deffn <5>:                             chapter.            (line 1805)
 * deffnx:                                chapter.            (line  317)
 * deffnx <1>:                            chapter.            (line  322)
-* deffnx <2>:                            chapter.            (line  992)
-* deffnx <3>:                            chapter.            (line  997)
-* deffnx <4>:                            chapter.            (line 1802)
-* deffnx <5>:                            chapter.            (line 1808)
-* f---aa:                                chapter.            (line 2217)
-* f---bb, f---cc:                        chapter.            (line 2217)
-* f---ddd, f---eee, ffff:                chapter.            (line 2217)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2217)
+* deffnx <2>:                            chapter.            (line  991)
+* deffnx <3>:                            chapter.            (line  996)
+* deffnx <4>:                            chapter.            (line 1800)
+* deffnx <5>:                            chapter.            (line 1806)
+* f---aa:                                chapter.            (line 2214)
+* f---bb, f---cc:                        chapter.            (line 2214)
+* f---ddd, f---eee, ffff:                chapter.            (line 2214)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2214)
 * followed:                              chapter.            (line  314)
-* followed <1>:                          chapter.            (line  646)
-* followed <2>:                          chapter.            (line  989)
-* followed <3>:                          chapter.            (line 1321)
-* followed <4>:                          chapter.            (line 1799)
-* followed <5>:                          chapter.            (line 2166)
+* followed <1>:                          chapter.            (line  645)
+* followed <2>:                          chapter.            (line  988)
+* followed <3>:                          chapter.            (line 1319)
+* followed <4>:                          chapter.            (line 1797)
+* followed <5>:                          chapter.            (line 2163)
 * I:                                     chapter.            (line  302)
 * I <1>:                                 chapter.            (line  324)
-* I <2>:                                 chapter.            (line  977)
-* I <3>:                                 chapter.            (line  999)
-* I <4>:                                 chapter.            (line 1787)
-* I <5>:                                 chapter.            (line 1810)
+* I <2>:                                 chapter.            (line  976)
+* I <3>:                                 chapter.            (line  998)
+* I <4>:                                 chapter.            (line 1785)
+* I <5>:                                 chapter.            (line 1808)
 * id i ule:                              chapter.            (line  308)
-* id i ule <1>:                          chapter.            (line  983)
-* id i ule <2>:                          chapter.            (line 1793)
+* id i ule <1>:                          chapter.            (line  982)
+* id i ule <2>:                          chapter.            (line 1791)
 * id ule:                                chapter.            (line  307)
-* id ule <1>:                            chapter.            (line  982)
-* id ule <2>:                            chapter.            (line 1792)
-* INVALID:                               chapter.            (line  650)
-* INVALID <1>:                           chapter.            (line 1325)
-* INVALID <2>:                           chapter.            (line 2170)
+* id ule <1>:                            chapter.            (line  981)
+* id ule <2>:                            chapter.            (line 1790)
+* INVALID:                               chapter.            (line  649)
+* INVALID <1>:                           chapter.            (line 1323)
+* INVALID <2>:                           chapter.            (line 2167)
 * log trap:                              chapter.            (line  304)
-* log trap <1>:                          chapter.            (line  979)
-* log trap <2>:                          chapter.            (line 1789)
+* log trap <1>:                          chapter.            (line  978)
+* log trap <2>:                          chapter.            (line 1787)
 * log trap1:                             chapter.            (line  305)
-* log trap1 <1>:                         chapter.            (line  980)
-* log trap1 <2>:                         chapter.            (line 1790)
+* log trap1 <1>:                         chapter.            (line  979)
+* log trap1 <2>:                         chapter.            (line 1788)
 * log trap2:                             chapter.            (line  306)
-* log trap2 <1>:                         chapter.            (line  981)
-* log trap2 <2>:                         chapter.            (line 1791)
+* log trap2 <1>:                         chapter.            (line  980)
+* log trap2 <2>:                         chapter.            (line 1789)
 * machin:                                chapter.            (line  310)
 * machin <1>:                            chapter.            (line  312)
-* machin <2>:                            chapter.            (line  642)
-* machin <3>:                            chapter.            (line  643)
-* machin <4>:                            chapter.            (line  644)
-* machin <5>:                            chapter.            (line  645)
-* machin <6>:                            chapter.            (line  985)
-* machin <7>:                            chapter.            (line  987)
-* machin <8>:                            chapter.            (line 1317)
-* machin <9>:                            chapter.            (line 1318)
-* machin <10>:                           chapter.            (line 1319)
-* machin <11>:                           chapter.            (line 1320)
-* machin <12>:                           chapter.            (line 1795)
-* machin <13>:                           chapter.            (line 1797)
-* machin <14>:                           chapter.            (line 2162)
-* machin <15>:                           chapter.            (line 2163)
-* machin <16>:                           chapter.            (line 2164)
-* machin <17>:                           chapter.            (line 2165)
+* machin <2>:                            chapter.            (line  641)
+* machin <3>:                            chapter.            (line  642)
+* machin <4>:                            chapter.            (line  643)
+* machin <5>:                            chapter.            (line  644)
+* machin <6>:                            chapter.            (line  984)
+* machin <7>:                            chapter.            (line  986)
+* machin <8>:                            chapter.            (line 1315)
+* machin <9>:                            chapter.            (line 1316)
+* machin <10>:                           chapter.            (line 1317)
+* machin <11>:                           chapter.            (line 1318)
+* machin <12>:                           chapter.            (line 1793)
+* machin <13>:                           chapter.            (line 1795)
+* machin <14>:                           chapter.            (line 2159)
+* machin <15>:                           chapter.            (line 2160)
+* machin <16>:                           chapter.            (line 2161)
+* machin <17>:                           chapter.            (line 2162)
 * n--ame:                                chapter.            (line  331)
 * n--ame <1>:                            chapter.            (line  334)
-* n--ame <2>:                            chapter.            (line 1006)
-* n--ame <3>:                            chapter.            (line 1009)
-* n--ame <4>:                            chapter.            (line 1818)
-* n--ame <5>:                            chapter.            (line 1821)
+* n--ame <2>:                            chapter.            (line 1005)
+* n--ame <3>:                            chapter.            (line 1008)
+* n--ame <4>:                            chapter.            (line 1816)
+* n--ame <5>:                            chapter.            (line 1819)
 * name2:                                 chapter.            (line  409)
-* name2 <1>:                             chapter.            (line 1084)
-* name2 <2>:                             chapter.            (line 1897)
-* t--ruc:                                chapter.            (line 2217)
-* T--ruc:                                chapter.            (line 2217)
+* name2 <1>:                             chapter.            (line 1083)
+* name2 <2>:                             chapter.            (line 1895)
+* t--ruc:                                chapter.            (line 2214)
+* T--ruc:                                chapter.            (line 2214)
 * truc:                                  chapter.            (line  303)
 * truc <1>:                              chapter.            (line  325)
-* truc <2>:                              chapter.            (line  978)
-* truc <3>:                              chapter.            (line 1000)
-* truc <4>:                              chapter.            (line 1788)
-* truc <5>:                              chapter.            (line 1811)
-* xxx, zzz:                              chapter.            (line 2217)
+* truc <2>:                              chapter.            (line  977)
+* truc <3>:                              chapter.            (line  999)
+* truc <4>:                              chapter.            (line 1786)
+* truc <5>:                              chapter.            (line 1809)
+* xxx, zzz:                              chapter.            (line 2214)
 
    vr
 
@@ -3265,8 +3265,8 @@ aaa"]
 * Menu:
 
 * d--eftp_name:                          chapter.            (line  370)
-* d--eftp_name <1>:                      chapter.            (line 1045)
-* d--eftp_name <2>:                      chapter.            (line 1857)
+* d--eftp_name <1>:                      chapter.            (line 1044)
+* d--eftp_name <2>:                      chapter.            (line 1855)
 
    (8)
 
@@ -3349,306 +3349,306 @@ chapter 2
 * Menu:
 
 * ":                                     chapter.            (line   28)
-* " <1>:                                 chapter.            (line  703)
-* " <2>:                                 chapter.            (line 1389)
+* " <1>:                                 chapter.            (line  702)
+* " <2>:                                 chapter.            (line 1387)
 * -option:                               chapter.            (line   28)
-* -option <1>:                           chapter.            (line  703)
-* -option <2>:                           chapter.            (line 1389)
-* .:                                     chapter.            (line 2217)
-* ?:                                     chapter.            (line 2217)
-* a:                                     chapter.            (line 2217)
-* aaa, bbb:                              chapter.            (line 2217)
-* a--a:                                  chapter.            (line 2217)
+* -option <1>:                           chapter.            (line  702)
+* -option <2>:                           chapter.            (line 1387)
+* .:                                     chapter.            (line 2214)
+* ?:                                     chapter.            (line 2214)
+* a:                                     chapter.            (line 2214)
+* aaa, bbb:                              chapter.            (line 2214)
+* a--a:                                  chapter.            (line 2214)
 * a--asis:                               chapter.            (line  511)
-* a--asis <1>:                           chapter.            (line 1186)
-* a--asis <2>:                           chapter.            (line 1998)
+* a--asis <1>:                           chapter.            (line 1185)
+* a--asis <2>:                           chapter.            (line 1996)
 * b:                                     chapter.            (line  512)
-* b <1>:                                 chapter.            (line 1187)
-* b <2>:                                 chapter.            (line 1999)
-* b--b, c--c:                            chapter.            (line 2217)
-* counting entry:                        chapter.            (line 2567)
-* d--dd, e--ee, f--ff:                   chapter.            (line 2217)
+* b <1>:                                 chapter.            (line 1186)
+* b <2>:                                 chapter.            (line 1997)
+* b--b, c--c:                            chapter.            (line 2214)
+* counting entry:                        chapter.            (line 2564)
+* d--dd, e--ee, f--ff:                   chapter.            (line 2214)
 * d--efcv_name:                          chapter.            (line  352)
 * d--efcv_name <1>:                      chapter.            (line  355)
-* d--efcv_name <2>:                      chapter.            (line 1027)
-* d--efcv_name <3>:                      chapter.            (line 1030)
-* d--efcv_name <4>:                      chapter.            (line 1839)
-* d--efcv_name <5>:                      chapter.            (line 1842)
+* d--efcv_name <2>:                      chapter.            (line 1026)
+* d--efcv_name <3>:                      chapter.            (line 1029)
+* d--efcv_name <4>:                      chapter.            (line 1837)
+* d--efcv_name <5>:                      chapter.            (line 1840)
 * d--efivar_name of c--lass:             chapter.            (line  397)
-* d--efivar_name of c--lass <1>:         chapter.            (line 1072)
-* d--efivar_name of c--lass <2>:         chapter.            (line 1884)
+* d--efivar_name of c--lass <1>:         chapter.            (line 1071)
+* d--efivar_name of c--lass <2>:         chapter.            (line 1882)
 * d--efopt_name:                         chapter.            (line  388)
-* d--efopt_name <1>:                     chapter.            (line 1063)
-* d--efopt_name <2>:                     chapter.            (line 1875)
+* d--efopt_name <1>:                     chapter.            (line 1062)
+* d--efopt_name <2>:                     chapter.            (line 1873)
 * d--eftypecv_name of c--lass:           chapter.            (line  358)
 * d--eftypecv_name of c--lass <1>:       chapter.            (line  361)
-* d--eftypecv_name of c--lass <2>:       chapter.            (line 1033)
-* d--eftypecv_name of c--lass <3>:       chapter.            (line 1036)
-* d--eftypecv_name of c--lass <4>:       chapter.            (line 1845)
-* d--eftypecv_name of c--lass <5>:       chapter.            (line 1848)
+* d--eftypecv_name of c--lass <2>:       chapter.            (line 1032)
+* d--eftypecv_name of c--lass <3>:       chapter.            (line 1035)
+* d--eftypecv_name of c--lass <4>:       chapter.            (line 1843)
+* d--eftypecv_name of c--lass <5>:       chapter.            (line 1846)
 * d--eftypecv_name2 of c--lass2:         chapter.            (line  429)
 * d--eftypecv_name2 of c--lass2 <1>:     chapter.            (line  432)
-* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1104)
-* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1107)
-* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1917)
-* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1920)
+* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1103)
+* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1106)
+* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1915)
+* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1918)
 * d--eftypeivar_name of c--lass:         chapter.            (line  400)
-* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1075)
-* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1887)
+* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1074)
+* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1885)
 * d--eftypevar_name:                     chapter.            (line  394)
-* d--eftypevar_name <1>:                 chapter.            (line 1069)
-* d--eftypevar_name <2>:                 chapter.            (line 1881)
+* d--eftypevar_name <1>:                 chapter.            (line 1068)
+* d--eftypevar_name <2>:                 chapter.            (line 1879)
 * d--eftypevr_name:                      chapter.            (line  349)
-* d--eftypevr_name <1>:                  chapter.            (line 1024)
-* d--eftypevr_name <2>:                  chapter.            (line 1836)
+* d--eftypevr_name <1>:                  chapter.            (line 1023)
+* d--eftypevr_name <2>:                  chapter.            (line 1834)
 * d--efvar_name:                         chapter.            (line  382)
 * d--efvar_name <1>:                     chapter.            (line  385)
-* d--efvar_name <2>:                     chapter.            (line 1057)
-* d--efvar_name <3>:                     chapter.            (line 1060)
-* d--efvar_name <4>:                     chapter.            (line 1869)
-* d--efvar_name <5>:                     chapter.            (line 1872)
+* d--efvar_name <2>:                     chapter.            (line 1056)
+* d--efvar_name <3>:                     chapter.            (line 1059)
+* d--efvar_name <4>:                     chapter.            (line 1867)
+* d--efvar_name <5>:                     chapter.            (line 1870)
 * d--efvr_name:                          chapter.            (line  328)
-* d--efvr_name <1>:                      chapter.            (line 1003)
-* d--efvr_name <2>:                      chapter.            (line 1815)
-* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2217)
+* d--efvr_name <1>:                      chapter.            (line 1002)
+* d--efvr_name <2>:                      chapter.            (line 1813)
+* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2214)
 * index entry between item and itemx:    chapter.            (line  516)
-* index entry between item and itemx <1>: chapter.           (line  638)
-* index entry between item and itemx <2>: chapter.           (line 1191)
-* index entry between item and itemx <3>: chapter.           (line 1313)
-* index entry between item and itemx <4>: chapter.           (line 2003)
-* index entry between item and itemx <5>: chapter.           (line 2158)
-* index entry in footnote:               chapter.            (line 2562)
+* index entry between item and itemx <1>: chapter.           (line  637)
+* index entry between item and itemx <2>: chapter.           (line 1190)
+* index entry between item and itemx <3>: chapter.           (line 1311)
+* index entry between item and itemx <4>: chapter.           (line 2001)
+* index entry between item and itemx <5>: chapter.           (line 2155)
+* index entry in footnote:               chapter.            (line 2559)
 * index entry within deffn:              chapter.            (line  303)
-* index entry within deffn <1>:          chapter.            (line  978)
-* index entry within deffn <2>:          chapter.            (line 1788)
+* index entry within deffn <1>:          chapter.            (line  977)
+* index entry within deffn <2>:          chapter.            (line 1786)
 * index entry within itemize:            chapter.            (line  214)
-* index entry within itemize <1>:        chapter.            (line  889)
-* index entry within itemize <2>:        chapter.            (line 1699)
+* index entry within itemize <1>:        chapter.            (line  888)
+* index entry within itemize <2>:        chapter.            (line 1697)
 * index entry within multitable:         chapter.            (line  236)
-* index entry within multitable <1>:     chapter.            (line  911)
-* index entry within multitable <2>:     chapter.            (line 1722)
-* t-ruc:                                 chapter.            (line 2217)
-* T-ruc:                                 chapter.            (line 2217)
+* index entry within multitable <1>:     chapter.            (line  910)
+* index entry within multitable <2>:     chapter.            (line 1720)
+* t-ruc:                                 chapter.            (line 2214)
+* T-ruc:                                 chapter.            (line 2214)
 * vtable i--tem code kbdinputstyle:      chapter.            (line  138)
-* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  813)
-* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1622)
+* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  812)
+* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1620)
 * vtable i--tem default kbdinputstyle:   chapter.            (line  133)
-* vtable i--tem default kbdinputstyle <1>: chapter.          (line  808)
-* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1617)
+* vtable i--tem default kbdinputstyle <1>: chapter.          (line  807)
+* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1615)
 * vtable i--tem distinct kbdinputstyle:  chapter.            (line  148)
-* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  823)
-* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1632)
+* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  822)
+* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1630)
 * vtable i--tem example kbdinputstyle:   chapter.            (line  143)
-* vtable i--tem example kbdinputstyle <1>: chapter.          (line  818)
-* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1627)
+* vtable i--tem example kbdinputstyle <1>: chapter.          (line  817)
+* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1625)
 * vtable i--tem in example code kbdinputstyle: chapter.      (line  140)
-* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  815)
-* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1624)
+* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  814)
+* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1622)
 * vtable i--tem in example default kbdinputstyle: chapter.   (line  135)
 * vtable i--tem in example default kbdinputstyle <1>: chapter.
-                                                             (line  810)
+                                                             (line  809)
 * vtable i--tem in example default kbdinputstyle <2>: chapter.
-                                                             (line 1619)
+                                                             (line 1617)
 * vtable i--tem in example distinct kbdinputstyle: chapter.  (line  150)
 * vtable i--tem in example distinct kbdinputstyle <1>: chapter.
-                                                             (line  825)
+                                                             (line  824)
 * vtable i--tem in example distinct kbdinputstyle <2>: chapter.
-                                                             (line 1634)
+                                                             (line 1632)
 * vtable i--tem in example example kbdinputstyle: chapter.   (line  145)
 * vtable i--tem in example example kbdinputstyle <1>: chapter.
-                                                             (line  820)
+                                                             (line  819)
 * vtable i--tem in example example kbdinputstyle <2>: chapter.
-                                                             (line 1629)
+                                                             (line 1627)
 
 [index]
 * Menu:
 
 * --foption:                             chapter.            (line   28)
-* --foption <1>:                         chapter.            (line  703)
-* --foption <2>:                         chapter.            (line 1389)
-* .:                                     chapter.            (line 2217)
-* ?:                                     chapter.            (line 2217)
+* --foption <1>:                         chapter.            (line  702)
+* --foption <2>:                         chapter.            (line 1387)
+* .:                                     chapter.            (line 2214)
+* ?:                                     chapter.            (line 2214)
 * ``:                                    chapter.            (line   28)
-* `` <1>:                                chapter.            (line  703)
-* `` <2>:                                chapter.            (line 1389)
+* `` <1>:                                chapter.            (line  702)
+* `` <2>:                                chapter.            (line 1387)
 * a:                                     chapter.            (line  316)
 * a <1>:                                 chapter.            (line  515)
-* a <2>:                                 chapter.            (line  637)
-* a <3>:                                 chapter.            (line  991)
-* a <4>:                                 chapter.            (line 1190)
-* a <5>:                                 chapter.            (line 1312)
-* a <6>:                                 chapter.            (line 1801)
-* a <7>:                                 chapter.            (line 2002)
-* a <8>:                                 chapter.            (line 2157)
-* a <9>:                                 chapter.            (line 2217)
-* after:                                 chapter.            (line  648)
-* after <1>:                             chapter.            (line 1323)
-* after <2>:                             chapter.            (line 2168)
+* a <2>:                                 chapter.            (line  636)
+* a <3>:                                 chapter.            (line  990)
+* a <4>:                                 chapter.            (line 1189)
+* a <5>:                                 chapter.            (line 1310)
+* a <6>:                                 chapter.            (line 1799)
+* a <7>:                                 chapter.            (line 2000)
+* a <8>:                                 chapter.            (line 2154)
+* a <9>:                                 chapter.            (line 2214)
+* after:                                 chapter.            (line  647)
+* after <1>:                             chapter.            (line 1321)
+* after <2>:                             chapter.            (line 2165)
 * arg2:                                  chapter.            (line  435)
-* arg2 <1>:                              chapter.            (line 1110)
-* arg2 <2>:                              chapter.            (line 1924)
+* arg2 <1>:                              chapter.            (line 1109)
+* arg2 <2>:                              chapter.            (line 1922)
 * b:                                     chapter.            (line  516)
-* b <1>:                                 chapter.            (line  638)
-* b <2>:                                 chapter.            (line 1191)
-* b <3>:                                 chapter.            (line 1313)
-* b <4>:                                 chapter.            (line 2003)
-* b <5>:                                 chapter.            (line 2158)
+* b <1>:                                 chapter.            (line  637)
+* b <2>:                                 chapter.            (line 1190)
+* b <3>:                                 chapter.            (line 1311)
+* b <4>:                                 chapter.            (line 2001)
+* b <5>:                                 chapter.            (line 2155)
 * bidule machin:                         chapter.            (line  311)
-* bidule machin <1>:                     chapter.            (line  986)
-* bidule machin <2>:                     chapter.            (line 1796)
+* bidule machin <1>:                     chapter.            (line  985)
+* bidule machin <2>:                     chapter.            (line 1794)
 * d--effn_name:                          chapter.            (line  295)
-* d--effn_name <1>:                      chapter.            (line  970)
-* d--effn_name <2>:                      chapter.            (line 1780)
+* d--effn_name <1>:                      chapter.            (line  969)
+* d--effn_name <2>:                      chapter.            (line 1778)
 * d--efmac_name:                         chapter.            (line  376)
-* d--efmac_name <1>:                     chapter.            (line 1051)
-* d--efmac_name <2>:                     chapter.            (line 1863)
+* d--efmac_name <1>:                     chapter.            (line 1050)
+* d--efmac_name <2>:                     chapter.            (line 1861)
 * d--efmethod_name on c--lass:           chapter.            (line  403)
-* d--efmethod_name on c--lass <1>:       chapter.            (line 1078)
-* d--efmethod_name on c--lass <2>:       chapter.            (line 1890)
+* d--efmethod_name on c--lass <1>:       chapter.            (line 1077)
+* d--efmethod_name on c--lass <2>:       chapter.            (line 1888)
 * d--efop_name on c--lass:               chapter.            (line  364)
 * d--efop_name on c--lass <1>:           chapter.            (line  367)
-* d--efop_name on c--lass <2>:           chapter.            (line 1039)
-* d--efop_name on c--lass <3>:           chapter.            (line 1042)
-* d--efop_name on c--lass <4>:           chapter.            (line 1851)
-* d--efop_name on c--lass <5>:           chapter.            (line 1854)
+* d--efop_name on c--lass <2>:           chapter.            (line 1038)
+* d--efop_name on c--lass <3>:           chapter.            (line 1041)
+* d--efop_name on c--lass <4>:           chapter.            (line 1849)
+* d--efop_name on c--lass <5>:           chapter.            (line 1852)
 * d--efspec_name:                        chapter.            (line  379)
-* d--efspec_name <1>:                    chapter.            (line 1054)
-* d--efspec_name <2>:                    chapter.            (line 1866)
+* d--efspec_name <1>:                    chapter.            (line 1053)
+* d--efspec_name <2>:                    chapter.            (line 1864)
 * d--eftypefn_name:                      chapter.            (line  337)
 * d--eftypefn_name <1>:                  chapter.            (line  340)
-* d--eftypefn_name <2>:                  chapter.            (line 1012)
-* d--eftypefn_name <3>:                  chapter.            (line 1015)
-* d--eftypefn_name <4>:                  chapter.            (line 1824)
-* d--eftypefn_name <5>:                  chapter.            (line 1827)
+* d--eftypefn_name <2>:                  chapter.            (line 1011)
+* d--eftypefn_name <3>:                  chapter.            (line 1014)
+* d--eftypefn_name <4>:                  chapter.            (line 1822)
+* d--eftypefn_name <5>:                  chapter.            (line 1825)
 * d--eftypefn_name2:                     chapter.            (line  414)
-* d--eftypefn_name2 <1>:                 chapter.            (line 1089)
-* d--eftypefn_name2 <2>:                 chapter.            (line 1902)
+* d--eftypefn_name2 <1>:                 chapter.            (line 1088)
+* d--eftypefn_name2 <2>:                 chapter.            (line 1900)
 * d--eftypefun_name:                     chapter.            (line  391)
-* d--eftypefun_name <1>:                 chapter.            (line 1066)
-* d--eftypefun_name <2>:                 chapter.            (line 1878)
+* d--eftypefun_name <1>:                 chapter.            (line 1065)
+* d--eftypefun_name <2>:                 chapter.            (line 1876)
 * d--eftypemethod_name on c--lass:       chapter.            (line  406)
-* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1081)
-* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1893)
+* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1080)
+* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1891)
 * d--eftypeop_name on c--lass:           chapter.            (line  343)
 * d--eftypeop_name on c--lass <1>:       chapter.            (line  346)
-* d--eftypeop_name on c--lass <2>:       chapter.            (line 1018)
-* d--eftypeop_name on c--lass <3>:       chapter.            (line 1021)
-* d--eftypeop_name on c--lass <4>:       chapter.            (line 1830)
-* d--eftypeop_name on c--lass <5>:       chapter.            (line 1833)
+* d--eftypeop_name on c--lass <2>:       chapter.            (line 1017)
+* d--eftypeop_name on c--lass <3>:       chapter.            (line 1020)
+* d--eftypeop_name on c--lass <4>:       chapter.            (line 1828)
+* d--eftypeop_name on c--lass <5>:       chapter.            (line 1831)
 * d--eftypeop_name2 on c--lass2:         chapter.            (line  419)
 * d--eftypeop_name2 on c--lass2 <1>:     chapter.            (line  424)
-* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1094)
-* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1099)
-* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1907)
-* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1912)
+* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1093)
+* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1098)
+* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1905)
+* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1910)
 * d--efun_name:                          chapter.            (line  373)
-* d--efun_name <1>:                      chapter.            (line 1048)
-* d--efun_name <2>:                      chapter.            (line 1860)
+* d--efun_name <1>:                      chapter.            (line 1047)
+* d--efun_name <2>:                      chapter.            (line 1858)
 * de--ffn_name:                          chapter.            (line  298)
-* de--ffn_name <1>:                      chapter.            (line  973)
-* de--ffn_name <2>:                      chapter.            (line 1783)
+* de--ffn_name <1>:                      chapter.            (line  972)
+* de--ffn_name <2>:                      chapter.            (line 1781)
 * deffn:                                 chapter.            (line  319)
 * deffn <1>:                             chapter.            (line  321)
-* deffn <2>:                             chapter.            (line  994)
-* deffn <3>:                             chapter.            (line  996)
-* deffn <4>:                             chapter.            (line 1805)
-* deffn <5>:                             chapter.            (line 1807)
+* deffn <2>:                             chapter.            (line  993)
+* deffn <3>:                             chapter.            (line  995)
+* deffn <4>:                             chapter.            (line 1803)
+* deffn <5>:                             chapter.            (line 1805)
 * deffnx:                                chapter.            (line  317)
 * deffnx <1>:                            chapter.            (line  322)
-* deffnx <2>:                            chapter.            (line  992)
-* deffnx <3>:                            chapter.            (line  997)
-* deffnx <4>:                            chapter.            (line 1802)
-* deffnx <5>:                            chapter.            (line 1808)
-* f---aa:                                chapter.            (line 2217)
-* f---bb, f---cc:                        chapter.            (line 2217)
-* f---ddd, f---eee, ffff:                chapter.            (line 2217)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2217)
+* deffnx <2>:                            chapter.            (line  991)
+* deffnx <3>:                            chapter.            (line  996)
+* deffnx <4>:                            chapter.            (line 1800)
+* deffnx <5>:                            chapter.            (line 1806)
+* f---aa:                                chapter.            (line 2214)
+* f---bb, f---cc:                        chapter.            (line 2214)
+* f---ddd, f---eee, ffff:                chapter.            (line 2214)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2214)
 * followed:                              chapter.            (line  314)
-* followed <1>:                          chapter.            (line  646)
-* followed <2>:                          chapter.            (line  989)
-* followed <3>:                          chapter.            (line 1321)
-* followed <4>:                          chapter.            (line 1799)
-* followed <5>:                          chapter.            (line 2166)
+* followed <1>:                          chapter.            (line  645)
+* followed <2>:                          chapter.            (line  988)
+* followed <3>:                          chapter.            (line 1319)
+* followed <4>:                          chapter.            (line 1797)
+* followed <5>:                          chapter.            (line 2163)
 * I:                                     chapter.            (line  302)
 * I <1>:                                 chapter.            (line  324)
-* I <2>:                                 chapter.            (line  977)
-* I <3>:                                 chapter.            (line  999)
-* I <4>:                                 chapter.            (line 1787)
-* I <5>:                                 chapter.            (line 1810)
+* I <2>:                                 chapter.            (line  976)
+* I <3>:                                 chapter.            (line  998)
+* I <4>:                                 chapter.            (line 1785)
+* I <5>:                                 chapter.            (line 1808)
 * id i ule:                              chapter.            (line  308)
-* id i ule <1>:                          chapter.            (line  983)
-* id i ule <2>:                          chapter.            (line 1793)
+* id i ule <1>:                          chapter.            (line  982)
+* id i ule <2>:                          chapter.            (line 1791)
 * id ule:                                chapter.            (line  307)
-* id ule <1>:                            chapter.            (line  982)
-* id ule <2>:                            chapter.            (line 1792)
-* INVALID:                               chapter.            (line  650)
-* INVALID <1>:                           chapter.            (line 1325)
-* INVALID <2>:                           chapter.            (line 2170)
+* id ule <1>:                            chapter.            (line  981)
+* id ule <2>:                            chapter.            (line 1790)
+* INVALID:                               chapter.            (line  649)
+* INVALID <1>:                           chapter.            (line 1323)
+* INVALID <2>:                           chapter.            (line 2167)
 * log trap:                              chapter.            (line  304)
-* log trap <1>:                          chapter.            (line  979)
-* log trap <2>:                          chapter.            (line 1789)
+* log trap <1>:                          chapter.            (line  978)
+* log trap <2>:                          chapter.            (line 1787)
 * log trap1:                             chapter.            (line  305)
-* log trap1 <1>:                         chapter.            (line  980)
-* log trap1 <2>:                         chapter.            (line 1790)
+* log trap1 <1>:                         chapter.            (line  979)
+* log trap1 <2>:                         chapter.            (line 1788)
 * log trap2:                             chapter.            (line  306)
-* log trap2 <1>:                         chapter.            (line  981)
-* log trap2 <2>:                         chapter.            (line 1791)
+* log trap2 <1>:                         chapter.            (line  980)
+* log trap2 <2>:                         chapter.            (line 1789)
 * machin:                                chapter.            (line  310)
 * machin <1>:                            chapter.            (line  312)
-* machin <2>:                            chapter.            (line  642)
-* machin <3>:                            chapter.            (line  643)
-* machin <4>:                            chapter.            (line  644)
-* machin <5>:                            chapter.            (line  645)
-* machin <6>:                            chapter.            (line  985)
-* machin <7>:                            chapter.            (line  987)
-* machin <8>:                            chapter.            (line 1317)
-* machin <9>:                            chapter.            (line 1318)
-* machin <10>:                           chapter.            (line 1319)
-* machin <11>:                           chapter.            (line 1320)
-* machin <12>:                           chapter.            (line 1795)
-* machin <13>:                           chapter.            (line 1797)
-* machin <14>:                           chapter.            (line 2162)
-* machin <15>:                           chapter.            (line 2163)
-* machin <16>:                           chapter.            (line 2164)
-* machin <17>:                           chapter.            (line 2165)
+* machin <2>:                            chapter.            (line  641)
+* machin <3>:                            chapter.            (line  642)
+* machin <4>:                            chapter.            (line  643)
+* machin <5>:                            chapter.            (line  644)
+* machin <6>:                            chapter.            (line  984)
+* machin <7>:                            chapter.            (line  986)
+* machin <8>:                            chapter.            (line 1315)
+* machin <9>:                            chapter.            (line 1316)
+* machin <10>:                           chapter.            (line 1317)
+* machin <11>:                           chapter.            (line 1318)
+* machin <12>:                           chapter.            (line 1793)
+* machin <13>:                           chapter.            (line 1795)
+* machin <14>:                           chapter.            (line 2159)
+* machin <15>:                           chapter.            (line 2160)
+* machin <16>:                           chapter.            (line 2161)
+* machin <17>:                           chapter.            (line 2162)
 * n--ame:                                chapter.            (line  331)
 * n--ame <1>:                            chapter.            (line  334)
-* n--ame <2>:                            chapter.            (line 1006)
-* n--ame <3>:                            chapter.            (line 1009)
-* n--ame <4>:                            chapter.            (line 1818)
-* n--ame <5>:                            chapter.            (line 1821)
+* n--ame <2>:                            chapter.            (line 1005)
+* n--ame <3>:                            chapter.            (line 1008)
+* n--ame <4>:                            chapter.            (line 1816)
+* n--ame <5>:                            chapter.            (line 1819)
 * name2:                                 chapter.            (line  409)
-* name2 <1>:                             chapter.            (line 1084)
-* name2 <2>:                             chapter.            (line 1897)
-* t--ruc:                                chapter.            (line 2217)
-* T--ruc:                                chapter.            (line 2217)
+* name2 <1>:                             chapter.            (line 1083)
+* name2 <2>:                             chapter.            (line 1895)
+* t--ruc:                                chapter.            (line 2214)
+* T--ruc:                                chapter.            (line 2214)
 * truc:                                  chapter.            (line  303)
 * truc <1>:                              chapter.            (line  325)
-* truc <2>:                              chapter.            (line  978)
-* truc <3>:                              chapter.            (line 1000)
-* truc <4>:                              chapter.            (line 1788)
-* truc <5>:                              chapter.            (line 1811)
-* xxx, zzz:                              chapter.            (line 2217)
+* truc <2>:                              chapter.            (line  977)
+* truc <3>:                              chapter.            (line  999)
+* truc <4>:                              chapter.            (line 1786)
+* truc <5>:                              chapter.            (line 1809)
+* xxx, zzz:                              chapter.            (line 2214)
 
 
 
 Tag Table:
-Node: Top19055
-Node: chapter19240
-Ref: chapter-Footnote-199145
-Ref: chapter-Footnote-299165
-Ref: chapter-Footnote-399186
-Ref: chapter-Footnote-499206
-Ref: chapter-Footnote-599227
-Ref: chapter-Footnote-699247
-Ref: chapter-Footnote-799268
-Ref: chapter-Footnote-899306
-Node: s--ect,ion99326
-Node: subsection99529
-Ref: anchor99710
-Node: subsubsection ``simple-double--99710
-Node: subsubsection three---four----''99910
-Node: chapter2100082
+Node: Top19058
+Node: chapter19243
+Ref: chapter-Footnote-199159
+Ref: chapter-Footnote-299179
+Ref: chapter-Footnote-399200
+Ref: chapter-Footnote-499220
+Ref: chapter-Footnote-599241
+Ref: chapter-Footnote-699261
+Ref: chapter-Footnote-799282
+Ref: chapter-Footnote-899320
+Node: s--ect,ion99340
+Node: subsection99543
+Ref: anchor99724
+Node: subsubsection ``simple-double--99724
+Node: subsubsection three---four----''99924
+Node: chapter2100096
 
 End Tag Table
 
diff --git a/tp/tests/layout/res_parser/formatting_plaintext/formatting.txt 
b/tp/tests/layout/res_parser/formatting_plaintext/formatting.txt
index 3ea235cb80..23661f900e 100644
--- a/tp/tests/layout/res_parser/formatting_plaintext/formatting.txt
+++ b/tp/tests/layout/res_parser/formatting_plaintext/formatting.txt
@@ -528,7 +528,7 @@ _b_
    c-artouche
 
                             Tit-le _of box_
-With title c-artouche
+   With title c-artouche
 
 f-lushleft
 more text
@@ -1209,7 +1209,7 @@ _b_
    c-artouche
 
                             Tit-le _of box_
-With title c-artouche
+   With title c-artouche
 
 f-lushleft
 more text
@@ -2028,7 +2028,7 @@ cross ref name: (file name). '@inforef{}' *note ::
      c--artouche
 
                             Tit-le _of box_
-     With title c--artouche
+          With title c--artouche
 
      f--lushleft
      more text
@@ -2240,300 +2240,300 @@ aaa
 
 * Menu:
 
-* truc:                                  chapter.            (line 2239)
+* truc:                                  chapter.            (line 2236)
 
    codeidx
 
 * Menu:
 
-* a INDEX---ENTRY tẽ --- î:              chapter.            (line 2239)
+* a INDEX---ENTRY tẽ --- î:              chapter.            (line 2236)
 
    cp
 
 * Menu:
 
 * ":                                     chapter.            (line   28)
-* " <1>:                                 chapter.            (line  710)
-* " <2>:                                 chapter.            (line 1403)
+* " <1>:                                 chapter.            (line  709)
+* " <2>:                                 chapter.            (line 1401)
 * -option:                               chapter.            (line   28)
-* -option <1>:                           chapter.            (line  710)
-* -option <2>:                           chapter.            (line 1403)
-* .:                                     chapter.            (line 2239)
-* ?:                                     chapter.            (line 2239)
-* a:                                     chapter.            (line 2239)
-* aaa, bbb:                              chapter.            (line 2239)
-* a--a:                                  chapter.            (line 2239)
+* -option <1>:                           chapter.            (line  709)
+* -option <2>:                           chapter.            (line 1401)
+* .:                                     chapter.            (line 2236)
+* ?:                                     chapter.            (line 2236)
+* a:                                     chapter.            (line 2236)
+* aaa, bbb:                              chapter.            (line 2236)
+* a--a:                                  chapter.            (line 2236)
 * a--asis:                               chapter.            (line  510)
-* a--asis <1>:                           chapter.            (line 1192)
-* a--asis <2>:                           chapter.            (line 2012)
+* a--asis <1>:                           chapter.            (line 1191)
+* a--asis <2>:                           chapter.            (line 2010)
 * b:                                     chapter.            (line  511)
-* b <1>:                                 chapter.            (line 1193)
-* b <2>:                                 chapter.            (line 2013)
-* b--b, c--c:                            chapter.            (line 2239)
+* b <1>:                                 chapter.            (line 1192)
+* b <2>:                                 chapter.            (line 2011)
+* b--b, c--c:                            chapter.            (line 2236)
 * counting entry:                        chapter.            (line    0)
-* d--dd, e--ee, f--ff:                   chapter.            (line 2239)
+* d--dd, e--ee, f--ff:                   chapter.            (line 2236)
 * d--efcv_name:                          chapter.            (line  351)
 * d--efcv_name <1>:                      chapter.            (line  354)
-* d--efcv_name <2>:                      chapter.            (line 1033)
-* d--efcv_name <3>:                      chapter.            (line 1036)
-* d--efcv_name <4>:                      chapter.            (line 1853)
-* d--efcv_name <5>:                      chapter.            (line 1856)
+* d--efcv_name <2>:                      chapter.            (line 1032)
+* d--efcv_name <3>:                      chapter.            (line 1035)
+* d--efcv_name <4>:                      chapter.            (line 1851)
+* d--efcv_name <5>:                      chapter.            (line 1854)
 * d--efivar_name of c--lass:             chapter.            (line  396)
-* d--efivar_name of c--lass <1>:         chapter.            (line 1078)
-* d--efivar_name of c--lass <2>:         chapter.            (line 1898)
+* d--efivar_name of c--lass <1>:         chapter.            (line 1077)
+* d--efivar_name of c--lass <2>:         chapter.            (line 1896)
 * d--efopt_name:                         chapter.            (line  387)
-* d--efopt_name <1>:                     chapter.            (line 1069)
-* d--efopt_name <2>:                     chapter.            (line 1889)
+* d--efopt_name <1>:                     chapter.            (line 1068)
+* d--efopt_name <2>:                     chapter.            (line 1887)
 * d--eftypecv_name of c--lass:           chapter.            (line  357)
 * d--eftypecv_name of c--lass <1>:       chapter.            (line  360)
-* d--eftypecv_name of c--lass <2>:       chapter.            (line 1039)
-* d--eftypecv_name of c--lass <3>:       chapter.            (line 1042)
-* d--eftypecv_name of c--lass <4>:       chapter.            (line 1859)
-* d--eftypecv_name of c--lass <5>:       chapter.            (line 1862)
+* d--eftypecv_name of c--lass <2>:       chapter.            (line 1038)
+* d--eftypecv_name of c--lass <3>:       chapter.            (line 1041)
+* d--eftypecv_name of c--lass <4>:       chapter.            (line 1857)
+* d--eftypecv_name of c--lass <5>:       chapter.            (line 1860)
 * d--eftypecv_name2 of c--lass2:         chapter.            (line  428)
 * d--eftypecv_name2 of c--lass2 <1>:     chapter.            (line  431)
-* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1110)
-* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1113)
-* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1931)
-* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1934)
+* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1109)
+* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1112)
+* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1929)
+* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1932)
 * d--eftypeivar_name of c--lass:         chapter.            (line  399)
-* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1081)
-* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1901)
+* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1080)
+* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1899)
 * d--eftypevar_name:                     chapter.            (line  393)
-* d--eftypevar_name <1>:                 chapter.            (line 1075)
-* d--eftypevar_name <2>:                 chapter.            (line 1895)
+* d--eftypevar_name <1>:                 chapter.            (line 1074)
+* d--eftypevar_name <2>:                 chapter.            (line 1893)
 * d--eftypevr_name:                      chapter.            (line  348)
-* d--eftypevr_name <1>:                  chapter.            (line 1030)
-* d--eftypevr_name <2>:                  chapter.            (line 1850)
+* d--eftypevr_name <1>:                  chapter.            (line 1029)
+* d--eftypevr_name <2>:                  chapter.            (line 1848)
 * d--efvar_name:                         chapter.            (line  381)
 * d--efvar_name <1>:                     chapter.            (line  384)
-* d--efvar_name <2>:                     chapter.            (line 1063)
-* d--efvar_name <3>:                     chapter.            (line 1066)
-* d--efvar_name <4>:                     chapter.            (line 1883)
-* d--efvar_name <5>:                     chapter.            (line 1886)
+* d--efvar_name <2>:                     chapter.            (line 1062)
+* d--efvar_name <3>:                     chapter.            (line 1065)
+* d--efvar_name <4>:                     chapter.            (line 1881)
+* d--efvar_name <5>:                     chapter.            (line 1884)
 * d--efvr_name:                          chapter.            (line  327)
-* d--efvr_name <1>:                      chapter.            (line 1009)
-* d--efvr_name <2>:                      chapter.            (line 1829)
-* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2239)
+* d--efvr_name <1>:                      chapter.            (line 1008)
+* d--efvr_name <2>:                      chapter.            (line 1827)
+* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2236)
 * index entry between item and itemx:    chapter.            (line  515)
-* index entry between item and itemx <1>: chapter.           (line  645)
-* index entry between item and itemx <2>: chapter.           (line 1197)
-* index entry between item and itemx <3>: chapter.           (line 1327)
-* index entry between item and itemx <4>: chapter.           (line 2017)
-* index entry between item and itemx <5>: chapter.           (line 2180)
+* index entry between item and itemx <1>: chapter.           (line  644)
+* index entry between item and itemx <2>: chapter.           (line 1196)
+* index entry between item and itemx <3>: chapter.           (line 1325)
+* index entry between item and itemx <4>: chapter.           (line 2015)
+* index entry between item and itemx <5>: chapter.           (line 2177)
 * index entry in footnote:               chapter.            (line    0)
 * index entry within deffn:              chapter.            (line  302)
-* index entry within deffn <1>:          chapter.            (line  984)
-* index entry within deffn <2>:          chapter.            (line 1802)
+* index entry within deffn <1>:          chapter.            (line  983)
+* index entry within deffn <2>:          chapter.            (line 1800)
 * index entry within itemize:            chapter.            (line  213)
-* index entry within itemize <1>:        chapter.            (line  895)
-* index entry within itemize <2>:        chapter.            (line 1713)
+* index entry within itemize <1>:        chapter.            (line  894)
+* index entry within itemize <2>:        chapter.            (line 1711)
 * index entry within multitable:         chapter.            (line  235)
-* index entry within multitable <1>:     chapter.            (line  917)
-* index entry within multitable <2>:     chapter.            (line 1736)
-* t-ruc:                                 chapter.            (line 2239)
-* T-ruc:                                 chapter.            (line 2239)
+* index entry within multitable <1>:     chapter.            (line  916)
+* index entry within multitable <2>:     chapter.            (line 1734)
+* t-ruc:                                 chapter.            (line 2236)
+* T-ruc:                                 chapter.            (line 2236)
 * vtable i--tem code kbdinputstyle:      chapter.            (line  137)
-* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  819)
-* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1636)
+* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  818)
+* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1634)
 * vtable i--tem default kbdinputstyle:   chapter.            (line  132)
-* vtable i--tem default kbdinputstyle <1>: chapter.          (line  814)
-* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1631)
+* vtable i--tem default kbdinputstyle <1>: chapter.          (line  813)
+* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1629)
 * vtable i--tem distinct kbdinputstyle:  chapter.            (line  147)
-* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  829)
-* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1646)
+* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  828)
+* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1644)
 * vtable i--tem example kbdinputstyle:   chapter.            (line  142)
-* vtable i--tem example kbdinputstyle <1>: chapter.          (line  824)
-* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1641)
+* vtable i--tem example kbdinputstyle <1>: chapter.          (line  823)
+* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1639)
 * vtable i--tem in example code kbdinputstyle: chapter.      (line  139)
-* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  821)
-* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1638)
+* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  820)
+* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1636)
 * vtable i--tem in example default kbdinputstyle: chapter.   (line  134)
 * vtable i--tem in example default kbdinputstyle <1>: chapter.
-                                                             (line  816)
+                                                             (line  815)
 * vtable i--tem in example default kbdinputstyle <2>: chapter.
-                                                             (line 1633)
+                                                             (line 1631)
 * vtable i--tem in example distinct kbdinputstyle: chapter.  (line  149)
 * vtable i--tem in example distinct kbdinputstyle <1>: chapter.
-                                                             (line  831)
+                                                             (line  830)
 * vtable i--tem in example distinct kbdinputstyle <2>: chapter.
-                                                             (line 1648)
+                                                             (line 1646)
 * vtable i--tem in example example kbdinputstyle: chapter.   (line  144)
 * vtable i--tem in example example kbdinputstyle <1>: chapter.
-                                                             (line  826)
+                                                             (line  825)
 * vtable i--tem in example example kbdinputstyle <2>: chapter.
-                                                             (line 1643)
+                                                             (line 1641)
 
    fn
 
 * Menu:
 
 * --foption:                             chapter.            (line   28)
-* --foption <1>:                         chapter.            (line  710)
-* --foption <2>:                         chapter.            (line 1403)
-* .:                                     chapter.            (line 2239)
-* ?:                                     chapter.            (line 2239)
+* --foption <1>:                         chapter.            (line  709)
+* --foption <2>:                         chapter.            (line 1401)
+* .:                                     chapter.            (line 2236)
+* ?:                                     chapter.            (line 2236)
 * ``:                                    chapter.            (line   28)
-* `` <1>:                                chapter.            (line  710)
-* `` <2>:                                chapter.            (line 1403)
+* `` <1>:                                chapter.            (line  709)
+* `` <2>:                                chapter.            (line 1401)
 * a:                                     chapter.            (line  315)
 * a <1>:                                 chapter.            (line  514)
-* a <2>:                                 chapter.            (line  644)
-* a <3>:                                 chapter.            (line  997)
-* a <4>:                                 chapter.            (line 1196)
-* a <5>:                                 chapter.            (line 1326)
-* a <6>:                                 chapter.            (line 1815)
-* a <7>:                                 chapter.            (line 2016)
-* a <8>:                                 chapter.            (line 2179)
-* a <9>:                                 chapter.            (line 2239)
-* after:                                 chapter.            (line  655)
-* after <1>:                             chapter.            (line 1337)
-* after <2>:                             chapter.            (line 2190)
+* a <2>:                                 chapter.            (line  643)
+* a <3>:                                 chapter.            (line  996)
+* a <4>:                                 chapter.            (line 1195)
+* a <5>:                                 chapter.            (line 1324)
+* a <6>:                                 chapter.            (line 1813)
+* a <7>:                                 chapter.            (line 2014)
+* a <8>:                                 chapter.            (line 2176)
+* a <9>:                                 chapter.            (line 2236)
+* after:                                 chapter.            (line  654)
+* after <1>:                             chapter.            (line 1335)
+* after <2>:                             chapter.            (line 2187)
 * arg2:                                  chapter.            (line  434)
-* arg2 <1>:                              chapter.            (line 1116)
-* arg2 <2>:                              chapter.            (line 1938)
+* arg2 <1>:                              chapter.            (line 1115)
+* arg2 <2>:                              chapter.            (line 1936)
 * b:                                     chapter.            (line  515)
-* b <1>:                                 chapter.            (line  645)
-* b <2>:                                 chapter.            (line 1197)
-* b <3>:                                 chapter.            (line 1327)
-* b <4>:                                 chapter.            (line 2017)
-* b <5>:                                 chapter.            (line 2180)
+* b <1>:                                 chapter.            (line  644)
+* b <2>:                                 chapter.            (line 1196)
+* b <3>:                                 chapter.            (line 1325)
+* b <4>:                                 chapter.            (line 2015)
+* b <5>:                                 chapter.            (line 2177)
 * bidule machin:                         chapter.            (line  310)
-* bidule machin <1>:                     chapter.            (line  992)
-* bidule machin <2>:                     chapter.            (line 1810)
+* bidule machin <1>:                     chapter.            (line  991)
+* bidule machin <2>:                     chapter.            (line 1808)
 * d--effn_name:                          chapter.            (line  294)
-* d--effn_name <1>:                      chapter.            (line  976)
-* d--effn_name <2>:                      chapter.            (line 1794)
+* d--effn_name <1>:                      chapter.            (line  975)
+* d--effn_name <2>:                      chapter.            (line 1792)
 * d--efmac_name:                         chapter.            (line  375)
-* d--efmac_name <1>:                     chapter.            (line 1057)
-* d--efmac_name <2>:                     chapter.            (line 1877)
+* d--efmac_name <1>:                     chapter.            (line 1056)
+* d--efmac_name <2>:                     chapter.            (line 1875)
 * d--efmethod_name on c--lass:           chapter.            (line  402)
-* d--efmethod_name on c--lass <1>:       chapter.            (line 1084)
-* d--efmethod_name on c--lass <2>:       chapter.            (line 1904)
+* d--efmethod_name on c--lass <1>:       chapter.            (line 1083)
+* d--efmethod_name on c--lass <2>:       chapter.            (line 1902)
 * d--efop_name on c--lass:               chapter.            (line  363)
 * d--efop_name on c--lass <1>:           chapter.            (line  366)
-* d--efop_name on c--lass <2>:           chapter.            (line 1045)
-* d--efop_name on c--lass <3>:           chapter.            (line 1048)
-* d--efop_name on c--lass <4>:           chapter.            (line 1865)
-* d--efop_name on c--lass <5>:           chapter.            (line 1868)
+* d--efop_name on c--lass <2>:           chapter.            (line 1044)
+* d--efop_name on c--lass <3>:           chapter.            (line 1047)
+* d--efop_name on c--lass <4>:           chapter.            (line 1863)
+* d--efop_name on c--lass <5>:           chapter.            (line 1866)
 * d--efspec_name:                        chapter.            (line  378)
-* d--efspec_name <1>:                    chapter.            (line 1060)
-* d--efspec_name <2>:                    chapter.            (line 1880)
+* d--efspec_name <1>:                    chapter.            (line 1059)
+* d--efspec_name <2>:                    chapter.            (line 1878)
 * d--eftypefn_name:                      chapter.            (line  336)
 * d--eftypefn_name <1>:                  chapter.            (line  339)
-* d--eftypefn_name <2>:                  chapter.            (line 1018)
-* d--eftypefn_name <3>:                  chapter.            (line 1021)
-* d--eftypefn_name <4>:                  chapter.            (line 1838)
-* d--eftypefn_name <5>:                  chapter.            (line 1841)
+* d--eftypefn_name <2>:                  chapter.            (line 1017)
+* d--eftypefn_name <3>:                  chapter.            (line 1020)
+* d--eftypefn_name <4>:                  chapter.            (line 1836)
+* d--eftypefn_name <5>:                  chapter.            (line 1839)
 * d--eftypefn_name2:                     chapter.            (line  413)
-* d--eftypefn_name2 <1>:                 chapter.            (line 1095)
-* d--eftypefn_name2 <2>:                 chapter.            (line 1916)
+* d--eftypefn_name2 <1>:                 chapter.            (line 1094)
+* d--eftypefn_name2 <2>:                 chapter.            (line 1914)
 * d--eftypefun_name:                     chapter.            (line  390)
-* d--eftypefun_name <1>:                 chapter.            (line 1072)
-* d--eftypefun_name <2>:                 chapter.            (line 1892)
+* d--eftypefun_name <1>:                 chapter.            (line 1071)
+* d--eftypefun_name <2>:                 chapter.            (line 1890)
 * d--eftypemethod_name on c--lass:       chapter.            (line  405)
-* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1087)
-* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1907)
+* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1086)
+* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1905)
 * d--eftypeop_name on c--lass:           chapter.            (line  342)
 * d--eftypeop_name on c--lass <1>:       chapter.            (line  345)
-* d--eftypeop_name on c--lass <2>:       chapter.            (line 1024)
-* d--eftypeop_name on c--lass <3>:       chapter.            (line 1027)
-* d--eftypeop_name on c--lass <4>:       chapter.            (line 1844)
-* d--eftypeop_name on c--lass <5>:       chapter.            (line 1847)
+* d--eftypeop_name on c--lass <2>:       chapter.            (line 1023)
+* d--eftypeop_name on c--lass <3>:       chapter.            (line 1026)
+* d--eftypeop_name on c--lass <4>:       chapter.            (line 1842)
+* d--eftypeop_name on c--lass <5>:       chapter.            (line 1845)
 * d--eftypeop_name2 on c--lass2:         chapter.            (line  418)
 * d--eftypeop_name2 on c--lass2 <1>:     chapter.            (line  423)
-* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1100)
-* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1105)
-* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1921)
-* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1926)
+* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1099)
+* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1104)
+* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1919)
+* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1924)
 * d--efun_name:                          chapter.            (line  372)
-* d--efun_name <1>:                      chapter.            (line 1054)
-* d--efun_name <2>:                      chapter.            (line 1874)
+* d--efun_name <1>:                      chapter.            (line 1053)
+* d--efun_name <2>:                      chapter.            (line 1872)
 * de--ffn_name:                          chapter.            (line  297)
-* de--ffn_name <1>:                      chapter.            (line  979)
-* de--ffn_name <2>:                      chapter.            (line 1797)
+* de--ffn_name <1>:                      chapter.            (line  978)
+* de--ffn_name <2>:                      chapter.            (line 1795)
 * deffn:                                 chapter.            (line  318)
 * deffn <1>:                             chapter.            (line  320)
-* deffn <2>:                             chapter.            (line 1000)
-* deffn <3>:                             chapter.            (line 1002)
-* deffn <4>:                             chapter.            (line 1819)
-* deffn <5>:                             chapter.            (line 1821)
+* deffn <2>:                             chapter.            (line  999)
+* deffn <3>:                             chapter.            (line 1001)
+* deffn <4>:                             chapter.            (line 1817)
+* deffn <5>:                             chapter.            (line 1819)
 * deffnx:                                chapter.            (line  316)
 * deffnx <1>:                            chapter.            (line  321)
-* deffnx <2>:                            chapter.            (line  998)
-* deffnx <3>:                            chapter.            (line 1003)
-* deffnx <4>:                            chapter.            (line 1816)
-* deffnx <5>:                            chapter.            (line 1822)
-* f---aa:                                chapter.            (line 2239)
-* f---bb, f---cc:                        chapter.            (line 2239)
-* f---ddd, f---eee, ffff:                chapter.            (line 2239)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2239)
+* deffnx <2>:                            chapter.            (line  997)
+* deffnx <3>:                            chapter.            (line 1002)
+* deffnx <4>:                            chapter.            (line 1814)
+* deffnx <5>:                            chapter.            (line 1820)
+* f---aa:                                chapter.            (line 2236)
+* f---bb, f---cc:                        chapter.            (line 2236)
+* f---ddd, f---eee, ffff:                chapter.            (line 2236)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2236)
 * followed:                              chapter.            (line  313)
-* followed <1>:                          chapter.            (line  653)
-* followed <2>:                          chapter.            (line  995)
-* followed <3>:                          chapter.            (line 1335)
-* followed <4>:                          chapter.            (line 1813)
-* followed <5>:                          chapter.            (line 2188)
+* followed <1>:                          chapter.            (line  652)
+* followed <2>:                          chapter.            (line  994)
+* followed <3>:                          chapter.            (line 1333)
+* followed <4>:                          chapter.            (line 1811)
+* followed <5>:                          chapter.            (line 2185)
 * I:                                     chapter.            (line  301)
 * I <1>:                                 chapter.            (line  323)
-* I <2>:                                 chapter.            (line  983)
-* I <3>:                                 chapter.            (line 1005)
-* I <4>:                                 chapter.            (line 1801)
-* I <5>:                                 chapter.            (line 1824)
+* I <2>:                                 chapter.            (line  982)
+* I <3>:                                 chapter.            (line 1004)
+* I <4>:                                 chapter.            (line 1799)
+* I <5>:                                 chapter.            (line 1822)
 * id i ule:                              chapter.            (line  307)
-* id i ule <1>:                          chapter.            (line  989)
-* id i ule <2>:                          chapter.            (line 1807)
+* id i ule <1>:                          chapter.            (line  988)
+* id i ule <2>:                          chapter.            (line 1805)
 * id ule:                                chapter.            (line  306)
-* id ule <1>:                            chapter.            (line  988)
-* id ule <2>:                            chapter.            (line 1806)
-* INVALID:                               chapter.            (line  657)
-* INVALID <1>:                           chapter.            (line 1339)
-* INVALID <2>:                           chapter.            (line 2192)
+* id ule <1>:                            chapter.            (line  987)
+* id ule <2>:                            chapter.            (line 1804)
+* INVALID:                               chapter.            (line  656)
+* INVALID <1>:                           chapter.            (line 1337)
+* INVALID <2>:                           chapter.            (line 2189)
 * log trap:                              chapter.            (line  303)
-* log trap <1>:                          chapter.            (line  985)
-* log trap <2>:                          chapter.            (line 1803)
+* log trap <1>:                          chapter.            (line  984)
+* log trap <2>:                          chapter.            (line 1801)
 * log trap1:                             chapter.            (line  304)
-* log trap1 <1>:                         chapter.            (line  986)
-* log trap1 <2>:                         chapter.            (line 1804)
+* log trap1 <1>:                         chapter.            (line  985)
+* log trap1 <2>:                         chapter.            (line 1802)
 * log trap2:                             chapter.            (line  305)
-* log trap2 <1>:                         chapter.            (line  987)
-* log trap2 <2>:                         chapter.            (line 1805)
+* log trap2 <1>:                         chapter.            (line  986)
+* log trap2 <2>:                         chapter.            (line 1803)
 * machin:                                chapter.            (line  309)
 * machin <1>:                            chapter.            (line  311)
-* machin <2>:                            chapter.            (line  649)
-* machin <3>:                            chapter.            (line  650)
-* machin <4>:                            chapter.            (line  651)
-* machin <5>:                            chapter.            (line  652)
-* machin <6>:                            chapter.            (line  991)
-* machin <7>:                            chapter.            (line  993)
-* machin <8>:                            chapter.            (line 1331)
-* machin <9>:                            chapter.            (line 1332)
-* machin <10>:                           chapter.            (line 1333)
-* machin <11>:                           chapter.            (line 1334)
-* machin <12>:                           chapter.            (line 1809)
-* machin <13>:                           chapter.            (line 1811)
-* machin <14>:                           chapter.            (line 2184)
-* machin <15>:                           chapter.            (line 2185)
-* machin <16>:                           chapter.            (line 2186)
-* machin <17>:                           chapter.            (line 2187)
+* machin <2>:                            chapter.            (line  648)
+* machin <3>:                            chapter.            (line  649)
+* machin <4>:                            chapter.            (line  650)
+* machin <5>:                            chapter.            (line  651)
+* machin <6>:                            chapter.            (line  990)
+* machin <7>:                            chapter.            (line  992)
+* machin <8>:                            chapter.            (line 1329)
+* machin <9>:                            chapter.            (line 1330)
+* machin <10>:                           chapter.            (line 1331)
+* machin <11>:                           chapter.            (line 1332)
+* machin <12>:                           chapter.            (line 1807)
+* machin <13>:                           chapter.            (line 1809)
+* machin <14>:                           chapter.            (line 2181)
+* machin <15>:                           chapter.            (line 2182)
+* machin <16>:                           chapter.            (line 2183)
+* machin <17>:                           chapter.            (line 2184)
 * n--ame:                                chapter.            (line  330)
 * n--ame <1>:                            chapter.            (line  333)
-* n--ame <2>:                            chapter.            (line 1012)
-* n--ame <3>:                            chapter.            (line 1015)
-* n--ame <4>:                            chapter.            (line 1832)
-* n--ame <5>:                            chapter.            (line 1835)
+* n--ame <2>:                            chapter.            (line 1011)
+* n--ame <3>:                            chapter.            (line 1014)
+* n--ame <4>:                            chapter.            (line 1830)
+* n--ame <5>:                            chapter.            (line 1833)
 * name2:                                 chapter.            (line  408)
-* name2 <1>:                             chapter.            (line 1090)
-* name2 <2>:                             chapter.            (line 1911)
-* t--ruc:                                chapter.            (line 2239)
-* T--ruc:                                chapter.            (line 2239)
+* name2 <1>:                             chapter.            (line 1089)
+* name2 <2>:                             chapter.            (line 1909)
+* t--ruc:                                chapter.            (line 2236)
+* T--ruc:                                chapter.            (line 2236)
 * truc:                                  chapter.            (line  302)
 * truc <1>:                              chapter.            (line  324)
-* truc <2>:                              chapter.            (line  984)
-* truc <3>:                              chapter.            (line 1006)
-* truc <4>:                              chapter.            (line 1802)
-* truc <5>:                              chapter.            (line 1825)
-* xxx, zzz:                              chapter.            (line 2239)
+* truc <2>:                              chapter.            (line  983)
+* truc <3>:                              chapter.            (line 1005)
+* truc <4>:                              chapter.            (line 1800)
+* truc <5>:                              chapter.            (line 1823)
+* xxx, zzz:                              chapter.            (line 2236)
 
    vr
 
@@ -2546,8 +2546,8 @@ aaa
 * Menu:
 
 * d--eftp_name:                          chapter.            (line  369)
-* d--eftp_name <1>:                      chapter.            (line 1051)
-* d--eftp_name <2>:                      chapter.            (line 1871)
+* d--eftp_name <1>:                      chapter.            (line 1050)
+* d--eftp_name <2>:                      chapter.            (line 1869)
 
    (8)
 
@@ -2592,285 +2592,285 @@ chapter 2
 * Menu:
 
 * ":                                     chapter.            (line   28)
-* " <1>:                                 chapter.            (line  710)
-* " <2>:                                 chapter.            (line 1403)
+* " <1>:                                 chapter.            (line  709)
+* " <2>:                                 chapter.            (line 1401)
 * -option:                               chapter.            (line   28)
-* -option <1>:                           chapter.            (line  710)
-* -option <2>:                           chapter.            (line 1403)
-* .:                                     chapter.            (line 2239)
-* ?:                                     chapter.            (line 2239)
-* a:                                     chapter.            (line 2239)
-* aaa, bbb:                              chapter.            (line 2239)
-* a--a:                                  chapter.            (line 2239)
+* -option <1>:                           chapter.            (line  709)
+* -option <2>:                           chapter.            (line 1401)
+* .:                                     chapter.            (line 2236)
+* ?:                                     chapter.            (line 2236)
+* a:                                     chapter.            (line 2236)
+* aaa, bbb:                              chapter.            (line 2236)
+* a--a:                                  chapter.            (line 2236)
 * a--asis:                               chapter.            (line  510)
-* a--asis <1>:                           chapter.            (line 1192)
-* a--asis <2>:                           chapter.            (line 2012)
+* a--asis <1>:                           chapter.            (line 1191)
+* a--asis <2>:                           chapter.            (line 2010)
 * b:                                     chapter.            (line  511)
-* b <1>:                                 chapter.            (line 1193)
-* b <2>:                                 chapter.            (line 2013)
-* b--b, c--c:                            chapter.            (line 2239)
-* counting entry:                        chapter.            (line 2576)
-* d--dd, e--ee, f--ff:                   chapter.            (line 2239)
+* b <1>:                                 chapter.            (line 1192)
+* b <2>:                                 chapter.            (line 2011)
+* b--b, c--c:                            chapter.            (line 2236)
+* counting entry:                        chapter.            (line 2573)
+* d--dd, e--ee, f--ff:                   chapter.            (line 2236)
 * d--efcv_name:                          chapter.            (line  351)
 * d--efcv_name <1>:                      chapter.            (line  354)
-* d--efcv_name <2>:                      chapter.            (line 1033)
-* d--efcv_name <3>:                      chapter.            (line 1036)
-* d--efcv_name <4>:                      chapter.            (line 1853)
-* d--efcv_name <5>:                      chapter.            (line 1856)
+* d--efcv_name <2>:                      chapter.            (line 1032)
+* d--efcv_name <3>:                      chapter.            (line 1035)
+* d--efcv_name <4>:                      chapter.            (line 1851)
+* d--efcv_name <5>:                      chapter.            (line 1854)
 * d--efivar_name of c--lass:             chapter.            (line  396)
-* d--efivar_name of c--lass <1>:         chapter.            (line 1078)
-* d--efivar_name of c--lass <2>:         chapter.            (line 1898)
+* d--efivar_name of c--lass <1>:         chapter.            (line 1077)
+* d--efivar_name of c--lass <2>:         chapter.            (line 1896)
 * d--efopt_name:                         chapter.            (line  387)
-* d--efopt_name <1>:                     chapter.            (line 1069)
-* d--efopt_name <2>:                     chapter.            (line 1889)
+* d--efopt_name <1>:                     chapter.            (line 1068)
+* d--efopt_name <2>:                     chapter.            (line 1887)
 * d--eftypecv_name of c--lass:           chapter.            (line  357)
 * d--eftypecv_name of c--lass <1>:       chapter.            (line  360)
-* d--eftypecv_name of c--lass <2>:       chapter.            (line 1039)
-* d--eftypecv_name of c--lass <3>:       chapter.            (line 1042)
-* d--eftypecv_name of c--lass <4>:       chapter.            (line 1859)
-* d--eftypecv_name of c--lass <5>:       chapter.            (line 1862)
+* d--eftypecv_name of c--lass <2>:       chapter.            (line 1038)
+* d--eftypecv_name of c--lass <3>:       chapter.            (line 1041)
+* d--eftypecv_name of c--lass <4>:       chapter.            (line 1857)
+* d--eftypecv_name of c--lass <5>:       chapter.            (line 1860)
 * d--eftypecv_name2 of c--lass2:         chapter.            (line  428)
 * d--eftypecv_name2 of c--lass2 <1>:     chapter.            (line  431)
-* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1110)
-* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1113)
-* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1931)
-* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1934)
+* d--eftypecv_name2 of c--lass2 <2>:     chapter.            (line 1109)
+* d--eftypecv_name2 of c--lass2 <3>:     chapter.            (line 1112)
+* d--eftypecv_name2 of c--lass2 <4>:     chapter.            (line 1929)
+* d--eftypecv_name2 of c--lass2 <5>:     chapter.            (line 1932)
 * d--eftypeivar_name of c--lass:         chapter.            (line  399)
-* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1081)
-* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1901)
+* d--eftypeivar_name of c--lass <1>:     chapter.            (line 1080)
+* d--eftypeivar_name of c--lass <2>:     chapter.            (line 1899)
 * d--eftypevar_name:                     chapter.            (line  393)
-* d--eftypevar_name <1>:                 chapter.            (line 1075)
-* d--eftypevar_name <2>:                 chapter.            (line 1895)
+* d--eftypevar_name <1>:                 chapter.            (line 1074)
+* d--eftypevar_name <2>:                 chapter.            (line 1893)
 * d--eftypevr_name:                      chapter.            (line  348)
-* d--eftypevr_name <1>:                  chapter.            (line 1030)
-* d--eftypevr_name <2>:                  chapter.            (line 1850)
+* d--eftypevr_name <1>:                  chapter.            (line 1029)
+* d--eftypevr_name <2>:                  chapter.            (line 1848)
 * d--efvar_name:                         chapter.            (line  381)
 * d--efvar_name <1>:                     chapter.            (line  384)
-* d--efvar_name <2>:                     chapter.            (line 1063)
-* d--efvar_name <3>:                     chapter.            (line 1066)
-* d--efvar_name <4>:                     chapter.            (line 1883)
-* d--efvar_name <5>:                     chapter.            (line 1886)
+* d--efvar_name <2>:                     chapter.            (line 1062)
+* d--efvar_name <3>:                     chapter.            (line 1065)
+* d--efvar_name <4>:                     chapter.            (line 1881)
+* d--efvar_name <5>:                     chapter.            (line 1884)
 * d--efvr_name:                          chapter.            (line  327)
-* d--efvr_name <1>:                      chapter.            (line 1009)
-* d--efvr_name <2>:                      chapter.            (line 1829)
-* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2239)
+* d--efvr_name <1>:                      chapter.            (line 1008)
+* d--efvr_name <2>:                      chapter.            (line 1827)
+* g--gg, h--hh jjj, k--kk, l--ll:        chapter.            (line 2236)
 * index entry between item and itemx:    chapter.            (line  515)
-* index entry between item and itemx <1>: chapter.           (line  645)
-* index entry between item and itemx <2>: chapter.           (line 1197)
-* index entry between item and itemx <3>: chapter.           (line 1327)
-* index entry between item and itemx <4>: chapter.           (line 2017)
-* index entry between item and itemx <5>: chapter.           (line 2180)
-* index entry in footnote:               chapter.            (line 2571)
+* index entry between item and itemx <1>: chapter.           (line  644)
+* index entry between item and itemx <2>: chapter.           (line 1196)
+* index entry between item and itemx <3>: chapter.           (line 1325)
+* index entry between item and itemx <4>: chapter.           (line 2015)
+* index entry between item and itemx <5>: chapter.           (line 2177)
+* index entry in footnote:               chapter.            (line 2568)
 * index entry within deffn:              chapter.            (line  302)
-* index entry within deffn <1>:          chapter.            (line  984)
-* index entry within deffn <2>:          chapter.            (line 1802)
+* index entry within deffn <1>:          chapter.            (line  983)
+* index entry within deffn <2>:          chapter.            (line 1800)
 * index entry within itemize:            chapter.            (line  213)
-* index entry within itemize <1>:        chapter.            (line  895)
-* index entry within itemize <2>:        chapter.            (line 1713)
+* index entry within itemize <1>:        chapter.            (line  894)
+* index entry within itemize <2>:        chapter.            (line 1711)
 * index entry within multitable:         chapter.            (line  235)
-* index entry within multitable <1>:     chapter.            (line  917)
-* index entry within multitable <2>:     chapter.            (line 1736)
-* t-ruc:                                 chapter.            (line 2239)
-* T-ruc:                                 chapter.            (line 2239)
+* index entry within multitable <1>:     chapter.            (line  916)
+* index entry within multitable <2>:     chapter.            (line 1734)
+* t-ruc:                                 chapter.            (line 2236)
+* T-ruc:                                 chapter.            (line 2236)
 * vtable i--tem code kbdinputstyle:      chapter.            (line  137)
-* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  819)
-* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1636)
+* vtable i--tem code kbdinputstyle <1>:  chapter.            (line  818)
+* vtable i--tem code kbdinputstyle <2>:  chapter.            (line 1634)
 * vtable i--tem default kbdinputstyle:   chapter.            (line  132)
-* vtable i--tem default kbdinputstyle <1>: chapter.          (line  814)
-* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1631)
+* vtable i--tem default kbdinputstyle <1>: chapter.          (line  813)
+* vtable i--tem default kbdinputstyle <2>: chapter.          (line 1629)
 * vtable i--tem distinct kbdinputstyle:  chapter.            (line  147)
-* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  829)
-* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1646)
+* vtable i--tem distinct kbdinputstyle <1>: chapter.         (line  828)
+* vtable i--tem distinct kbdinputstyle <2>: chapter.         (line 1644)
 * vtable i--tem example kbdinputstyle:   chapter.            (line  142)
-* vtable i--tem example kbdinputstyle <1>: chapter.          (line  824)
-* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1641)
+* vtable i--tem example kbdinputstyle <1>: chapter.          (line  823)
+* vtable i--tem example kbdinputstyle <2>: chapter.          (line 1639)
 * vtable i--tem in example code kbdinputstyle: chapter.      (line  139)
-* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  821)
-* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1638)
+* vtable i--tem in example code kbdinputstyle <1>: chapter.  (line  820)
+* vtable i--tem in example code kbdinputstyle <2>: chapter.  (line 1636)
 * vtable i--tem in example default kbdinputstyle: chapter.   (line  134)
 * vtable i--tem in example default kbdinputstyle <1>: chapter.
-                                                             (line  816)
+                                                             (line  815)
 * vtable i--tem in example default kbdinputstyle <2>: chapter.
-                                                             (line 1633)
+                                                             (line 1631)
 * vtable i--tem in example distinct kbdinputstyle: chapter.  (line  149)
 * vtable i--tem in example distinct kbdinputstyle <1>: chapter.
-                                                             (line  831)
+                                                             (line  830)
 * vtable i--tem in example distinct kbdinputstyle <2>: chapter.
-                                                             (line 1648)
+                                                             (line 1646)
 * vtable i--tem in example example kbdinputstyle: chapter.   (line  144)
 * vtable i--tem in example example kbdinputstyle <1>: chapter.
-                                                             (line  826)
+                                                             (line  825)
 * vtable i--tem in example example kbdinputstyle <2>: chapter.
-                                                             (line 1643)
+                                                             (line 1641)
 
 * Menu:
 
 * --foption:                             chapter.            (line   28)
-* --foption <1>:                         chapter.            (line  710)
-* --foption <2>:                         chapter.            (line 1403)
-* .:                                     chapter.            (line 2239)
-* ?:                                     chapter.            (line 2239)
+* --foption <1>:                         chapter.            (line  709)
+* --foption <2>:                         chapter.            (line 1401)
+* .:                                     chapter.            (line 2236)
+* ?:                                     chapter.            (line 2236)
 * ``:                                    chapter.            (line   28)
-* `` <1>:                                chapter.            (line  710)
-* `` <2>:                                chapter.            (line 1403)
+* `` <1>:                                chapter.            (line  709)
+* `` <2>:                                chapter.            (line 1401)
 * a:                                     chapter.            (line  315)
 * a <1>:                                 chapter.            (line  514)
-* a <2>:                                 chapter.            (line  644)
-* a <3>:                                 chapter.            (line  997)
-* a <4>:                                 chapter.            (line 1196)
-* a <5>:                                 chapter.            (line 1326)
-* a <6>:                                 chapter.            (line 1815)
-* a <7>:                                 chapter.            (line 2016)
-* a <8>:                                 chapter.            (line 2179)
-* a <9>:                                 chapter.            (line 2239)
-* after:                                 chapter.            (line  655)
-* after <1>:                             chapter.            (line 1337)
-* after <2>:                             chapter.            (line 2190)
+* a <2>:                                 chapter.            (line  643)
+* a <3>:                                 chapter.            (line  996)
+* a <4>:                                 chapter.            (line 1195)
+* a <5>:                                 chapter.            (line 1324)
+* a <6>:                                 chapter.            (line 1813)
+* a <7>:                                 chapter.            (line 2014)
+* a <8>:                                 chapter.            (line 2176)
+* a <9>:                                 chapter.            (line 2236)
+* after:                                 chapter.            (line  654)
+* after <1>:                             chapter.            (line 1335)
+* after <2>:                             chapter.            (line 2187)
 * arg2:                                  chapter.            (line  434)
-* arg2 <1>:                              chapter.            (line 1116)
-* arg2 <2>:                              chapter.            (line 1938)
+* arg2 <1>:                              chapter.            (line 1115)
+* arg2 <2>:                              chapter.            (line 1936)
 * b:                                     chapter.            (line  515)
-* b <1>:                                 chapter.            (line  645)
-* b <2>:                                 chapter.            (line 1197)
-* b <3>:                                 chapter.            (line 1327)
-* b <4>:                                 chapter.            (line 2017)
-* b <5>:                                 chapter.            (line 2180)
+* b <1>:                                 chapter.            (line  644)
+* b <2>:                                 chapter.            (line 1196)
+* b <3>:                                 chapter.            (line 1325)
+* b <4>:                                 chapter.            (line 2015)
+* b <5>:                                 chapter.            (line 2177)
 * bidule machin:                         chapter.            (line  310)
-* bidule machin <1>:                     chapter.            (line  992)
-* bidule machin <2>:                     chapter.            (line 1810)
+* bidule machin <1>:                     chapter.            (line  991)
+* bidule machin <2>:                     chapter.            (line 1808)
 * d--effn_name:                          chapter.            (line  294)
-* d--effn_name <1>:                      chapter.            (line  976)
-* d--effn_name <2>:                      chapter.            (line 1794)
+* d--effn_name <1>:                      chapter.            (line  975)
+* d--effn_name <2>:                      chapter.            (line 1792)
 * d--efmac_name:                         chapter.            (line  375)
-* d--efmac_name <1>:                     chapter.            (line 1057)
-* d--efmac_name <2>:                     chapter.            (line 1877)
+* d--efmac_name <1>:                     chapter.            (line 1056)
+* d--efmac_name <2>:                     chapter.            (line 1875)
 * d--efmethod_name on c--lass:           chapter.            (line  402)
-* d--efmethod_name on c--lass <1>:       chapter.            (line 1084)
-* d--efmethod_name on c--lass <2>:       chapter.            (line 1904)
+* d--efmethod_name on c--lass <1>:       chapter.            (line 1083)
+* d--efmethod_name on c--lass <2>:       chapter.            (line 1902)
 * d--efop_name on c--lass:               chapter.            (line  363)
 * d--efop_name on c--lass <1>:           chapter.            (line  366)
-* d--efop_name on c--lass <2>:           chapter.            (line 1045)
-* d--efop_name on c--lass <3>:           chapter.            (line 1048)
-* d--efop_name on c--lass <4>:           chapter.            (line 1865)
-* d--efop_name on c--lass <5>:           chapter.            (line 1868)
+* d--efop_name on c--lass <2>:           chapter.            (line 1044)
+* d--efop_name on c--lass <3>:           chapter.            (line 1047)
+* d--efop_name on c--lass <4>:           chapter.            (line 1863)
+* d--efop_name on c--lass <5>:           chapter.            (line 1866)
 * d--efspec_name:                        chapter.            (line  378)
-* d--efspec_name <1>:                    chapter.            (line 1060)
-* d--efspec_name <2>:                    chapter.            (line 1880)
+* d--efspec_name <1>:                    chapter.            (line 1059)
+* d--efspec_name <2>:                    chapter.            (line 1878)
 * d--eftypefn_name:                      chapter.            (line  336)
 * d--eftypefn_name <1>:                  chapter.            (line  339)
-* d--eftypefn_name <2>:                  chapter.            (line 1018)
-* d--eftypefn_name <3>:                  chapter.            (line 1021)
-* d--eftypefn_name <4>:                  chapter.            (line 1838)
-* d--eftypefn_name <5>:                  chapter.            (line 1841)
+* d--eftypefn_name <2>:                  chapter.            (line 1017)
+* d--eftypefn_name <3>:                  chapter.            (line 1020)
+* d--eftypefn_name <4>:                  chapter.            (line 1836)
+* d--eftypefn_name <5>:                  chapter.            (line 1839)
 * d--eftypefn_name2:                     chapter.            (line  413)
-* d--eftypefn_name2 <1>:                 chapter.            (line 1095)
-* d--eftypefn_name2 <2>:                 chapter.            (line 1916)
+* d--eftypefn_name2 <1>:                 chapter.            (line 1094)
+* d--eftypefn_name2 <2>:                 chapter.            (line 1914)
 * d--eftypefun_name:                     chapter.            (line  390)
-* d--eftypefun_name <1>:                 chapter.            (line 1072)
-* d--eftypefun_name <2>:                 chapter.            (line 1892)
+* d--eftypefun_name <1>:                 chapter.            (line 1071)
+* d--eftypefun_name <2>:                 chapter.            (line 1890)
 * d--eftypemethod_name on c--lass:       chapter.            (line  405)
-* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1087)
-* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1907)
+* d--eftypemethod_name on c--lass <1>:   chapter.            (line 1086)
+* d--eftypemethod_name on c--lass <2>:   chapter.            (line 1905)
 * d--eftypeop_name on c--lass:           chapter.            (line  342)
 * d--eftypeop_name on c--lass <1>:       chapter.            (line  345)
-* d--eftypeop_name on c--lass <2>:       chapter.            (line 1024)
-* d--eftypeop_name on c--lass <3>:       chapter.            (line 1027)
-* d--eftypeop_name on c--lass <4>:       chapter.            (line 1844)
-* d--eftypeop_name on c--lass <5>:       chapter.            (line 1847)
+* d--eftypeop_name on c--lass <2>:       chapter.            (line 1023)
+* d--eftypeop_name on c--lass <3>:       chapter.            (line 1026)
+* d--eftypeop_name on c--lass <4>:       chapter.            (line 1842)
+* d--eftypeop_name on c--lass <5>:       chapter.            (line 1845)
 * d--eftypeop_name2 on c--lass2:         chapter.            (line  418)
 * d--eftypeop_name2 on c--lass2 <1>:     chapter.            (line  423)
-* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1100)
-* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1105)
-* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1921)
-* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1926)
+* d--eftypeop_name2 on c--lass2 <2>:     chapter.            (line 1099)
+* d--eftypeop_name2 on c--lass2 <3>:     chapter.            (line 1104)
+* d--eftypeop_name2 on c--lass2 <4>:     chapter.            (line 1919)
+* d--eftypeop_name2 on c--lass2 <5>:     chapter.            (line 1924)
 * d--efun_name:                          chapter.            (line  372)
-* d--efun_name <1>:                      chapter.            (line 1054)
-* d--efun_name <2>:                      chapter.            (line 1874)
+* d--efun_name <1>:                      chapter.            (line 1053)
+* d--efun_name <2>:                      chapter.            (line 1872)
 * de--ffn_name:                          chapter.            (line  297)
-* de--ffn_name <1>:                      chapter.            (line  979)
-* de--ffn_name <2>:                      chapter.            (line 1797)
+* de--ffn_name <1>:                      chapter.            (line  978)
+* de--ffn_name <2>:                      chapter.            (line 1795)
 * deffn:                                 chapter.            (line  318)
 * deffn <1>:                             chapter.            (line  320)
-* deffn <2>:                             chapter.            (line 1000)
-* deffn <3>:                             chapter.            (line 1002)
-* deffn <4>:                             chapter.            (line 1819)
-* deffn <5>:                             chapter.            (line 1821)
+* deffn <2>:                             chapter.            (line  999)
+* deffn <3>:                             chapter.            (line 1001)
+* deffn <4>:                             chapter.            (line 1817)
+* deffn <5>:                             chapter.            (line 1819)
 * deffnx:                                chapter.            (line  316)
 * deffnx <1>:                            chapter.            (line  321)
-* deffnx <2>:                            chapter.            (line  998)
-* deffnx <3>:                            chapter.            (line 1003)
-* deffnx <4>:                            chapter.            (line 1816)
-* deffnx <5>:                            chapter.            (line 1822)
-* f---aa:                                chapter.            (line 2239)
-* f---bb, f---cc:                        chapter.            (line 2239)
-* f---ddd, f---eee, ffff:                chapter.            (line 2239)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2239)
+* deffnx <2>:                            chapter.            (line  997)
+* deffnx <3>:                            chapter.            (line 1002)
+* deffnx <4>:                            chapter.            (line 1814)
+* deffnx <5>:                            chapter.            (line 1820)
+* f---aa:                                chapter.            (line 2236)
+* f---bb, f---cc:                        chapter.            (line 2236)
+* f---ddd, f---eee, ffff:                chapter.            (line 2236)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter.          (line 2236)
 * followed:                              chapter.            (line  313)
-* followed <1>:                          chapter.            (line  653)
-* followed <2>:                          chapter.            (line  995)
-* followed <3>:                          chapter.            (line 1335)
-* followed <4>:                          chapter.            (line 1813)
-* followed <5>:                          chapter.            (line 2188)
+* followed <1>:                          chapter.            (line  652)
+* followed <2>:                          chapter.            (line  994)
+* followed <3>:                          chapter.            (line 1333)
+* followed <4>:                          chapter.            (line 1811)
+* followed <5>:                          chapter.            (line 2185)
 * I:                                     chapter.            (line  301)
 * I <1>:                                 chapter.            (line  323)
-* I <2>:                                 chapter.            (line  983)
-* I <3>:                                 chapter.            (line 1005)
-* I <4>:                                 chapter.            (line 1801)
-* I <5>:                                 chapter.            (line 1824)
+* I <2>:                                 chapter.            (line  982)
+* I <3>:                                 chapter.            (line 1004)
+* I <4>:                                 chapter.            (line 1799)
+* I <5>:                                 chapter.            (line 1822)
 * id i ule:                              chapter.            (line  307)
-* id i ule <1>:                          chapter.            (line  989)
-* id i ule <2>:                          chapter.            (line 1807)
+* id i ule <1>:                          chapter.            (line  988)
+* id i ule <2>:                          chapter.            (line 1805)
 * id ule:                                chapter.            (line  306)
-* id ule <1>:                            chapter.            (line  988)
-* id ule <2>:                            chapter.            (line 1806)
-* INVALID:                               chapter.            (line  657)
-* INVALID <1>:                           chapter.            (line 1339)
-* INVALID <2>:                           chapter.            (line 2192)
+* id ule <1>:                            chapter.            (line  987)
+* id ule <2>:                            chapter.            (line 1804)
+* INVALID:                               chapter.            (line  656)
+* INVALID <1>:                           chapter.            (line 1337)
+* INVALID <2>:                           chapter.            (line 2189)
 * log trap:                              chapter.            (line  303)
-* log trap <1>:                          chapter.            (line  985)
-* log trap <2>:                          chapter.            (line 1803)
+* log trap <1>:                          chapter.            (line  984)
+* log trap <2>:                          chapter.            (line 1801)
 * log trap1:                             chapter.            (line  304)
-* log trap1 <1>:                         chapter.            (line  986)
-* log trap1 <2>:                         chapter.            (line 1804)
+* log trap1 <1>:                         chapter.            (line  985)
+* log trap1 <2>:                         chapter.            (line 1802)
 * log trap2:                             chapter.            (line  305)
-* log trap2 <1>:                         chapter.            (line  987)
-* log trap2 <2>:                         chapter.            (line 1805)
+* log trap2 <1>:                         chapter.            (line  986)
+* log trap2 <2>:                         chapter.            (line 1803)
 * machin:                                chapter.            (line  309)
 * machin <1>:                            chapter.            (line  311)
-* machin <2>:                            chapter.            (line  649)
-* machin <3>:                            chapter.            (line  650)
-* machin <4>:                            chapter.            (line  651)
-* machin <5>:                            chapter.            (line  652)
-* machin <6>:                            chapter.            (line  991)
-* machin <7>:                            chapter.            (line  993)
-* machin <8>:                            chapter.            (line 1331)
-* machin <9>:                            chapter.            (line 1332)
-* machin <10>:                           chapter.            (line 1333)
-* machin <11>:                           chapter.            (line 1334)
-* machin <12>:                           chapter.            (line 1809)
-* machin <13>:                           chapter.            (line 1811)
-* machin <14>:                           chapter.            (line 2184)
-* machin <15>:                           chapter.            (line 2185)
-* machin <16>:                           chapter.            (line 2186)
-* machin <17>:                           chapter.            (line 2187)
+* machin <2>:                            chapter.            (line  648)
+* machin <3>:                            chapter.            (line  649)
+* machin <4>:                            chapter.            (line  650)
+* machin <5>:                            chapter.            (line  651)
+* machin <6>:                            chapter.            (line  990)
+* machin <7>:                            chapter.            (line  992)
+* machin <8>:                            chapter.            (line 1329)
+* machin <9>:                            chapter.            (line 1330)
+* machin <10>:                           chapter.            (line 1331)
+* machin <11>:                           chapter.            (line 1332)
+* machin <12>:                           chapter.            (line 1807)
+* machin <13>:                           chapter.            (line 1809)
+* machin <14>:                           chapter.            (line 2181)
+* machin <15>:                           chapter.            (line 2182)
+* machin <16>:                           chapter.            (line 2183)
+* machin <17>:                           chapter.            (line 2184)
 * n--ame:                                chapter.            (line  330)
 * n--ame <1>:                            chapter.            (line  333)
-* n--ame <2>:                            chapter.            (line 1012)
-* n--ame <3>:                            chapter.            (line 1015)
-* n--ame <4>:                            chapter.            (line 1832)
-* n--ame <5>:                            chapter.            (line 1835)
+* n--ame <2>:                            chapter.            (line 1011)
+* n--ame <3>:                            chapter.            (line 1014)
+* n--ame <4>:                            chapter.            (line 1830)
+* n--ame <5>:                            chapter.            (line 1833)
 * name2:                                 chapter.            (line  408)
-* name2 <1>:                             chapter.            (line 1090)
-* name2 <2>:                             chapter.            (line 1911)
-* t--ruc:                                chapter.            (line 2239)
-* T--ruc:                                chapter.            (line 2239)
+* name2 <1>:                             chapter.            (line 1089)
+* name2 <2>:                             chapter.            (line 1909)
+* t--ruc:                                chapter.            (line 2236)
+* T--ruc:                                chapter.            (line 2236)
 * truc:                                  chapter.            (line  302)
 * truc <1>:                              chapter.            (line  324)
-* truc <2>:                              chapter.            (line  984)
-* truc <3>:                              chapter.            (line 1006)
-* truc <4>:                              chapter.            (line 1802)
-* truc <5>:                              chapter.            (line 1825)
-* xxx, zzz:                              chapter.            (line 2239)
+* truc <2>:                              chapter.            (line  983)
+* truc <3>:                              chapter.            (line 1005)
+* truc <4>:                              chapter.            (line 1800)
+* truc <5>:                              chapter.            (line 1823)
+* xxx, zzz:                              chapter.            (line 2236)
 
 Top section
 1 chapter



reply via email to

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