texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * tp/Texinfo/ParserNonXS.pm (_end_line_starting_b


From: Patrice Dumas
Subject: branch master updated: * tp/Texinfo/ParserNonXS.pm (_end_line_starting_block), tp/Texinfo/XS/parsetexi/end_line.c (end_line_starting_block): more generic message when @*table argument is incorrect, separating missing and bad argument, and showing the argument in case of bad argument.
Date: Sun, 11 Dec 2022 06:26:06 -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 9621a3d7f3 * tp/Texinfo/ParserNonXS.pm (_end_line_starting_block), 
tp/Texinfo/XS/parsetexi/end_line.c (end_line_starting_block): more generic 
message when @*table argument is incorrect, separating missing and bad 
argument, and showing the argument in case of bad argument.
9621a3d7f3 is described below

commit 9621a3d7f3e7845015e99187cceb07eb403fb81f
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Dec 11 12:25:53 2022 +0100

    * tp/Texinfo/ParserNonXS.pm (_end_line_starting_block),
    tp/Texinfo/XS/parsetexi/end_line.c (end_line_starting_block):
    more generic message when @*table argument is incorrect, separating
    missing and bad argument, and showing the argument in case of bad
    argument.
    
    * tp/Texinfo/XS/parsetexi/convert.c (expand_cmd_args_to_texi):
    add spaces_after_cmd_before_arg expansion.
---
 ChangeLog                                          |  11 +
 tp/Texinfo/ParserNonXS.pm                          |  17 +-
 tp/Texinfo/XS/parsetexi/convert.c                  |   4 +
 tp/Texinfo/XS/parsetexi/end_line.c                 |  23 +-
 .../invalid_nestings/section_on_xtable_line.pl     |   8 +-
 tp/t/results/xtable/accent_on_table_line.pl        |  20 +-
 tp/t/results/xtable/no_argument_for_table.pl       |   4 +-
 .../index_special_region/index_special_region.2    |   2 +-
 .../index_special_region.2                         |   2 +-
 .../index_special_region_no_insertcopying.2        |   2 +-
 .../index_special_region_no_insertcopying.2        |   2 +-
 .../index_special_region_no_region.2               |   2 +-
 .../index_special_region_no_region.2               |   2 +-
 .../index_special_region/index_special_region.2    |   2 +-
 .../index_special_region.2                         |   2 +-
 .../index_special_region_no_insertcopying.2        |   2 +-
 .../index_special_region_no_insertcopying.2        |   2 +-
 .../index_special_region_no_region.2               |   2 +-
 .../index_special_region_no_region.2               |   2 +-
 tp/tests/layout/res_parser/formatting/formatting.2 |   8 +-
 .../layout/res_parser/formatting_chm/formatting.2  |   8 +-
 .../res_parser/formatting_docbook/formatting.2     |   8 +-
 .../formatting_enable_encoding/formatting.2        |   8 +-
 .../layout/res_parser/formatting_epub/formatting.2 |   8 +-
 .../res_parser/formatting_epub_nodes/formatting.2  |   8 +-
 .../res_parser/formatting_exotic/formatting.2      |   8 +-
 .../res_parser/formatting_fr_icons/formatting.2    |   8 +-
 .../layout/res_parser/formatting_html/formatting.2 |   8 +-
 .../res_parser/formatting_html32/formatting.2      |   8 +-
 .../formatting_html_no_texi2html/formatting.2      |   8 +-
 .../res_parser/formatting_html_nodes/formatting.2  |   8 +-
 .../layout/res_parser/formatting_info/formatting.2 |   8 +-
 .../formatting_info_disable_encoding/formatting.2  |   8 +-
 .../res_parser/formatting_inline_css/formatting.2  |   8 +-
 .../res_parser/formatting_latex/formatting.2       |   8 +-
 .../formatting_macro_expand/formatting.2           |   8 +-
 .../res_parser/formatting_mathjax/formatting.2     |   8 +-
 .../res_parser/formatting_nodes/formatting.2       |   8 +-
 .../formatting_numerical_entities/formatting.2     |   8 +-
 .../res_parser/formatting_plaintext/formatting.2   |   8 +-
 .../res_parser/formatting_rawtext/formatting.2     |   8 +-
 .../formatting_regions/formatting_regions.2        |   8 +-
 .../formatting_sort_element_counts/formatting.2    |   8 +-
 .../res_parser/formatting_textcontent/formatting.2 |   8 +-
 .../formatting_weird_quotes/formatting.2           |   8 +-
 .../res_parser/formatting_xhtml/formatting.2       |   8 +-
 .../layout/res_parser/formatting_xml/formatting.2  |   8 +-
 .../res_parser/nested_table/nested_formats.2       | 506 ++++++++++-----------
 .../res_parser_info/nested_table/nested_formats.2  | 506 ++++++++++-----------
 .../res_parser/formatting_singular/formatting.2    |   8 +-
 50 files changed, 699 insertions(+), 656 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index b45c9bde33..0c560d2655 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2022-12-11  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/ParserNonXS.pm (_end_line_starting_block),
+       tp/Texinfo/XS/parsetexi/end_line.c (end_line_starting_block):
+       more generic message when @*table argument is incorrect, separating
+       missing and bad argument, and showing the argument in case of bad
+       argument.
+
+       * tp/Texinfo/XS/parsetexi/convert.c (expand_cmd_args_to_texi):
+       add spaces_after_cmd_before_arg expansion.
+
 2022-12-10  Gavin Smith  <gavinsmith0123@gmail.com>
 
        * tp/Texinfo/Convert/Plaintext.pm (_convert) <@tie>:
diff --git a/tp/Texinfo/ParserNonXS.pm b/tp/Texinfo/ParserNonXS.pm
index 780346fa15..a28bb256fd 100644
--- a/tp/Texinfo/ParserNonXS.pm
+++ b/tp/Texinfo/ParserNonXS.pm
@@ -3473,9 +3473,20 @@ sub _end_line_starting_block($$$)
     } elsif ($block_commands{$current->{'cmdname'}} eq 'item_line') {
       if (!$current->{'extra'}
           or !$current->{'extra'}->{'command_as_argument'}) {
-        $self->_command_error($current, $source_info,
-            __("%s requires an argument: the formatter for %citem"),
-            $current->{'cmdname'}, ord('@'));
+        if ($current->{'args'}->[0]->{'contents'}
+            and scalar(@{$current->{'args'}->[0]->{'contents'}})) {
+          # expand the contents to avoid surrounding spaces
+          my $texi_arg
+            = Texinfo::Convert::Texinfo::convert_to_texinfo(
+                    {'contents' => $current->{'args'}->[0]->{'contents'}});
+          $self->_command_error($current, $source_info,
+                                __("bad argument to \@%s: %s"),
+                                $current->{'cmdname'}, $texi_arg);
+        } else {
+          $self->_command_error($current, $source_info,
+                                __("missing \@%s argument"),
+                                $current->{'cmdname'});
+        }
       } elsif ($self->{'brace_commands'}->{
     $current->{'extra'}->{'command_as_argument'}->{'cmdname'}} eq 'noarg') {
         $self->_command_error($current, $source_info,
diff --git a/tp/Texinfo/XS/parsetexi/convert.c 
b/tp/Texinfo/XS/parsetexi/convert.c
index 9828324348..838ddf96e6 100644
--- a/tp/Texinfo/XS/parsetexi/convert.c
+++ b/tp/Texinfo/XS/parsetexi/convert.c
@@ -63,7 +63,11 @@ expand_cmd_args_to_texi (ELEMENT *e, TEXT *result)
 
   if (cmd)
     {
+      KEY_PAIR *k;
       ADD("@");  ADD(command_name(cmd));
+      k = lookup_info (e, "spaces_after_cmd_before_arg");
+      if (k)
+        ADD((char *)k->value);
     }
 
   // TODO extra spaces
diff --git a/tp/Texinfo/XS/parsetexi/end_line.c 
b/tp/Texinfo/XS/parsetexi/end_line.c
index 2dce1c4844..28f02de63b 100644
--- a/tp/Texinfo/XS/parsetexi/end_line.c
+++ b/tp/Texinfo/XS/parsetexi/end_line.c
@@ -1152,9 +1152,26 @@ end_line_starting_block (ELEMENT *current)
           KEY_PAIR *k;
           k = lookup_extra (current, "command_as_argument");
           if (!k)
-            command_error (current,
-                           "%s requires an argument: the formatter for @item",
-                           command_name(current->cmd));
+            {
+              if (current->args.number > 0
+                  && current->args.list[0]->contents.number > 0)
+                {
+                  ELEMENT tmp;
+                  char *texi_arg;
+
+                  /* expand the contents to avoid surrounding spaces */
+                  memset (&tmp, 0, sizeof (ELEMENT));
+                  tmp.contents = current->args.list[0]->contents;
+                  texi_arg = convert_to_texinfo (&tmp);
+                  command_error (current, "bad argument to @%s: %s",
+                                 command_name(current->cmd), texi_arg);
+                }
+              else
+                {
+                  command_error (current, "missing @%s argument",
+                                 command_name(current->cmd));
+                }
+            }
           else
             {
               ELEMENT *e = k->value;
diff --git a/tp/t/results/invalid_nestings/section_on_xtable_line.pl 
b/tp/t/results/invalid_nestings/section_on_xtable_line.pl
index a64bed440e..654a34333c 100644
--- a/tp/t/results/invalid_nestings/section_on_xtable_line.pl
+++ b/tp/t/results/invalid_nestings/section_on_xtable_line.pl
@@ -364,12 +364,12 @@ $result_errors{'section_on_xtable_line'} = [
     'type' => 'warning'
   },
   {
-    'error_line' => 'vtable requires an argument: the formatter for @item
+    'error_line' => 'missing @vtable argument
 ',
     'file_name' => '',
     'line_nr' => 1,
     'macro' => '',
-    'text' => 'vtable requires an argument: the formatter for @item',
+    'text' => 'missing @vtable argument',
     'type' => 'error'
   },
   {
@@ -472,12 +472,12 @@ $result_errors{'section_on_xtable_line'} = [
     'type' => 'warning'
   },
   {
-    'error_line' => 'ftable requires an argument: the formatter for @item
+    'error_line' => 'bad argument to @ftable: @ringaccent 
 ',
     'file_name' => '',
     'line_nr' => 7,
     'macro' => '',
-    'text' => 'ftable requires an argument: the formatter for @item',
+    'text' => 'bad argument to @ftable: @ringaccent ',
     'type' => 'error'
   },
   {
diff --git a/tp/t/results/xtable/accent_on_table_line.pl 
b/tp/t/results/xtable/accent_on_table_line.pl
index 48b034a5c3..b800f6056d 100644
--- a/tp/t/results/xtable/accent_on_table_line.pl
+++ b/tp/t/results/xtable/accent_on_table_line.pl
@@ -969,12 +969,12 @@ $result_errors{'accent_on_table_line'} = [
     'type' => 'warning'
   },
   {
-    'error_line' => 'table requires an argument: the formatter for @item
+    'error_line' => 'bad argument to @table: @~
 ',
     'file_name' => '',
     'line_nr' => 1,
     'macro' => '',
-    'text' => 'table requires an argument: the formatter for @item',
+    'text' => 'bad argument to @table: @~',
     'type' => 'error'
   },
   {
@@ -996,12 +996,12 @@ $result_errors{'accent_on_table_line'} = [
     'type' => 'error'
   },
   {
-    'error_line' => 'table requires an argument: the formatter for @item
+    'error_line' => 'bad argument to @table: @~
 ',
     'file_name' => '',
     'line_nr' => 11,
     'macro' => '',
-    'text' => 'table requires an argument: the formatter for @item',
+    'text' => 'bad argument to @table: @~',
     'type' => 'error'
   },
   {
@@ -1014,12 +1014,12 @@ $result_errors{'accent_on_table_line'} = [
     'type' => 'warning'
   },
   {
-    'error_line' => 'table requires an argument: the formatter for @item
+    'error_line' => 'bad argument to @table: @~
 ',
     'file_name' => '',
     'line_nr' => 15,
     'macro' => '',
-    'text' => 'table requires an argument: the formatter for @item',
+    'text' => 'bad argument to @table: @~',
     'type' => 'error'
   },
   {
@@ -1032,12 +1032,12 @@ $result_errors{'accent_on_table_line'} = [
     'type' => 'warning'
   },
   {
-    'error_line' => 'table requires an argument: the formatter for @item
+    'error_line' => 'bad argument to @table: @ringaccent
 ',
     'file_name' => '',
     'line_nr' => 19,
     'macro' => '',
-    'text' => 'table requires an argument: the formatter for @item',
+    'text' => 'bad argument to @table: @ringaccent',
     'type' => 'error'
   },
   {
@@ -1050,12 +1050,12 @@ $result_errors{'accent_on_table_line'} = [
     'type' => 'warning'
   },
   {
-    'error_line' => 'table requires an argument: the formatter for @item
+    'error_line' => 'bad argument to @table: @ringaccent{a}
 ',
     'file_name' => '',
     'line_nr' => 27,
     'macro' => '',
-    'text' => 'table requires an argument: the formatter for @item',
+    'text' => 'bad argument to @table: @ringaccent{a}',
     'type' => 'error'
   }
 ];
diff --git a/tp/t/results/xtable/no_argument_for_table.pl 
b/tp/t/results/xtable/no_argument_for_table.pl
index 29a3929112..de2010c297 100644
--- a/tp/t/results/xtable/no_argument_for_table.pl
+++ b/tp/t/results/xtable/no_argument_for_table.pl
@@ -133,12 +133,12 @@ In item.
 
 $result_errors{'no_argument_for_table'} = [
   {
-    'error_line' => 'table requires an argument: the formatter for @item
+    'error_line' => 'missing @table argument
 ',
     'file_name' => '',
     'line_nr' => 1,
     'macro' => '',
-    'text' => 'table requires an argument: the formatter for @item',
+    'text' => 'missing @table argument',
     'type' => 'error'
   }
 ];
diff --git 
a/tp/tests/indices/res_parser/index_special_region/index_special_region.2 
b/tp/tests/indices/res_parser/index_special_region/index_special_region.2
index 58142fc8f3..127a79aad7 100644
--- a/tp/tests/indices/res_parser/index_special_region/index_special_region.2
+++ b/tp/tests/indices/res_parser/index_special_region/index_special_region.2
@@ -2,5 +2,5 @@ index_special_region.texi:46: warning: @cindex missing argument
 index_special_region.texi:47: warning: missing name for @deffn
 index_special_region.texi:48: warning: missing name for @deffnx
 index_special_region.texi:49: warning: missing name for @deffnx
-index_special_region.texi:52: ftable requires an argument: the formatter for 
@item
+index_special_region.texi:52: missing @ftable argument
 index_special_region.texi:53: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser/index_special_region_html/index_special_region.2 
b/tp/tests/indices/res_parser/index_special_region_html/index_special_region.2
index 58142fc8f3..127a79aad7 100644
--- 
a/tp/tests/indices/res_parser/index_special_region_html/index_special_region.2
+++ 
b/tp/tests/indices/res_parser/index_special_region_html/index_special_region.2
@@ -2,5 +2,5 @@ index_special_region.texi:46: warning: @cindex missing argument
 index_special_region.texi:47: warning: missing name for @deffn
 index_special_region.texi:48: warning: missing name for @deffnx
 index_special_region.texi:49: warning: missing name for @deffnx
-index_special_region.texi:52: ftable requires an argument: the formatter for 
@item
+index_special_region.texi:52: missing @ftable argument
 index_special_region.texi:53: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
 
b/tp/tests/indices/res_parser/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
index b8cd782763..2cd34916b8 100644
--- 
a/tp/tests/indices/res_parser/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
+++ 
b/tp/tests/indices/res_parser/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
@@ -2,5 +2,5 @@ index_special_region_no_insertcopying.texi:46: warning: @cindex 
missing argument
 index_special_region_no_insertcopying.texi:47: warning: missing name for @deffn
 index_special_region_no_insertcopying.texi:48: warning: missing name for 
@deffnx
 index_special_region_no_insertcopying.texi:49: warning: missing name for 
@deffnx
-index_special_region_no_insertcopying.texi:52: ftable requires an argument: 
the formatter for @item
+index_special_region_no_insertcopying.texi:52: missing @ftable argument
 index_special_region_no_insertcopying.texi:53: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
 
b/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
index b8cd782763..2cd34916b8 100644
--- 
a/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
+++ 
b/tp/tests/indices/res_parser/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
@@ -2,5 +2,5 @@ index_special_region_no_insertcopying.texi:46: warning: @cindex 
missing argument
 index_special_region_no_insertcopying.texi:47: warning: missing name for @deffn
 index_special_region_no_insertcopying.texi:48: warning: missing name for 
@deffnx
 index_special_region_no_insertcopying.texi:49: warning: missing name for 
@deffnx
-index_special_region_no_insertcopying.texi:52: ftable requires an argument: 
the formatter for @item
+index_special_region_no_insertcopying.texi:52: missing @ftable argument
 index_special_region_no_insertcopying.texi:53: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser/index_special_region_no_region/index_special_region_no_region.2
 
b/tp/tests/indices/res_parser/index_special_region_no_region/index_special_region_no_region.2
index 3bf0422471..55cfeda05b 100644
--- 
a/tp/tests/indices/res_parser/index_special_region_no_region/index_special_region_no_region.2
+++ 
b/tp/tests/indices/res_parser/index_special_region_no_region/index_special_region_no_region.2
@@ -2,5 +2,5 @@ index_special_region_no_region.texi:47: warning: @cindex 
missing argument
 index_special_region_no_region.texi:48: warning: missing name for @deffn
 index_special_region_no_region.texi:49: warning: missing name for @deffnx
 index_special_region_no_region.texi:50: warning: missing name for @deffnx
-index_special_region_no_region.texi:53: ftable requires an argument: the 
formatter for @item
+index_special_region_no_region.texi:53: missing @ftable argument
 index_special_region_no_region.texi:54: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser/index_special_region_no_region_html/index_special_region_no_region.2
 
b/tp/tests/indices/res_parser/index_special_region_no_region_html/index_special_region_no_region.2
index 3bf0422471..55cfeda05b 100644
--- 
a/tp/tests/indices/res_parser/index_special_region_no_region_html/index_special_region_no_region.2
+++ 
b/tp/tests/indices/res_parser/index_special_region_no_region_html/index_special_region_no_region.2
@@ -2,5 +2,5 @@ index_special_region_no_region.texi:47: warning: @cindex 
missing argument
 index_special_region_no_region.texi:48: warning: missing name for @deffn
 index_special_region_no_region.texi:49: warning: missing name for @deffnx
 index_special_region_no_region.texi:50: warning: missing name for @deffnx
-index_special_region_no_region.texi:53: ftable requires an argument: the 
formatter for @item
+index_special_region_no_region.texi:53: missing @ftable argument
 index_special_region_no_region.texi:54: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser_info/index_special_region/index_special_region.2 
b/tp/tests/indices/res_parser_info/index_special_region/index_special_region.2
index 53b12014ce..dac29abd7d 100644
--- 
a/tp/tests/indices/res_parser_info/index_special_region/index_special_region.2
+++ 
b/tp/tests/indices/res_parser_info/index_special_region/index_special_region.2
@@ -3,7 +3,7 @@ index_special_region.texi:46: warning: @cindex missing argument
 index_special_region.texi:47: warning: missing name for @deffn
 index_special_region.texi:48: warning: missing name for @deffnx
 index_special_region.texi:49: warning: missing name for @deffnx
-index_special_region.texi:52: ftable requires an argument: the formatter for 
@item
+index_special_region.texi:52: missing @ftable argument
 index_special_region.texi:53: warning: @item missing argument
 index_special_region.texi:8: @anchor output more than once: Copying information
 index_special_region.texi:11: @anchor output more than once: Public domain 
reference
diff --git 
a/tp/tests/indices/res_parser_info/index_special_region_html/index_special_region.2
 
b/tp/tests/indices/res_parser_info/index_special_region_html/index_special_region.2
index 58142fc8f3..127a79aad7 100644
--- 
a/tp/tests/indices/res_parser_info/index_special_region_html/index_special_region.2
+++ 
b/tp/tests/indices/res_parser_info/index_special_region_html/index_special_region.2
@@ -2,5 +2,5 @@ index_special_region.texi:46: warning: @cindex missing argument
 index_special_region.texi:47: warning: missing name for @deffn
 index_special_region.texi:48: warning: missing name for @deffnx
 index_special_region.texi:49: warning: missing name for @deffnx
-index_special_region.texi:52: ftable requires an argument: the formatter for 
@item
+index_special_region.texi:52: missing @ftable argument
 index_special_region.texi:53: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
 
b/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
index 0686037c2e..7b6e75cbb4 100644
--- 
a/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
+++ 
b/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying/index_special_region_no_insertcopying.2
@@ -3,5 +3,5 @@ index_special_region_no_insertcopying.texi:46: warning: @cindex 
missing argument
 index_special_region_no_insertcopying.texi:47: warning: missing name for @deffn
 index_special_region_no_insertcopying.texi:48: warning: missing name for 
@deffnx
 index_special_region_no_insertcopying.texi:49: warning: missing name for 
@deffnx
-index_special_region_no_insertcopying.texi:52: ftable requires an argument: 
the formatter for @item
+index_special_region_no_insertcopying.texi:52: missing @ftable argument
 index_special_region_no_insertcopying.texi:53: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
 
b/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
index b8cd782763..2cd34916b8 100644
--- 
a/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
+++ 
b/tp/tests/indices/res_parser_info/index_special_region_no_insertcopying_html/index_special_region_no_insertcopying.2
@@ -2,5 +2,5 @@ index_special_region_no_insertcopying.texi:46: warning: @cindex 
missing argument
 index_special_region_no_insertcopying.texi:47: warning: missing name for @deffn
 index_special_region_no_insertcopying.texi:48: warning: missing name for 
@deffnx
 index_special_region_no_insertcopying.texi:49: warning: missing name for 
@deffnx
-index_special_region_no_insertcopying.texi:52: ftable requires an argument: 
the formatter for @item
+index_special_region_no_insertcopying.texi:52: missing @ftable argument
 index_special_region_no_insertcopying.texi:53: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser_info/index_special_region_no_region/index_special_region_no_region.2
 
b/tp/tests/indices/res_parser_info/index_special_region_no_region/index_special_region_no_region.2
index 6c506ee3a4..94a3f2c024 100644
--- 
a/tp/tests/indices/res_parser_info/index_special_region_no_region/index_special_region_no_region.2
+++ 
b/tp/tests/indices/res_parser_info/index_special_region_no_region/index_special_region_no_region.2
@@ -3,5 +3,5 @@ index_special_region_no_region.texi:47: warning: @cindex 
missing argument
 index_special_region_no_region.texi:48: warning: missing name for @deffn
 index_special_region_no_region.texi:49: warning: missing name for @deffnx
 index_special_region_no_region.texi:50: warning: missing name for @deffnx
-index_special_region_no_region.texi:53: ftable requires an argument: the 
formatter for @item
+index_special_region_no_region.texi:53: missing @ftable argument
 index_special_region_no_region.texi:54: warning: @item missing argument
diff --git 
a/tp/tests/indices/res_parser_info/index_special_region_no_region_html/index_special_region_no_region.2
 
b/tp/tests/indices/res_parser_info/index_special_region_no_region_html/index_special_region_no_region.2
index 3bf0422471..55cfeda05b 100644
--- 
a/tp/tests/indices/res_parser_info/index_special_region_no_region_html/index_special_region_no_region.2
+++ 
b/tp/tests/indices/res_parser_info/index_special_region_no_region_html/index_special_region_no_region.2
@@ -2,5 +2,5 @@ index_special_region_no_region.texi:47: warning: @cindex 
missing argument
 index_special_region_no_region.texi:48: warning: missing name for @deffn
 index_special_region_no_region.texi:49: warning: missing name for @deffnx
 index_special_region_no_region.texi:50: warning: missing name for @deffnx
-index_special_region_no_region.texi:53: ftable requires an argument: the 
formatter for @item
+index_special_region_no_region.texi:53: missing @ftable argument
 index_special_region_no_region.texi:54: warning: @item missing argument
diff --git a/tp/tests/layout/res_parser/formatting/formatting.2 
b/tp/tests/layout/res_parser/formatting/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting/formatting.2
+++ b/tp/tests/layout/res_parser/formatting/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_chm/formatting.2 
b/tp/tests/layout/res_parser/formatting_chm/formatting.2
index c5f1899c35..1fb32c80d9 100644
--- a/tp/tests/layout/res_parser/formatting_chm/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_chm/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_docbook/formatting.2 
b/tp/tests/layout/res_parser/formatting_docbook/formatting.2
index e9db4fb117..d4bdfbb0a4 100644
--- a/tp/tests/layout/res_parser/formatting_docbook/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_docbook/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2 
b/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_epub/formatting.2 
b/tp/tests/layout/res_parser/formatting_epub/formatting.2
index 03e797ffdf..6e1ea9d8d2 100644
--- a/tp/tests/layout/res_parser/formatting_epub/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_epub/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
index 03e797ffdf..6e1ea9d8d2 100644
--- a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_exotic/formatting.2 
b/tp/tests/layout/res_parser/formatting_exotic/formatting.2
index 33362f7723..a4ecc343d5 100644
--- a/tp/tests/layout/res_parser/formatting_exotic/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_exotic/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2 
b/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_html/formatting.2 
b/tp/tests/layout/res_parser/formatting_html/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_html/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_html/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_html32/formatting.2 
b/tp/tests/layout/res_parser/formatting_html32/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_html32/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_html32/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git 
a/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.2 
b/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.2
index 33362f7723..a4ecc343d5 100644
--- a/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2 
b/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_info/formatting.2 
b/tp/tests/layout/res_parser/formatting_info/formatting.2
index d05b1705aa..b13faaf489 100644
--- a/tp/tests/layout/res_parser/formatting_info/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_info/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git 
a/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.2 
b/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.2
index d05b1705aa..b13faaf489 100644
--- a/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_inline_css/formatting.2 
b/tp/tests/layout/res_parser/formatting_inline_css/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_inline_css/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_inline_css/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_latex/formatting.2 
b/tp/tests/layout/res_parser/formatting_latex/formatting.2
index 698e4cae3f..7efa0a4215 100644
--- a/tp/tests/layout/res_parser/formatting_latex/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_latex/formatting.2
@@ -45,7 +45,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -113,7 +113,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -182,7 +182,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -263,7 +263,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_macro_expand/formatting.2 
b/tp/tests/layout/res_parser/formatting_macro_expand/formatting.2
index c9542adcab..a7e6064bde 100644
--- a/tp/tests/layout/res_parser/formatting_macro_expand/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_macro_expand/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_mathjax/formatting.2 
b/tp/tests/layout/res_parser/formatting_mathjax/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_mathjax/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_mathjax/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_nodes/formatting.2 
b/tp/tests/layout/res_parser/formatting_nodes/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_nodes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_nodes/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git 
a/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2 
b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_plaintext/formatting.2 
b/tp/tests/layout/res_parser/formatting_plaintext/formatting.2
index 5b2f627796..4630dcaf73 100644
--- a/tp/tests/layout/res_parser/formatting_plaintext/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_plaintext/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_rawtext/formatting.2 
b/tp/tests/layout/res_parser/formatting_rawtext/formatting.2
index c9542adcab..a7e6064bde 100644
--- a/tp/tests/layout/res_parser/formatting_rawtext/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_rawtext/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2 
b/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2
index 940c2ba4ff..03730d0668 100644
--- a/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2
+++ b/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2
@@ -46,7 +46,7 @@ formatting_regions.texi:28: warning: @verb should not appear 
in @image (possibly
 formatting_regions.texi:28: @sp missing argument (possibly involving @mymacro)
 formatting_regions.texi:28: warning: @author not meaningful outside 
`@titlepage' and `@quotation' environments (possibly involving @mymacro)
 formatting_regions.texi:28: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-formatting_regions.texi:28: table requires an argument: the formatter for 
@item (possibly involving @mymacro)
+formatting_regions.texi:28: missing @table argument (possibly involving 
@mymacro)
 formatting_regions.texi:28: command @minus not accepting argument in brace 
should not be on @ftable line (possibly involving @mymacro)
 formatting_regions.texi:28: warning: missing name for @deffn (possibly 
involving @mymacro)
 formatting_regions.texi:28: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting_regions.texi:39: warning: @verb should not 
appear in @image (possibly
 formatting_regions.texi:39: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:39: @sp missing argument (possibly involving @mymacro)
 formatting_regions.texi:39: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-formatting_regions.texi:39: table requires an argument: the formatter for 
@item (possibly involving @mymacro)
+formatting_regions.texi:39: missing @table argument (possibly involving 
@mymacro)
 formatting_regions.texi:39: command @minus not accepting argument in brace 
should not be on @ftable line (possibly involving @mymacro)
 formatting_regions.texi:39: warning: missing name for @deffn (possibly 
involving @mymacro)
 formatting_regions.texi:39: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting_regions.texi:46: warning: @verb should not 
appear in @image (possibly
 formatting_regions.texi:46: @sp missing argument (possibly involving @mymacro)
 formatting_regions.texi:46: warning: @author not meaningful outside 
`@titlepage' and `@quotation' environments (possibly involving @mymacro)
 formatting_regions.texi:46: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-formatting_regions.texi:46: table requires an argument: the formatter for 
@item (possibly involving @mymacro)
+formatting_regions.texi:46: missing @table argument (possibly involving 
@mymacro)
 formatting_regions.texi:46: command @minus not accepting argument in brace 
should not be on @ftable line (possibly involving @mymacro)
 formatting_regions.texi:46: warning: missing name for @deffn (possibly 
involving @mymacro)
 formatting_regions.texi:46: misplaced } (possibly involving @mymacro)
@@ -255,7 +255,7 @@ formatting_regions.texi:49: warning: @verb should not 
appear in @image (possibly
 formatting_regions.texi:49: @sp missing argument (possibly involving @mymacro)
 formatting_regions.texi:49: warning: @author not meaningful outside 
`@titlepage' and `@quotation' environments (possibly involving @mymacro)
 formatting_regions.texi:49: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-formatting_regions.texi:49: table requires an argument: the formatter for 
@item (possibly involving @mymacro)
+formatting_regions.texi:49: missing @table argument (possibly involving 
@mymacro)
 formatting_regions.texi:49: command @minus not accepting argument in brace 
should not be on @ftable line (possibly involving @mymacro)
 formatting_regions.texi:49: warning: missing name for @deffn (possibly 
involving @mymacro)
 formatting_regions.texi:49: misplaced } (possibly involving @mymacro)
diff --git 
a/tp/tests/layout/res_parser/formatting_sort_element_counts/formatting.2 
b/tp/tests/layout/res_parser/formatting_sort_element_counts/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_sort_element_counts/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_sort_element_counts/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_textcontent/formatting.2 
b/tp/tests/layout/res_parser/formatting_textcontent/formatting.2
index c9542adcab..a7e6064bde 100644
--- a/tp/tests/layout/res_parser/formatting_textcontent/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_textcontent/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2 
b/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_xhtml/formatting.2 
b/tp/tests/layout/res_parser/formatting_xhtml/formatting.2
index ef33ce62e5..7f4ceb2c3a 100644
--- a/tp/tests/layout/res_parser/formatting_xhtml/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_xhtml/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_xml/formatting.2 
b/tp/tests/layout/res_parser/formatting_xml/formatting.2
index c9542adcab..a7e6064bde 100644
--- a/tp/tests/layout/res_parser/formatting_xml/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_xml/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)
diff --git a/tp/tests/nested_formats/res_parser/nested_table/nested_formats.2 
b/tp/tests/nested_formats/res_parser/nested_table/nested_formats.2
index 98290ef0bc..42263dfaf6 100644
--- a/tp/tests/nested_formats/res_parser/nested_table/nested_formats.2
+++ b/tp/tests/nested_formats/res_parser/nested_table/nested_formats.2
@@ -1,480 +1,480 @@
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:236: table requires an argument: the formatter for @item
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:236: missing @table argument
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:236: warning: @table has text but no @item
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:245: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:248: table requires an argument: the formatter for @item
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:248: missing @table argument
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:248: warning: @table has text but no @item
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:258: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:261: table requires an argument: the formatter for @item
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:261: missing @table argument
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:261: warning: @table has text but no @item
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:273: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:276: table requires an argument: the formatter for @item
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:276: missing @table argument
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:276: warning: @table has text but no @item
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:287: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:291: table requires an argument: the formatter for @item
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:291: missing @table argument
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:291: warning: @table has text but no @item
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:306: table requires an argument: the formatter for @item
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:306: missing @table argument
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:306: warning: @table has text but no @item
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:316: command @bullet not accepting argument in brace 
should not be on @table line
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:319: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:322: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:325: table requires an argument: the formatter for @item
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:325: missing @table argument
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:325: warning: @table has text but no @item
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:335: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:337: table requires an argument: the formatter for @item
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:337: missing @table argument
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:337: warning: @table has text but no @item
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:347: table requires an argument: the formatter for @item
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:347: missing @table argument
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:347: warning: @table has text but no @item
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: table requires an argument: the formatter for @item
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:355: missing @table argument
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:355: warning: @table has text but no @item
diff --git 
a/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.2 
b/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.2
index 98290ef0bc..42263dfaf6 100644
--- a/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.2
+++ b/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.2
@@ -1,480 +1,480 @@
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:233: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:233: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:233: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:236: table requires an argument: the formatter for @item
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:236: missing @table argument
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:237: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:237: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:237: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:237: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:236: warning: @table has text but no @item
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:242: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:242: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:242: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:242: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:245: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:245: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:245: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:245: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:245: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:248: table requires an argument: the formatter for @item
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:248: missing @table argument
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:249: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:249: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:249: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:249: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:248: warning: @table has text but no @item
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:255: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:255: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:255: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:255: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:258: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:258: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:258: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:258: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:258: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:261: table requires an argument: the formatter for @item
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:261: missing @table argument
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:262: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:262: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:262: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:262: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:261: warning: @table has text but no @item
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:270: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:270: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:270: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:270: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:273: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:273: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:273: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:273: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:273: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:276: table requires an argument: the formatter for @item
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:276: missing @table argument
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:277: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:277: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:277: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:277: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:276: warning: @table has text but no @item
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:283: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:283: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:283: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:283: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:287: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:287: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:287: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:287: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:287: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:291: table requires an argument: the formatter for @item
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:291: missing @table argument
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:292: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:292: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:292: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:292: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:291: warning: @table has text but no @item
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:303: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:303: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:303: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:303: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:306: table requires an argument: the formatter for @item
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:306: missing @table argument
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:307: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:307: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:307: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:307: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:306: warning: @table has text but no @item
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:313: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:313: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:313: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:313: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:316: command @bullet not accepting argument in brace 
should not be on @table line
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:319: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:319: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:319: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:319: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:319: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:322: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:322: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:322: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:322: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:322: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:325: table requires an argument: the formatter for @item
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:325: missing @table argument
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:326: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:326: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:326: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:326: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:325: warning: @table has text but no @item
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:332: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:332: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:332: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:332: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:335: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:335: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:335: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:335: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:335: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:337: table requires an argument: the formatter for @item
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:337: missing @table argument
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:338: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:338: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:338: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:338: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:337: warning: @table has text but no @item
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:344: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:344: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:344: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:344: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:347: table requires an argument: the formatter for @item
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:347: missing @table argument
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:348: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:348: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:348: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:348: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:347: warning: @table has text but no @item
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:353: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:353: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:353: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:353: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: table requires an argument: the formatter for @item
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:355: missing @table argument
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
-nested_formats.texi:356: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+nested_formats.texi:356: missing @table argument (possibly involving @mymacro)
 nested_formats.texi:356: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:356: warning: @table has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:355: warning: @table has text but no @item
diff --git a/tp/tests/tex_html/res_parser/formatting_singular/formatting.2 
b/tp/tests/tex_html/res_parser/formatting_singular/formatting.2
index ae62dfee8a..db7835c68f 100644
--- a/tp/tests/tex_html/res_parser/formatting_singular/formatting.2
+++ b/tp/tests/tex_html/res_parser/formatting_singular/formatting.2
@@ -46,7 +46,7 @@ formatting.texi:22: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:22: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:22: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:22: misplaced } (possibly involving @mymacro)
@@ -115,7 +115,7 @@ formatting.texi:32: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:32: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:32: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:32: misplaced } (possibly involving @mymacro)
@@ -185,7 +185,7 @@ formatting.texi:81: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:81: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:81: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:81: misplaced } (possibly involving @mymacro)
@@ -267,7 +267,7 @@ formatting.texi:86: warning: @verb should not appear in 
@image (possibly involvi
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
 formatting.texi:86: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
-formatting.texi:86: table requires an argument: the formatter for @item 
(possibly involving @mymacro)
+formatting.texi:86: missing @table argument (possibly involving @mymacro)
 formatting.texi:86: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
 formatting.texi:86: warning: missing name for @deffn (possibly involving 
@mymacro)
 formatting.texi:86: misplaced } (possibly involving @mymacro)



reply via email to

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