texinfo-commits
[Top][All Lists]
Advanced

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

[7472] check context of menus


From: gavinsmith0123
Subject: [7472] check context of menus
Date: Thu, 27 Oct 2016 17:39:15 +0000 (UTC)

Revision: 7472
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7472
Author:   gavin
Date:     2016-10-27 17:39:15 +0000 (Thu, 27 Oct 2016)
Log Message:
-----------
check context of menus

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Parser.pm
    trunk/tp/t/results/menu/menu_in_deffn.pl
    trunk/tp/t/results/menu/menu_in_example.pl
    trunk/tp/t/results/menu/sc_in_menu.pl
    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/coverage/res_parser/texi_formatting/formatting.2
    trunk/tp/tests/coverage/res_parser_info/formatting/formatting.2
    trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.2
    trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.2
    trunk/tp/tests/coverage/res_parser_info/texi_formatting/formatting.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_plaintext/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/layout/res_parser/formatting_xml/formatting.2
    trunk/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.2
    trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.2

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/ChangeLog     2016-10-27 17:39:15 UTC (rev 7472)
@@ -1,5 +1,13 @@
 2016-10-27  Gavin Smith  <address@hidden>
 
+       Reinstate change made on 2016-10-08 and reverted on 2016-10-23.
+
+       * tp/Texinfo/Parser.pm (_parse_texi): If 'menu' element is not 
+       directly under a "root element" (@node or sectioning), don't 
+       record it in the list of menus for that node, and issue a warning.
+
+2016-10-27  Gavin Smith  <address@hidden>
+
        * tp/texi2any.pl: Remove code for calling 'add_missing_menus' if 
        'validatemenus' is off.  It can add menus incorrectly if all the 
        menus in the node are not recorded, which could be the case

Modified: trunk/tp/Texinfo/Parser.pm
===================================================================
--- trunk/tp/Texinfo/Parser.pm  2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/Texinfo/Parser.pm  2016-10-27 17:39:15 UTC (rev 7472)
@@ -4810,7 +4810,12 @@
                                 $line_nr);
                     }
                   } elsif ($command eq 'menu') {
-                    push @{$self->{'current_node'}->{'menus'}}, $current;
+                    if ($root_commands{$current->{'parent'}->{'cmdname'}}) {
+                      push @{$self->{'current_node'}->{'menus'}}, $current;
+                    } else {
+                      $self->line_warn($self->__("address@hidden in invalid 
context"), 
+                                       $line_nr);
+                    }
                   }
                 } elsif ($command ne 'direntry') {
                   if ($self->{'SHOW_MENU'}) {

Modified: trunk/tp/t/results/menu/menu_in_deffn.pl
===================================================================
--- trunk/tp/t/results/menu/menu_in_deffn.pl    2016-10-27 17:21:13 UTC (rev 
7471)
+++ trunk/tp/t/results/menu/menu_in_deffn.pl    2016-10-27 17:39:15 UTC (rev 
7472)
@@ -429,31 +429,6 @@
   'extra' => {
     'normalized' => 'Top'
   },
-  'menu_child' => {
-    'extra' => {
-      'manual_content' => [
-        {
-          'text' => 'mynode'
-        }
-      ]
-    }
-  },
-  'menus' => [
-    {
-      'cmdname' => 'menu',
-      'extra' => {
-        'end_command' => {
-          'cmdname' => 'end',
-          'extra' => {
-            'command' => {},
-            'command_argument' => 'menu',
-            'text_arg' => 'menu'
-          }
-        }
-      }
-    }
-  ],
-  'node_next' => {},
   'node_up' => {
     'extra' => {
       'manual_content' => [
@@ -466,27 +441,26 @@
     'type' => 'top_node_up'
   }
 };
-$result_nodes{'menu_in_deffn'}{'menus'}[0]{'extra'}{'end_command'}{'extra'}{'command'}
 = $result_nodes{'menu_in_deffn'}{'menus'}[0];
-$result_nodes{'menu_in_deffn'}{'node_next'} = 
$result_nodes{'menu_in_deffn'}{'menu_child'};
 $result_nodes{'menu_in_deffn'}{'node_up'}{'extra'}{'top_node_up'} = 
$result_nodes{'menu_in_deffn'};
 
 $result_menus{'menu_in_deffn'} = {
   'cmdname' => 'node',
   'extra' => {
     'normalized' => 'Top'
-  },
-  'menu_child' => {
-    'extra' => {
-      'manual_content' => [
-        {
-          'text' => 'mynode'
-        }
-      ]
-    }
   }
 };
 
-$result_errors{'menu_in_deffn'} = [];
+$result_errors{'menu_in_deffn'} = [
+  {
+    'error_line' => ':4: warning: @menu in invalid context
+',
+    'file_name' => '',
+    'line_nr' => 4,
+    'macro' => '',
+    'text' => '@menu in invalid context',
+    'type' => 'warning'
+  }
+];
 
 
 1;

Modified: trunk/tp/t/results/menu/menu_in_example.pl
===================================================================
--- trunk/tp/t/results/menu/menu_in_example.pl  2016-10-27 17:21:13 UTC (rev 
7471)
+++ trunk/tp/t/results/menu/menu_in_example.pl  2016-10-27 17:39:15 UTC (rev 
7472)
@@ -736,31 +736,6 @@
   'extra' => {
     'normalized' => 'Top'
   },
-  'menu_child' => {
-    'extra' => {
-      'manual_content' => [
-        {
-          'text' => 'entry'
-        }
-      ]
-    }
-  },
-  'menus' => [
-    {
-      'cmdname' => 'menu',
-      'extra' => {
-        'end_command' => {
-          'cmdname' => 'end',
-          'extra' => {
-            'command' => {},
-            'command_argument' => 'menu',
-            'text_arg' => 'menu'
-          }
-        }
-      }
-    }
-  ],
-  'node_next' => {},
   'node_up' => {
     'extra' => {
       'manual_content' => [
@@ -773,27 +748,26 @@
     'type' => 'top_node_up'
   }
 };
-$result_nodes{'menu_in_example'}{'menus'}[0]{'extra'}{'end_command'}{'extra'}{'command'}
 = $result_nodes{'menu_in_example'}{'menus'}[0];
-$result_nodes{'menu_in_example'}{'node_next'} = 
$result_nodes{'menu_in_example'}{'menu_child'};
 $result_nodes{'menu_in_example'}{'node_up'}{'extra'}{'top_node_up'} = 
$result_nodes{'menu_in_example'};
 
 $result_menus{'menu_in_example'} = {
   'cmdname' => 'node',
   'extra' => {
     'normalized' => 'Top'
-  },
-  'menu_child' => {
-    'extra' => {
-      'manual_content' => [
-        {
-          'text' => 'entry'
-        }
-      ]
-    }
   }
 };
 
-$result_errors{'menu_in_example'} = [];
+$result_errors{'menu_in_example'} = [
+  {
+    'error_line' => ':4: warning: @menu in invalid context
+',
+    'file_name' => '',
+    'line_nr' => 4,
+    'macro' => '',
+    'text' => '@menu in invalid context',
+    'type' => 'warning'
+  }
+];
 
 
 
@@ -894,7 +868,7 @@
 
 
 
-$result_converted{'xml'}->{'menu_in_example'} = '<node name="Top" spaces=" 
"><nodename>Top</nodename><nodenext automatic="on">(entry)</nodenext><nodeup 
automatic="on">(dir)</nodeup></node>
+$result_converted{'xml'}->{'menu_in_example'} = '<node name="Top" spaces=" 
"><nodename>Top</nodename><nodeup automatic="on">(dir)</nodeup></node>
 
 <example endspaces=" ">
 <menu endspaces=" ">

Modified: trunk/tp/t/results/menu/sc_in_menu.pl
===================================================================
--- trunk/tp/t/results/menu/sc_in_menu.pl       2016-10-27 17:21:13 UTC (rev 
7471)
+++ trunk/tp/t/results/menu/sc_in_menu.pl       2016-10-27 17:39:15 UTC (rev 
7472)
@@ -1101,31 +1101,6 @@
     'extra' => {
       'normalized' => 'NODE'
     },
-    'menu_child' => {
-      'extra' => {
-        'manual_content' => [
-          {
-            'text' => 'dir'
-          }
-        ],
-        'normalized' => 'EXAMPLE-NODE'
-      }
-    },
-    'menus' => [
-      {
-        'cmdname' => 'menu',
-        'extra' => {
-          'end_command' => {
-            'cmdname' => 'end',
-            'extra' => {
-              'command' => {},
-              'command_argument' => 'menu',
-              'text_arg' => 'menu'
-            }
-          }
-        }
-      }
-    ],
     'node_prev' => {},
     'node_up' => {}
   },
@@ -1157,7 +1132,6 @@
     'type' => 'top_node_up'
   }
 };
-$result_nodes{'sc_in_menu'}{'menu_child'}{'menus'}[0]{'extra'}{'end_command'}{'extra'}{'command'}
 = $result_nodes{'sc_in_menu'}{'menu_child'}{'menus'}[0];
 $result_nodes{'sc_in_menu'}{'menu_child'}{'node_prev'} = 
$result_nodes{'sc_in_menu'};
 $result_nodes{'sc_in_menu'}{'menu_child'}{'node_up'} = 
$result_nodes{'sc_in_menu'};
 
$result_nodes{'sc_in_menu'}{'menus'}[0]{'extra'}{'end_command'}{'extra'}{'command'}
 = $result_nodes{'sc_in_menu'}{'menus'}[0];
@@ -1174,16 +1148,6 @@
     'extra' => {
       'normalized' => 'NODE'
     },
-    'menu_child' => {
-      'extra' => {
-        'manual_content' => [
-          {
-            'text' => 'dir'
-          }
-        ],
-        'normalized' => 'EXAMPLE-NODE'
-      }
-    },
     'menu_up' => {},
     'menu_up_hash' => {
       'Top' => 1
@@ -1192,7 +1156,17 @@
 };
 $result_menus{'sc_in_menu'}{'menu_child'}{'menu_up'} = 
$result_menus{'sc_in_menu'};
 
-$result_errors{'sc_in_menu'} = [];
+$result_errors{'sc_in_menu'} = [
+  {
+    'error_line' => ':19: warning: @menu in invalid context
+',
+    'file_name' => '',
+    'line_nr' => 19,
+    'macro' => '',
+    'text' => '@menu in invalid context',
+    'type' => 'warning'
+  }
+];
 
 
 

Modified: trunk/tp/tests/coverage/res_parser/formatting/formatting.2
===================================================================
--- trunk/tp/tests/coverage/res_parser/formatting/formatting.2  2016-10-27 
17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/coverage/res_parser/formatting/formatting.2  2016-10-27 
17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2
===================================================================
--- trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2    
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/coverage/res_parser/formatting_cr/formatting-cr.2    
2016-10-27 17:39:15 UTC (rev 7472)
@@ -198,6 +198,7 @@
 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)

Modified: trunk/tp/tests/coverage/res_parser/formatting_fr/formatting.2
===================================================================
--- trunk/tp/tests/coverage/res_parser/formatting_fr/formatting.2       
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/coverage/res_parser/formatting_fr/formatting.2       
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/coverage/res_parser/texi_formatting/formatting.2
===================================================================
--- trunk/tp/tests/coverage/res_parser/texi_formatting/formatting.2     
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/coverage/res_parser/texi_formatting/formatting.2     
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,3 +182,4 @@
 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

Modified: trunk/tp/tests/coverage/res_parser_info/formatting/formatting.2
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting/formatting.2     
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/coverage/res_parser_info/formatting/formatting.2     
2016-10-27 17:39:15 UTC (rev 7472)
@@ -42,6 +42,7 @@
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:49: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @ref node name should not contain `,' (possibly 
involving @mymacro)
 formatting.texi:25: warning: @inforef node name should not contain `,' 
(possibly involving @mymacro)
 formatting.texi:25: warning: @ref node name should not contain `,' (possibly 
involving @mymacro)

Modified: trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.2
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.2       
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/coverage/res_parser_info/formatting_cr/formatting-cr.2       
2016-10-27 17:39:15 UTC (rev 7472)
@@ -66,6 +66,7 @@
 formatting-cr.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting-cr.texi:49: command @bullet not accepting argument in brace should 
not be on @table line (possibly involving @mymacro)
 formatting-cr.texi:49: command @minus not accepting argument in brace should 
not be on @ftable line (possibly involving @mymacro)
+formatting-cr.texi:90: warning: @menu in invalid context
 formatting-cr.texi:25: warning: @ref node name should not contain `,' 
(possibly involving @mymacro)
 formatting-cr.texi:25: warning: @inforef node name should not contain `,' 
(possibly involving @mymacro)
 formatting-cr.texi:25: warning: @ref node name should not contain `,' 
(possibly involving @mymacro)

Modified: trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.2
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.2  
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/coverage/res_parser_info/formatting_fr/formatting.2  
2016-10-27 17:39:15 UTC (rev 7472)
@@ -42,6 +42,7 @@
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:49: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @ref node name should not contain `,' (possibly 
involving @mymacro)
 formatting.texi:25: warning: @inforef node name should not contain `,' 
(possibly involving @mymacro)
 formatting.texi:25: warning: @ref node name should not contain `,' (possibly 
involving @mymacro)

Modified: trunk/tp/tests/coverage/res_parser_info/texi_formatting/formatting.2
===================================================================
--- trunk/tp/tests/coverage/res_parser_info/texi_formatting/formatting.2        
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/coverage/res_parser_info/texi_formatting/formatting.2        
2016-10-27 17:39:15 UTC (rev 7472)
@@ -42,3 +42,4 @@
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:49: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context

Modified: trunk/tp/tests/layout/res_parser/formatting_chm/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_chm/formatting.2        
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_chm/formatting.2        
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/layout/res_parser/formatting_docbook/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_docbook/formatting.2    
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_docbook/formatting.2    
2016-10-27 17:39:15 UTC (rev 7472)
@@ -42,6 +42,7 @@
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:49: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
+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)

Modified: trunk/tp/tests/layout/res_parser/formatting_exotic/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_exotic/formatting.2     
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_exotic/formatting.2     
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2   
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2   
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/layout/res_parser/formatting_html/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_html/formatting.2       
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_html/formatting.2       
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/layout/res_parser/formatting_html32/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_html32/formatting.2     
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_html32/formatting.2     
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2 
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_html_nodes/formatting.2 
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/layout/res_parser/formatting_nodes/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_nodes/formatting.2      
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_nodes/formatting.2      
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.2  
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_plaintext/formatting.2  
2016-10-27 17:39:15 UTC (rev 7472)
@@ -42,6 +42,7 @@
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:49: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context
 formatting.texi:25: warning: @ref node name should not contain `,' (possibly 
involving @mymacro)
 formatting.texi:25: warning: @inforef node name should not contain `,' 
(possibly involving @mymacro)
 formatting.texi:45: warning: @ref node name should not contain `,' (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-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_regions/formatting_regions.2    
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2       
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2       
2016-10-27 17:39:15 UTC (rev 7472)
@@ -182,6 +182,7 @@
 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)

Modified: trunk/tp/tests/layout/res_parser/formatting_xml/formatting.2
===================================================================
--- trunk/tp/tests/layout/res_parser/formatting_xml/formatting.2        
2016-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/layout/res_parser/formatting_xml/formatting.2        
2016-10-27 17:39:15 UTC (rev 7472)
@@ -42,3 +42,4 @@
 formatting.texi:49: warning: missing name for @deffnx (possibly involving 
@mymacro)
 formatting.texi:49: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:49: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
+formatting.texi:90: warning: @menu in invalid context

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-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.2       
2016-10-27 17:39:15 UTC (rev 7472)
@@ -1,57 +1,300 @@
 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: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)
+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)
+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: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:237: warning: @menu in invalid context (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:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:242: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:242: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (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: @menu in invalid context (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:248: warning: @menu in invalid context
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (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: @menu in invalid context (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:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:255: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:255: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (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: @menu in invalid context (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:261: warning: @menu in invalid context
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (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: @menu in invalid context (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:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:270: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:270: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (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: @menu in invalid context (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:276: warning: @menu in invalid context
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (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: @menu in invalid context (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:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:283: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:283: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (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: @menu in invalid context (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:291: warning: @menu in invalid context
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (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: @menu in invalid context (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:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (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: @menu in invalid context (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:306: warning: @menu in invalid context
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (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: @menu in invalid context (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:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:313: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:313: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:316: command @bullet not accepting argument in brace 
should not be on @table line
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:319: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:319: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (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: @menu in invalid context (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:325: warning: @menu in invalid context
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (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: @menu in invalid context (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:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:332: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:332: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (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: @menu in invalid context (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:337: warning: @menu in invalid context
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (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: @menu in invalid context (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:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (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: @menu in invalid context (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:347: warning: @menu in invalid context
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (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: @menu in invalid context (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:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (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: @menu in invalid context (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:355: warning: @menu in invalid context
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (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: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)
@@ -62,246 +305,3 @@
 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: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:248: warning: multiple @menu
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:261: warning: multiple @menu
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:276: warning: multiple @menu
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:291: warning: multiple @menu
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:306: warning: multiple @menu
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:325: warning: multiple @menu
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:337: warning: multiple @menu
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:347: warning: multiple @menu
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:355: warning: multiple @menu
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)

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-10-27 17:21:13 UTC (rev 7471)
+++ trunk/tp/tests/nested_formats/res_parser_info/nested_menu/nested_formats.2  
2016-10-27 17:39:15 UTC (rev 7472)
@@ -1,57 +1,300 @@
 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: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)
+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)
+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: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:237: warning: @menu in invalid context (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:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:242: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:242: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:242: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:245: warning: @menu in invalid context (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: @menu in invalid context (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:248: warning: @menu in invalid context
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:249: warning: @menu in invalid context (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: @menu in invalid context (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:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:255: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:255: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:255: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:258: warning: @menu in invalid context (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: @menu in invalid context (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:261: warning: @menu in invalid context
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:262: warning: @menu in invalid context (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: @menu in invalid context (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:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:270: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:270: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:270: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:273: warning: @menu in invalid context (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: @menu in invalid context (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:276: warning: @menu in invalid context
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:277: warning: @menu in invalid context (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: @menu in invalid context (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:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:283: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:283: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:283: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:287: warning: @menu in invalid context (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: @menu in invalid context (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:291: warning: @menu in invalid context
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:292: warning: @menu in invalid context (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: @menu in invalid context (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:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:303: warning: @menu in invalid context (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: @menu in invalid context (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:306: warning: @menu in invalid context
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:307: warning: @menu in invalid context (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: @menu in invalid context (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:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:313: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:313: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:313: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 nested_formats.texi:316: command @bullet not accepting argument in brace 
should not be on @table line
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:319: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:319: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:319: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:322: warning: @menu in invalid context (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: @menu in invalid context (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:325: warning: @menu in invalid context
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:326: warning: @menu in invalid context (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: @menu in invalid context (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:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:332: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:332: warning: @menu in invalid context (possibly involving 
@mymacro)
 nested_formats.texi:332: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:335: warning: @menu in invalid context (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: @menu in invalid context (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:337: warning: @menu in invalid context
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:338: warning: @menu in invalid context (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: @menu in invalid context (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:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:344: warning: @menu in invalid context (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: @menu in invalid context (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:347: warning: @menu in invalid context
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:348: warning: @menu in invalid context (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: @menu in invalid context (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:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:353: warning: @menu in invalid context (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: @menu in invalid context (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:355: warning: @menu in invalid context
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (possibly involving 
@mymacro)
+nested_formats.texi:356: warning: @menu in invalid context (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: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)
@@ -62,246 +305,3 @@
 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: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:237: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:242: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:245: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:248: warning: multiple @menu
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:249: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:255: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:258: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:261: warning: multiple @menu
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:262: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:270: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:273: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:276: warning: multiple @menu
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:277: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:283: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:287: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:291: warning: multiple @menu
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:292: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:303: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:306: warning: multiple @menu
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:307: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:313: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:319: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:322: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:325: warning: multiple @menu
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:326: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:332: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:335: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:337: warning: multiple @menu
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:338: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:344: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:347: warning: multiple @menu
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:348: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:353: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:355: warning: multiple @menu
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)
-nested_formats.texi:356: warning: multiple @menu (possibly involving @mymacro)




reply via email to

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