texinfo-commits
[Top][All Lists]
Advanced

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

[7496] check for defined and update tests


From: gavinsmith0123
Subject: [7496] check for defined and update tests
Date: Thu, 3 Nov 2016 16:49:04 +0000 (UTC)

Revision: 7496
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7496
Author:   gavin
Date:     2016-11-03 16:49:03 +0000 (Thu, 03 Nov 2016)
Log Message:
-----------
check for defined and update tests

Modified Paths:
--------------
    trunk/tp/Texinfo/Report.pm
    trunk/tp/tests/coverage/res_parser/formatting/formatting.2
    trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2
    trunk/tp/tests/coverage/res_parser/formatting_fr/formatting.2
    trunk/tp/tests/indices/res_parser_info/index_no_node/index_no_node.2
    
trunk/tp/tests/indices/res_parser_info/index_no_node_no_top/index_no_node_no_top.2
    trunk/tp/tests/layout/res_parser/formatting_chm/formatting.2
    trunk/tp/tests/layout/res_parser/formatting_docbook/formatting.2
    trunk/tp/tests/layout/res_parser/formatting_exotic/formatting.2
    trunk/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
    trunk/tp/tests/layout/res_parser/formatting_html/formatting.2
    trunk/tp/tests/layout/res_parser/formatting_html32/formatting.2
    trunk/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2
    trunk/tp/tests/layout/res_parser/formatting_nodes/formatting.2
    trunk/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2
    trunk/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
    trunk/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.2
    trunk/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.2
    trunk/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.2
    trunk/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.2
    trunk/tp/tests/nested_formats/res_parser/nested_table/nested_formats.2
    
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.2
    
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.2
    trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.2
    
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.2
    trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.2
    trunk/tp/tests/sectioning/res_parser/equivalent_nodes/equivalent_nodes.2
    
trunk/tp/tests/sectioning/res_parser/equivalent_nodes_no_node/equivalent_nodes.2
    
trunk/tp/tests/sectioning/res_parser/equivalent_nodes_test_renamed_nodes/equivalent_nodes.2
    
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes/equivalent_nodes.2
    
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes_no_node/equivalent_nodes.2
    
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes_test_renamed_nodes/equivalent_nodes.2

Modified: trunk/tp/Texinfo/Report.pm
===================================================================
--- trunk/tp/Texinfo/Report.pm  2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/Texinfo/Report.pm  2016-11-03 16:49:03 UTC (rev 7496)
@@ -58,9 +58,12 @@
 
   # Sort by filename, then by line number.
   @{$self->{'errors_warnings'}} = sort {
-    ($a->{'file_name'} ne $b->{'file_name'})
+    defined($a->{'file_name'}) and defined($b->{'file_name'})
+      and $a->{'file_name'} ne $b->{'file_name'}
     ? ($a->{'file_name'} cmp $b->{'filename'})
-    : ($a->{'line_nr'} <=> $b->{'line_nr'});
+    : (defined($a->{'line_nr'}) and defined($b->{'line_nr'})
+        ? ($a->{'line_nr'} <=> $b->{'line_nr'})
+        : 0)
   } @{$self->{'errors_warnings'}};
 
   return ($self->{'errors_warnings'}, $self->{'error_nrs'});

Modified: trunk/tp/tests/coverage/res_parser/formatting/formatting.2
===================================================================
--- trunk/tp/tests/coverage/res_parser/formatting/formatting.2  2016-11-03 
15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/coverage/res_parser/formatting/formatting.2  2016-11-03 
16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,27 +194,23 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
@@ -211,11 +219,3 @@
 formatting.texi:49: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2
===================================================================
--- trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2    
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2    
2016-11-03 16:49:03 UTC (rev 7496)
@@ -48,6 +48,10 @@
 formatting-cr.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting-cr.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting-cr.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting-cr.texi:35: unknown command `
 ' (possibly involving @mymacro)
 formatting-cr.texi:35: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
@@ -98,6 +102,10 @@
 formatting-cr.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting-cr.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting-cr.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting-cr.texi:45: unknown command `
 ' (possibly involving @mymacro)
 formatting-cr.texi:45: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
@@ -148,6 +156,10 @@
 formatting-cr.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting-cr.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting-cr.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting-cr.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting-cr.texi:49: unknown command `
 ' (possibly involving @mymacro)
 formatting-cr.texi:49: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
@@ -198,27 +210,23 @@
 formatting-cr.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting-cr.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting-cr.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting-cr.texi:90: warning: @menu in invalid context
-formatting-cr.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting-cr.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting-cr.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting-cr.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting-cr.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting-cr.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting-cr.texi:90: warning: @menu in invalid context
 formatting-cr.texi:25: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
 formatting-cr.texi:25: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting-cr.texi:25: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
 formatting-cr.texi:25: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting-cr.texi:25: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:25: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting-cr.texi:25: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:25: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting-cr.texi:35: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:35: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting-cr.texi:35: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting-cr.texi:35: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting-cr.texi:45: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
 formatting-cr.texi:45: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting-cr.texi:45: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
@@ -227,11 +235,3 @@
 formatting-cr.texi:49: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting-cr.texi:49: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
 formatting-cr.texi:49: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting-cr.texi:35: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
-formatting-cr.texi:35: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting-cr.texi:35: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
-formatting-cr.texi:35: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting-cr.texi:25: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
-formatting-cr.texi:25: warning: @image file address@hidden' (for HTML) not 
found, using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting-cr.texi:25: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
-formatting-cr.texi:25: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: trunk/tp/tests/coverage/res_parser/formatting_fr/formatting.2
===================================================================
--- trunk/tp/tests/coverage/res_parser/formatting_fr/formatting.2       
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/coverage/res_parser/formatting_fr/formatting.2       
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,27 +194,23 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
@@ -211,11 +219,3 @@
 formatting.texi:49: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: trunk/tp/tests/indices/res_parser_info/index_no_node/index_no_node.2
===================================================================
--- trunk/tp/tests/indices/res_parser_info/index_no_node/index_no_node.2        
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/indices/res_parser_info/index_no_node/index_no_node.2        
2016-11-03 16:49:03 UTC (rev 7496)
@@ -4,10 +4,9 @@
 index_no_node.texi:11: unknown index `bidule' in @printindex
 index_no_node.texi:19: warning: lowering the section level of @top appearing 
after a lower element
 index_no_node.texi: warning: document without nodes
-index_no_node.texi:43: warning: entry for index `cp' outside of any node
-index_no_node.texi:47: warning: entry for index `cp' outside of any node
-index_no_node.texi:37: warning: entry for index `cp' outside of any node
-index_no_node.texi:39: warning: entry for index `cp' outside of any node
+index_no_node.texi:5: warning: entry for index `cp' outside of any node
+index_no_node.texi:13: warning: entry for index `cp' outside of any node
+index_no_node.texi:15: warning: entry for index `cp' outside of any node
 index_no_node.texi:21: warning: entry for index `cp' outside of any node
 index_no_node.texi:22: warning: entry for index `cp' outside of any node
 index_no_node.texi:23: warning: entry for index `cp' outside of any node
@@ -15,6 +14,7 @@
 index_no_node.texi:25: warning: entry for index `cp' outside of any node
 index_no_node.texi:26: warning: entry for index `cp' outside of any node
 index_no_node.texi:31: warning: entry for index `cp' outside of any node
-index_no_node.texi:5: warning: entry for index `cp' outside of any node
-index_no_node.texi:13: warning: entry for index `cp' outside of any node
-index_no_node.texi:15: warning: entry for index `cp' outside of any node
+index_no_node.texi:37: warning: entry for index `cp' outside of any node
+index_no_node.texi:39: warning: entry for index `cp' outside of any node
+index_no_node.texi:43: warning: entry for index `cp' outside of any node
+index_no_node.texi:47: warning: entry for index `cp' outside of any node

Modified: 
trunk/tp/tests/indices/res_parser_info/index_no_node_no_top/index_no_node_no_top.2
===================================================================
--- 
trunk/tp/tests/indices/res_parser_info/index_no_node_no_top/index_no_node_no_top.2
  2016-11-03 15:16:21 UTC (rev 7495)
+++ 
trunk/tp/tests/indices/res_parser_info/index_no_node_no_top/index_no_node_no_top.2
  2016-11-03 16:49:03 UTC (rev 7496)
@@ -2,10 +2,9 @@
 index_no_node_no_top.texi:7: warning: printindex before document beginning: 
@printindex cp
 index_no_node_no_top.texi:11: unknown index `bidule' in @printindex
 index_no_node_no_top.texi: warning: document without nodes
-index_no_node_no_top.texi:43: warning: entry for index `cp' outside of any node
-index_no_node_no_top.texi:47: warning: entry for index `cp' outside of any node
-index_no_node_no_top.texi:37: warning: entry for index `cp' outside of any node
-index_no_node_no_top.texi:39: warning: entry for index `cp' outside of any node
+index_no_node_no_top.texi:5: warning: entry for index `cp' outside of any node
+index_no_node_no_top.texi:13: warning: entry for index `cp' outside of any node
+index_no_node_no_top.texi:15: warning: entry for index `cp' outside of any node
 index_no_node_no_top.texi:21: warning: entry for index `cp' outside of any node
 index_no_node_no_top.texi:22: warning: entry for index `cp' outside of any node
 index_no_node_no_top.texi:23: warning: entry for index `cp' outside of any node
@@ -13,6 +12,7 @@
 index_no_node_no_top.texi:25: warning: entry for index `cp' outside of any node
 index_no_node_no_top.texi:26: warning: entry for index `cp' outside of any node
 index_no_node_no_top.texi:31: warning: entry for index `cp' outside of any node
-index_no_node_no_top.texi:5: warning: entry for index `cp' outside of any node
-index_no_node_no_top.texi:13: warning: entry for index `cp' outside of any node
-index_no_node_no_top.texi:15: warning: entry for index `cp' outside of any node
+index_no_node_no_top.texi:37: warning: entry for index `cp' outside of any node
+index_no_node_no_top.texi:39: warning: entry for index `cp' outside of any node
+index_no_node_no_top.texi:43: warning: entry for index `cp' outside of any node
+index_no_node_no_top.texi:47: warning: entry for index `cp' outside of any node

Modified: trunk/tp/tests/layout/res_parser/formatting_chm/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_chm/formatting.2        
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_chm/formatting.2        
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,27 +194,23 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
@@ -211,11 +219,3 @@
 formatting.texi:49: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: trunk/tp/tests/layout/res_parser/formatting_docbook/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_docbook/formatting.2    
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_docbook/formatting.2    
2016-11-03 16:49:03 UTC (rev 7496)
@@ -45,12 +45,12 @@
 formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' not found, using `f-ile.jpg' 
(possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' not found, using 
address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' not found, using `f-ile.jpg' 
(possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' not found, using 
address@hidden' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' not found, using `f-ile.jpg' 
(possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' not found, using 
address@hidden' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' not found, using `f-ile.jpg' 
(possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' not found, using 
address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' not found, using `f-ile.jpg' 
(possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' not found, using 
address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' not found, using `f-ile.jpg' 
(possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' not found, using 
address@hidden' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' not found, using `f-ile.jpg' 
(possibly involving @mymacro)

Modified: trunk/tp/tests/layout/res_parser/formatting_exotic/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_exotic/formatting.2     
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_exotic/formatting.2     
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,23 +194,11 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)

Modified: trunk/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2   
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2   
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,27 +194,23 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
@@ -211,11 +219,3 @@
 formatting.texi:49: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: trunk/tp/tests/layout/res_parser/formatting_html/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_html/formatting.2       
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_html/formatting.2       
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,27 +194,23 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
@@ -211,11 +219,3 @@
 formatting.texi:49: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: trunk/tp/tests/layout/res_parser/formatting_html32/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_html32/formatting.2     
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_html32/formatting.2     
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,27 +194,23 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
@@ -211,11 +219,3 @@
 formatting.texi:49: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: trunk/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2 
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2 
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,27 +194,23 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
@@ -211,11 +219,3 @@
 formatting.texi:49: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: trunk/tp/tests/layout/res_parser/formatting_nodes/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_nodes/formatting.2      
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_nodes/formatting.2      
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,27 +194,23 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
@@ -211,11 +219,3 @@
 formatting.texi:49: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: 
trunk/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2    
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2    
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting_regions.texi:28: warning: command @ref missing a node or external 
manual argument (possibly involving @mymacro)
 formatting_regions.texi:28: warning: command @inforef missing a node or 
external manual argument (possibly involving @mymacro)
 formatting_regions.texi:28: warning: command @inforef missing a node or 
external manual argument (possibly involving @mymacro)
+formatting_regions.texi:28: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:28: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:28: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:28: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
 formatting_regions.texi:39: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
 formatting_regions.texi:39: warning: missing name for @deffnx (possibly 
involving @mymacro)
 formatting_regions.texi:39: warning: missing category for @deffnx (possibly 
involving @mymacro)
@@ -90,6 +94,10 @@
 formatting_regions.texi:39: warning: command @ref missing a node or external 
manual argument (possibly involving @mymacro)
 formatting_regions.texi:39: warning: command @inforef missing a node or 
external manual argument (possibly involving @mymacro)
 formatting_regions.texi:39: warning: command @inforef missing a node or 
external manual argument (possibly involving @mymacro)
+formatting_regions.texi:39: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:39: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:39: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:39: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
 formatting_regions.texi:46: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
 formatting_regions.texi:46: warning: missing name for @deffnx (possibly 
involving @mymacro)
 formatting_regions.texi:46: warning: missing category for @deffnx (possibly 
involving @mymacro)
@@ -136,6 +144,10 @@
 formatting_regions.texi:46: warning: command @ref missing a node or external 
manual argument (possibly involving @mymacro)
 formatting_regions.texi:46: warning: command @inforef missing a node or 
external manual argument (possibly involving @mymacro)
 formatting_regions.texi:46: warning: command @inforef missing a node or 
external manual argument (possibly involving @mymacro)
+formatting_regions.texi:46: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:46: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:46: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:46: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
 formatting_regions.texi:49: warning: @ctrl is obsolete. (possibly involving 
@mymacro)
 formatting_regions.texi:49: warning: missing name for @deffnx (possibly 
involving @mymacro)
 formatting_regions.texi:49: warning: missing category for @deffnx (possibly 
involving @mymacro)
@@ -182,34 +194,27 @@
 formatting_regions.texi:49: warning: command @ref missing a node or external 
manual argument (possibly involving @mymacro)
 formatting_regions.texi:49: warning: command @inforef missing a node or 
external manual argument (possibly involving @mymacro)
 formatting_regions.texi:49: warning: command @inforef missing a node or 
external manual argument (possibly involving @mymacro)
-formatting_regions.texi:93: warning: @menu in invalid context
-formatting_regions.texi:28: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:28: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:28: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:28: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:39: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:39: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:39: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:39: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:46: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:46: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:46: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
-formatting_regions.texi:46: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
 formatting_regions.texi:49: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
 formatting_regions.texi:49: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
 formatting_regions.texi:49: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
 formatting_regions.texi:49: @ref reference to nonexistent node `node' 
(possibly involving @mymacro)
+formatting_regions.texi:93: warning: @menu in invalid context
 formatting_regions.texi:28: @verbatiminclude: could not find simplest.texi 
(possibly involving @mymacro)
+formatting_regions.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting_regions.texi:28: warning: @image file address@hidden' (for HTML) 
not found, using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting_regions.texi:28: @verbatiminclude: could not find simplest.texi 
(possibly involving @mymacro)
+formatting_regions.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting_regions.texi:28: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting_regions.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting_regions.texi:28: warning: @image file address@hidden' (for HTML) 
not found, using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting_regions.texi:28: @verbatiminclude: could not find simplest.texi 
(possibly involving @mymacro)
+formatting_regions.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
+formatting_regions.texi:28: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting_regions.texi:39: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
 formatting_regions.texi:39: warning: @image file address@hidden' (for HTML) 
not found, using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting_regions.texi:39: @verbatiminclude: could not find simplest.texi 
(possibly involving @mymacro)
 formatting_regions.texi:39: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
 formatting_regions.texi:39: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting_regions.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
-formatting_regions.texi:28: warning: @image file address@hidden' (for HTML) 
not found, using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting_regions.texi:28: @verbatiminclude: could not find simplest.texi 
(possibly involving @mymacro)
-formatting_regions.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
-formatting_regions.texi:28: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting_regions.texi:46: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
 formatting_regions.texi:46: warning: @image file address@hidden' (for HTML) 
not found, using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting_regions.texi:46: @verbatiminclude: could not find simplest.texi 
(possibly involving @mymacro)
@@ -220,8 +225,3 @@
 formatting_regions.texi:49: @verbatiminclude: could not find simplest.texi 
(possibly involving @mymacro)
 formatting_regions.texi:49: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
 formatting_regions.texi:49: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting_regions.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
-formatting_regions.texi:28: warning: @image file address@hidden' (for HTML) 
not found, using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting_regions.texi:28: @verbatiminclude: could not find simplest.texi 
(possibly involving @mymacro)
-formatting_regions.texi:28: warning: @image file `f-ile' (for HTML) not found, 
using `f-ile.jpg' (possibly involving @mymacro)
-formatting_regions.texi:28: warning: @image file `filejk _" %@' (for HTML) not 
found, using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: trunk/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2       
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2       
2016-11-03 16:49:03 UTC (rev 7496)
@@ -44,6 +44,10 @@
 formatting.texi:25: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:25: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:35: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:35: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:35: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -90,6 +94,10 @@
 formatting.texi:35: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:35: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:45: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:45: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:45: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -136,6 +144,10 @@
 formatting.texi:45: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:45: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: warning: @ctrl is obsolete. (possibly involving @mymacro)
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: warning: missing category for @deffnx (possibly involving 
@mymacro)
@@ -182,27 +194,23 @@
 formatting.texi:49: warning: command @ref missing a node or external manual 
argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
 formatting.texi:49: warning: command @inforef missing a node or external 
manual argument (possibly involving @mymacro)
-formatting.texi:90: warning: @menu in invalid context
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:25: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:35: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
-formatting.texi:45: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
 formatting.texi:49: @ref reference to nonexistent node `node' (possibly 
involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
+formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:45: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
@@ -211,11 +219,3 @@
 formatting.texi:49: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
 formatting.texi:49: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:35: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file address@hidden' (for HTML) not found, 
using address@hidden ext e--xt}' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `f-ile' (for HTML) not found, using 
`f-ile.jpg' (possibly involving @mymacro)
-formatting.texi:25: warning: @image file `filejk _" %@' (for HTML) not found, 
using `filejk _" address@hidden' (possibly involving @mymacro)

Modified: 
trunk/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.2
===================================================================
--- trunk/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.2  
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.2  
2016-11-03 16:49:03 UTC (rev 7496)
@@ -6,6 +6,7 @@
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:236: warning: @enumerate has text but no @item
 nested_formats.texi:237: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -14,7 +15,6 @@
 nested_formats.texi:237: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:236: warning: @enumerate has text but no @item
 nested_formats.texi:242: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -31,6 +31,7 @@
 nested_formats.texi:245: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:248: warning: @enumerate has text but no @item
 nested_formats.texi:249: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -39,7 +40,6 @@
 nested_formats.texi:249: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:248: warning: @enumerate has text but no @item
 nested_formats.texi:255: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -56,6 +56,7 @@
 nested_formats.texi:258: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:261: warning: @enumerate has text but no @item
 nested_formats.texi:262: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -64,7 +65,6 @@
 nested_formats.texi:262: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:261: warning: @enumerate has text but no @item
 nested_formats.texi:270: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -81,6 +81,7 @@
 nested_formats.texi:273: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:276: warning: @enumerate has text but no @item
 nested_formats.texi:277: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -89,7 +90,6 @@
 nested_formats.texi:277: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:276: warning: @enumerate has text but no @item
 nested_formats.texi:283: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -106,6 +106,7 @@
 nested_formats.texi:287: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:291: warning: @enumerate has text but no @item
 nested_formats.texi:292: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -114,7 +115,6 @@
 nested_formats.texi:292: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:291: warning: @enumerate has text but no @item
 nested_formats.texi:303: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -123,6 +123,7 @@
 nested_formats.texi:303: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:306: warning: @enumerate has text but no @item
 nested_formats.texi:307: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -131,7 +132,6 @@
 nested_formats.texi:307: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:306: warning: @enumerate has text but no @item
 nested_formats.texi:313: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -157,6 +157,7 @@
 nested_formats.texi:322: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:325: warning: @enumerate has text but no @item
 nested_formats.texi:326: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -165,7 +166,6 @@
 nested_formats.texi:326: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:325: warning: @enumerate has text but no @item
 nested_formats.texi:332: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -182,6 +182,7 @@
 nested_formats.texi:335: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:337: warning: @enumerate has text but no @item
 nested_formats.texi:338: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -190,7 +191,6 @@
 nested_formats.texi:338: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:337: warning: @enumerate has text but no @item
 nested_formats.texi:344: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -199,6 +199,7 @@
 nested_formats.texi:344: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:347: warning: @enumerate has text but no @item
 nested_formats.texi:348: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -207,7 +208,6 @@
 nested_formats.texi:348: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:347: warning: @enumerate has text but no @item
 nested_formats.texi:353: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -216,6 +216,7 @@
 nested_formats.texi:353: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:355: warning: @enumerate has text but no @item
 nested_formats.texi:356: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -224,4 +225,3 @@
 nested_formats.texi:356: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: warning: @enumerate has text but no @item

Modified: 
trunk/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.2
===================================================================
--- trunk/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.2    
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.2    
2016-11-03 16:49:03 UTC (rev 7496)
@@ -6,6 +6,7 @@
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:236: warning: @itemize has text but no @item
 nested_formats.texi:237: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -14,7 +15,6 @@
 nested_formats.texi:237: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:236: warning: @itemize has text but no @item
 nested_formats.texi:242: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -31,6 +31,7 @@
 nested_formats.texi:245: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:248: warning: @itemize has text but no @item
 nested_formats.texi:249: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -39,7 +40,6 @@
 nested_formats.texi:249: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:248: warning: @itemize has text but no @item
 nested_formats.texi:255: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -56,6 +56,7 @@
 nested_formats.texi:258: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:261: warning: @itemize has text but no @item
 nested_formats.texi:262: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -64,7 +65,6 @@
 nested_formats.texi:262: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:261: warning: @itemize has text but no @item
 nested_formats.texi:270: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -81,6 +81,7 @@
 nested_formats.texi:273: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:276: warning: @itemize has text but no @item
 nested_formats.texi:277: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -89,7 +90,6 @@
 nested_formats.texi:277: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:276: warning: @itemize has text but no @item
 nested_formats.texi:283: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -106,6 +106,7 @@
 nested_formats.texi:287: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:291: warning: @itemize has text but no @item
 nested_formats.texi:292: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -114,7 +115,6 @@
 nested_formats.texi:292: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:291: warning: @itemize has text but no @item
 nested_formats.texi:303: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -123,6 +123,7 @@
 nested_formats.texi:303: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:306: warning: @itemize has text but no @item
 nested_formats.texi:307: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -131,7 +132,6 @@
 nested_formats.texi:307: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:306: warning: @itemize has text but no @item
 nested_formats.texi:313: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -157,6 +157,7 @@
 nested_formats.texi:322: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:325: warning: @itemize has text but no @item
 nested_formats.texi:326: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -165,7 +166,6 @@
 nested_formats.texi:326: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:325: warning: @itemize has text but no @item
 nested_formats.texi:332: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -182,6 +182,7 @@
 nested_formats.texi:335: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:337: warning: @itemize has text but no @item
 nested_formats.texi:338: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -190,7 +191,6 @@
 nested_formats.texi:338: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:337: warning: @itemize has text but no @item
 nested_formats.texi:344: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -199,6 +199,7 @@
 nested_formats.texi:344: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:347: warning: @itemize has text but no @item
 nested_formats.texi:348: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -207,7 +208,6 @@
 nested_formats.texi:348: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:347: warning: @itemize has text but no @item
 nested_formats.texi:353: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -216,6 +216,7 @@
 nested_formats.texi:353: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:355: warning: @itemize has text but no @item
 nested_formats.texi:356: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -224,4 +225,3 @@
 nested_formats.texi:356: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: warning: @itemize has text but no @item

Modified: trunk/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.2
===================================================================
--- trunk/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.2       
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.2       
2016-11-03 16:49:03 UTC (rev 7496)
@@ -1,5 +1,14 @@
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (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: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:236: warning: multiple @menu
 nested_formats.texi:237: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:237: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:237: warning: @menu in invalid context (possibly involving 
@mymacro)
@@ -296,12 +305,3 @@
 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: @menu in invalid context (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:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:236: warning: multiple @menu

Modified: 
trunk/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.2
===================================================================
--- trunk/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.2 
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.2 
2016-11-03 16:49:03 UTC (rev 7496)
@@ -16,6 +16,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:236: warning: empty multitable
+nested_formats.texi:236: warning: @multitable has text but no @item
 nested_formats.texi:237: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:237: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:237: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -33,7 +34,6 @@
 nested_formats.texi:237: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:236: warning: @multitable has text but no @item
 nested_formats.texi:242: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:242: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:242: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -69,6 +69,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:248: warning: empty multitable
+nested_formats.texi:248: warning: @multitable has text but no @item
 nested_formats.texi:249: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:249: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:249: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -86,7 +87,6 @@
 nested_formats.texi:249: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:248: warning: @multitable has text but no @item
 nested_formats.texi:255: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:255: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:255: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -122,6 +122,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:261: warning: empty multitable
+nested_formats.texi:261: warning: @multitable has text but no @item
 nested_formats.texi:262: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:262: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:262: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -139,7 +140,6 @@
 nested_formats.texi:262: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:261: warning: @multitable has text but no @item
 nested_formats.texi:270: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:270: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:270: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -175,6 +175,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:276: warning: empty multitable
+nested_formats.texi:276: warning: @multitable has text but no @item
 nested_formats.texi:277: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:277: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:277: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -192,7 +193,6 @@
 nested_formats.texi:277: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:276: warning: @multitable has text but no @item
 nested_formats.texi:283: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:283: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:283: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -228,6 +228,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:291: warning: empty multitable
+nested_formats.texi:291: warning: @multitable has text but no @item
 nested_formats.texi:292: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:292: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:292: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -245,7 +246,6 @@
 nested_formats.texi:292: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:291: warning: @multitable has text but no @item
 nested_formats.texi:303: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:303: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:303: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -264,6 +264,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:306: warning: empty multitable
+nested_formats.texi:306: warning: @multitable has text but no @item
 nested_formats.texi:307: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:307: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:307: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -281,7 +282,6 @@
 nested_formats.texi:307: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:306: warning: @multitable has text but no @item
 nested_formats.texi:313: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:313: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:313: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -335,6 +335,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:325: warning: empty multitable
+nested_formats.texi:325: warning: @multitable has text but no @item
 nested_formats.texi:326: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:326: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:326: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -352,7 +353,6 @@
 nested_formats.texi:326: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:325: warning: @multitable has text but no @item
 nested_formats.texi:332: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:332: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:332: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -388,6 +388,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:337: warning: empty multitable
+nested_formats.texi:337: warning: @multitable has text but no @item
 nested_formats.texi:338: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:338: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:338: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -405,7 +406,6 @@
 nested_formats.texi:338: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:337: warning: @multitable has text but no @item
 nested_formats.texi:344: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:344: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:344: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -424,6 +424,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:347: warning: empty multitable
+nested_formats.texi:347: warning: @multitable has text but no @item
 nested_formats.texi:348: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:348: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:348: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -441,7 +442,6 @@
 nested_formats.texi:348: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:347: warning: @multitable has text but no @item
 nested_formats.texi:353: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:353: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:353: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -460,6 +460,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:355: warning: empty multitable
+nested_formats.texi:355: warning: @multitable has text but no @item
 nested_formats.texi:356: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:356: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:356: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -477,4 +478,3 @@
 nested_formats.texi:356: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: warning: @multitable has text but no @item

Modified: trunk/tp/tests/nested_formats/res_parser/nested_table/nested_formats.2
===================================================================
--- trunk/tp/tests/nested_formats/res_parser/nested_table/nested_formats.2      
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/nested_formats/res_parser/nested_table/nested_formats.2      
2016-11-03 16:49:03 UTC (rev 7496)
@@ -16,6 +16,7 @@
 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:236: warning: @table has text but no @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:237: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -33,7 +34,6 @@
 nested_formats.texi:237: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -69,6 +69,7 @@
 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:248: warning: @table has text but no @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:249: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -86,7 +87,6 @@
 nested_formats.texi:249: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -122,6 +122,7 @@
 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:261: warning: @table has text but no @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:262: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -139,7 +140,6 @@
 nested_formats.texi:262: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -175,6 +175,7 @@
 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:276: warning: @table has text but no @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:277: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -192,7 +193,6 @@
 nested_formats.texi:277: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -228,6 +228,7 @@
 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:291: warning: @table has text but no @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:292: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -245,7 +246,6 @@
 nested_formats.texi:292: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -264,6 +264,7 @@
 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:306: warning: @table has text but no @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:307: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -281,7 +282,6 @@
 nested_formats.texi:307: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -335,6 +335,7 @@
 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:325: warning: @table has text but no @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:326: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -352,7 +353,6 @@
 nested_formats.texi:326: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -388,6 +388,7 @@
 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:337: warning: @table has text but no @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:338: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -405,7 +406,6 @@
 nested_formats.texi:338: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -424,6 +424,7 @@
 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:347: warning: @table has text but no @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:348: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -441,7 +442,6 @@
 nested_formats.texi:348: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -460,6 +460,7 @@
 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:355: warning: @table has text but no @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:356: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -477,4 +478,3 @@
 nested_formats.texi:356: table requires an argument: the formatter for @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: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: warning: @table has text but no @item

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.2
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.2 
    2016-11-03 15:16:21 UTC (rev 7495)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_enumerate/nested_formats.2 
    2016-11-03 16:49:03 UTC (rev 7496)
@@ -6,6 +6,7 @@
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:236: warning: @enumerate has text but no @item
 nested_formats.texi:237: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -14,7 +15,6 @@
 nested_formats.texi:237: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:236: warning: @enumerate has text but no @item
 nested_formats.texi:242: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -31,6 +31,7 @@
 nested_formats.texi:245: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:248: warning: @enumerate has text but no @item
 nested_formats.texi:249: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -39,7 +40,6 @@
 nested_formats.texi:249: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:248: warning: @enumerate has text but no @item
 nested_formats.texi:255: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -56,6 +56,7 @@
 nested_formats.texi:258: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:261: warning: @enumerate has text but no @item
 nested_formats.texi:262: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -64,7 +65,6 @@
 nested_formats.texi:262: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:261: warning: @enumerate has text but no @item
 nested_formats.texi:270: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -81,6 +81,7 @@
 nested_formats.texi:273: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:276: warning: @enumerate has text but no @item
 nested_formats.texi:277: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -89,7 +90,6 @@
 nested_formats.texi:277: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:276: warning: @enumerate has text but no @item
 nested_formats.texi:283: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -106,6 +106,7 @@
 nested_formats.texi:287: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:291: warning: @enumerate has text but no @item
 nested_formats.texi:292: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -114,7 +115,6 @@
 nested_formats.texi:292: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:291: warning: @enumerate has text but no @item
 nested_formats.texi:303: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -123,6 +123,7 @@
 nested_formats.texi:303: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:306: warning: @enumerate has text but no @item
 nested_formats.texi:307: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -131,7 +132,6 @@
 nested_formats.texi:307: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:306: warning: @enumerate has text but no @item
 nested_formats.texi:313: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -157,6 +157,7 @@
 nested_formats.texi:322: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:325: warning: @enumerate has text but no @item
 nested_formats.texi:326: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -165,7 +166,6 @@
 nested_formats.texi:326: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:325: warning: @enumerate has text but no @item
 nested_formats.texi:332: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -182,6 +182,7 @@
 nested_formats.texi:335: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:337: warning: @enumerate has text but no @item
 nested_formats.texi:338: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -190,7 +191,6 @@
 nested_formats.texi:338: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:337: warning: @enumerate has text but no @item
 nested_formats.texi:344: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -199,6 +199,7 @@
 nested_formats.texi:344: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:347: warning: @enumerate has text but no @item
 nested_formats.texi:348: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -207,7 +208,6 @@
 nested_formats.texi:348: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:347: warning: @enumerate has text but no @item
 nested_formats.texi:353: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -216,6 +216,7 @@
 nested_formats.texi:353: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:355: warning: @enumerate has text but no @item
 nested_formats.texi:356: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: warning: @enumerate has text but no @item (possibly 
involving @mymacro)
@@ -224,4 +225,3 @@
 nested_formats.texi:356: command @bullet not accepting argument in brace 
should not be on @table line (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: @enumerate has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: warning: @enumerate has text but no @item

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.2
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.2   
    2016-11-03 15:16:21 UTC (rev 7495)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_itemize/nested_formats.2   
    2016-11-03 16:49:03 UTC (rev 7496)
@@ -6,6 +6,7 @@
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:236: warning: @itemize has text but no @item
 nested_formats.texi:237: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:237: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -14,7 +15,6 @@
 nested_formats.texi:237: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:236: warning: @itemize has text but no @item
 nested_formats.texi:242: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:242: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -31,6 +31,7 @@
 nested_formats.texi:245: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:248: warning: @itemize has text but no @item
 nested_formats.texi:249: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:249: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -39,7 +40,6 @@
 nested_formats.texi:249: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:248: warning: @itemize has text but no @item
 nested_formats.texi:255: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:255: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -56,6 +56,7 @@
 nested_formats.texi:258: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:261: warning: @itemize has text but no @item
 nested_formats.texi:262: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:262: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -64,7 +65,6 @@
 nested_formats.texi:262: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:261: warning: @itemize has text but no @item
 nested_formats.texi:270: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:270: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -81,6 +81,7 @@
 nested_formats.texi:273: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:276: warning: @itemize has text but no @item
 nested_formats.texi:277: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:277: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -89,7 +90,6 @@
 nested_formats.texi:277: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:276: warning: @itemize has text but no @item
 nested_formats.texi:283: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:283: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -106,6 +106,7 @@
 nested_formats.texi:287: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:291: warning: @itemize has text but no @item
 nested_formats.texi:292: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:292: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -114,7 +115,6 @@
 nested_formats.texi:292: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:291: warning: @itemize has text but no @item
 nested_formats.texi:303: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:303: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -123,6 +123,7 @@
 nested_formats.texi:303: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:306: warning: @itemize has text but no @item
 nested_formats.texi:307: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:307: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -131,7 +132,6 @@
 nested_formats.texi:307: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:306: warning: @itemize has text but no @item
 nested_formats.texi:313: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:313: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -157,6 +157,7 @@
 nested_formats.texi:322: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:325: warning: @itemize has text but no @item
 nested_formats.texi:326: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:326: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -165,7 +166,6 @@
 nested_formats.texi:326: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:325: warning: @itemize has text but no @item
 nested_formats.texi:332: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:332: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -182,6 +182,7 @@
 nested_formats.texi:335: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:337: warning: @itemize has text but no @item
 nested_formats.texi:338: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:338: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -190,7 +191,6 @@
 nested_formats.texi:338: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:337: warning: @itemize has text but no @item
 nested_formats.texi:344: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:344: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -199,6 +199,7 @@
 nested_formats.texi:344: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:347: warning: @itemize has text but no @item
 nested_formats.texi:348: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:348: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -207,7 +208,6 @@
 nested_formats.texi:348: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:347: warning: @itemize has text but no @item
 nested_formats.texi:353: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:353: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -216,6 +216,7 @@
 nested_formats.texi:353: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
+nested_formats.texi:355: warning: @itemize has text but no @item
 nested_formats.texi:356: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: warning: @itemize has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:356: warning: @itemize has text but no @item (possibly 
involving @mymacro)
@@ -224,4 +225,3 @@
 nested_formats.texi:356: command @bullet not accepting argument in brace 
should not be on @table line (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: @itemize has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: warning: @itemize has text but no @item

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.2
===================================================================
--- trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.2  
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.2  
2016-11-03 16:49:03 UTC (rev 7496)
@@ -1,5 +1,14 @@
 nested_formats.texi:233: command @bullet not accepting argument in brace 
should not be on @table line (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: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
+nested_formats.texi:236: warning: multiple @menu
 nested_formats.texi:237: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:237: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:237: warning: @menu in invalid context (possibly involving 
@mymacro)
@@ -296,12 +305,3 @@
 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: @menu in invalid context (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:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:233: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:236: warning: multiple @menu

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.2
===================================================================
--- 
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.2
    2016-11-03 15:16:21 UTC (rev 7495)
+++ 
trunk/tp/tests/nested_formats/res_parser_info/nested_multitable/nested_formats.2
    2016-11-03 16:49:03 UTC (rev 7496)
@@ -16,6 +16,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:236: warning: empty multitable
+nested_formats.texi:236: warning: @multitable has text but no @item
 nested_formats.texi:237: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:237: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:237: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -33,7 +34,6 @@
 nested_formats.texi:237: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:236: warning: @multitable has text but no @item
 nested_formats.texi:242: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:242: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:242: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -69,6 +69,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:248: warning: empty multitable
+nested_formats.texi:248: warning: @multitable has text but no @item
 nested_formats.texi:249: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:249: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:249: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -86,7 +87,6 @@
 nested_formats.texi:249: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:248: warning: @multitable has text but no @item
 nested_formats.texi:255: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:255: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:255: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -122,6 +122,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:261: warning: empty multitable
+nested_formats.texi:261: warning: @multitable has text but no @item
 nested_formats.texi:262: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:262: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:262: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -139,7 +140,6 @@
 nested_formats.texi:262: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:261: warning: @multitable has text but no @item
 nested_formats.texi:270: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:270: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:270: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -175,6 +175,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:276: warning: empty multitable
+nested_formats.texi:276: warning: @multitable has text but no @item
 nested_formats.texi:277: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:277: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:277: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -192,7 +193,6 @@
 nested_formats.texi:277: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:276: warning: @multitable has text but no @item
 nested_formats.texi:283: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:283: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:283: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -228,6 +228,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:291: warning: empty multitable
+nested_formats.texi:291: warning: @multitable has text but no @item
 nested_formats.texi:292: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:292: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:292: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -245,7 +246,6 @@
 nested_formats.texi:292: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:291: warning: @multitable has text but no @item
 nested_formats.texi:303: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:303: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:303: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -264,6 +264,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:306: warning: empty multitable
+nested_formats.texi:306: warning: @multitable has text but no @item
 nested_formats.texi:307: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:307: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:307: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -281,7 +282,6 @@
 nested_formats.texi:307: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:306: warning: @multitable has text but no @item
 nested_formats.texi:313: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:313: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:313: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -335,6 +335,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:325: warning: empty multitable
+nested_formats.texi:325: warning: @multitable has text but no @item
 nested_formats.texi:326: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:326: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:326: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -352,7 +353,6 @@
 nested_formats.texi:326: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:325: warning: @multitable has text but no @item
 nested_formats.texi:332: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:332: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:332: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -388,6 +388,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:337: warning: empty multitable
+nested_formats.texi:337: warning: @multitable has text but no @item
 nested_formats.texi:338: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:338: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:338: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -405,7 +406,6 @@
 nested_formats.texi:338: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:337: warning: @multitable has text but no @item
 nested_formats.texi:344: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:344: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:344: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -424,6 +424,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:347: warning: empty multitable
+nested_formats.texi:347: warning: @multitable has text but no @item
 nested_formats.texi:348: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:348: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:348: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -441,7 +442,6 @@
 nested_formats.texi:348: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:347: warning: @multitable has text but no @item
 nested_formats.texi:353: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:353: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:353: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -460,6 +460,7 @@
 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: @multitable has text but no @item (possibly 
involving @mymacro)
 nested_formats.texi:355: warning: empty multitable
+nested_formats.texi:355: warning: @multitable has text but no @item
 nested_formats.texi:356: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:356: warning: empty multitable (possibly involving 
@mymacro)
 nested_formats.texi:356: warning: @multitable has text but no @item (possibly 
involving @mymacro)
@@ -477,4 +478,3 @@
 nested_formats.texi:356: warning: empty multitable (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: @multitable has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: warning: @multitable has text but no @item

Modified: 
trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.2
===================================================================
--- trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.2 
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/nested_formats/res_parser_info/nested_table/nested_formats.2 
2016-11-03 16:49:03 UTC (rev 7496)
@@ -16,6 +16,7 @@
 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:236: warning: @table has text but no @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:237: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -33,7 +34,6 @@
 nested_formats.texi:237: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -69,6 +69,7 @@
 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:248: warning: @table has text but no @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:249: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -86,7 +87,6 @@
 nested_formats.texi:249: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -122,6 +122,7 @@
 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:261: warning: @table has text but no @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:262: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -139,7 +140,6 @@
 nested_formats.texi:262: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -175,6 +175,7 @@
 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:276: warning: @table has text but no @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:277: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -192,7 +193,6 @@
 nested_formats.texi:277: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -228,6 +228,7 @@
 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:291: warning: @table has text but no @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:292: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -245,7 +246,6 @@
 nested_formats.texi:292: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -264,6 +264,7 @@
 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:306: warning: @table has text but no @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:307: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -281,7 +282,6 @@
 nested_formats.texi:307: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -335,6 +335,7 @@
 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:325: warning: @table has text but no @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:326: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -352,7 +353,6 @@
 nested_formats.texi:326: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -388,6 +388,7 @@
 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:337: warning: @table has text but no @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:338: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -405,7 +406,6 @@
 nested_formats.texi:338: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -424,6 +424,7 @@
 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:347: warning: @table has text but no @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:348: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -441,7 +442,6 @@
 nested_formats.texi:348: table requires an argument: the formatter for @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: 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: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -460,6 +460,7 @@
 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:355: warning: @table has text but no @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:356: warning: @table has text but no @item (possibly 
involving @mymacro)
@@ -477,4 +478,3 @@
 nested_formats.texi:356: table requires an argument: the formatter for @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: warning: @table has text but no @item (possibly 
involving @mymacro)
-nested_formats.texi:355: warning: @table has text but no @item

Modified: 
trunk/tp/tests/sectioning/res_parser/equivalent_nodes/equivalent_nodes.2
===================================================================
--- trunk/tp/tests/sectioning/res_parser/equivalent_nodes/equivalent_nodes.2    
2016-11-03 15:16:21 UTC (rev 7495)
+++ trunk/tp/tests/sectioning/res_parser/equivalent_nodes/equivalent_nodes.2    
2016-11-03 16:49:03 UTC (rev 7496)
@@ -1,8 +1,8 @@
+equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
+equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
+equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:17: @float address@hidden' previously defined
-equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:25: warning: @ref to address@hidden', different from 
node name `node'
-equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
-equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
 equivalent_nodes-noderename.cnf:10: warning: nodes without a new name at the 
end of file
 equivalent_nodes.texi: warning: must specify a title with a title command or 
@top

Modified: 
trunk/tp/tests/sectioning/res_parser/equivalent_nodes_no_node/equivalent_nodes.2
===================================================================
--- 
trunk/tp/tests/sectioning/res_parser/equivalent_nodes_no_node/equivalent_nodes.2
    2016-11-03 15:16:21 UTC (rev 7495)
+++ 
trunk/tp/tests/sectioning/res_parser/equivalent_nodes_no_node/equivalent_nodes.2
    2016-11-03 16:49:03 UTC (rev 7496)
@@ -1,8 +1,8 @@
+equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
+equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
+equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:17: @float address@hidden' previously defined
-equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:25: warning: @ref to address@hidden', different from 
node name `node'
-equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
-equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
 equivalent_nodes-noderename.cnf:10: warning: nodes without a new name at the 
end of file
 equivalent_nodes.texi: warning: must specify a title with a title command or 
@top

Modified: 
trunk/tp/tests/sectioning/res_parser/equivalent_nodes_test_renamed_nodes/equivalent_nodes.2
===================================================================
--- 
trunk/tp/tests/sectioning/res_parser/equivalent_nodes_test_renamed_nodes/equivalent_nodes.2
 2016-11-03 15:16:21 UTC (rev 7495)
+++ 
trunk/tp/tests/sectioning/res_parser/equivalent_nodes_test_renamed_nodes/equivalent_nodes.2
 2016-11-03 16:49:03 UTC (rev 7496)
@@ -1,8 +1,8 @@
+equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
+equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
+equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:17: @float address@hidden' previously defined
-equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:25: warning: @ref to address@hidden', different from 
node name `node'
-equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
-equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
 equivalent_nodes-noderename.cnf:10: warning: nodes without a new name at the 
end of file
 equivalent_nodes.texi: warning: must specify a title with a title command or 
@top

Modified: 
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes/equivalent_nodes.2
===================================================================
--- 
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes/equivalent_nodes.2   
    2016-11-03 15:16:21 UTC (rev 7495)
+++ 
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes/equivalent_nodes.2   
    2016-11-03 16:49:03 UTC (rev 7496)
@@ -1,8 +1,8 @@
+equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
+equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
+equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:17: @float address@hidden' previously defined
-equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:25: warning: @ref to address@hidden', different from 
node name `node'
-equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
-equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
 equivalent_nodes-noderename.cnf:10: warning: nodes without a new name at the 
end of file
 equivalent_nodes.texi: warning: must specify a title with a title command or 
@top

Modified: 
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes_no_node/equivalent_nodes.2
===================================================================
--- 
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes_no_node/equivalent_nodes.2
       2016-11-03 15:16:21 UTC (rev 7495)
+++ 
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes_no_node/equivalent_nodes.2
       2016-11-03 16:49:03 UTC (rev 7496)
@@ -1,8 +1,8 @@
+equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
+equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
+equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:17: @float address@hidden' previously defined
-equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:25: warning: @ref to address@hidden', different from 
node name `node'
-equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
-equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
 equivalent_nodes-noderename.cnf:10: warning: nodes without a new name at the 
end of file
 equivalent_nodes.texi: warning: must specify a title with a title command or 
@top

Modified: 
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes_test_renamed_nodes/equivalent_nodes.2
===================================================================
--- 
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes_test_renamed_nodes/equivalent_nodes.2
    2016-11-03 15:16:21 UTC (rev 7495)
+++ 
trunk/tp/tests/sectioning/res_parser_html/equivalent_nodes_test_renamed_nodes/equivalent_nodes.2
    2016-11-03 16:49:03 UTC (rev 7496)
@@ -1,8 +1,8 @@
+equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
+equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
+equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:17: @float address@hidden' previously defined
-equivalent_nodes.texi:15: here is the previous definition as @node
 equivalent_nodes.texi:25: warning: @ref to address@hidden', different from 
node name `node'
-equivalent_nodes.texi:12: warning: @menu entry node name address@hidden' 
different from node name `node'
-equivalent_nodes.texi:5: warning: Next pointer address@hidden' (for node 
`before top') different from node name `node'
 equivalent_nodes-noderename.cnf:8: warning: no node to be renamed
 equivalent_nodes-noderename.cnf:10: warning: nodes without a new name at the 
end of file
 equivalent_nodes.texi: warning: must specify a title with a title command or 
@top




reply via email to

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