texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: Eliminate duplicate nesting warning messages


From: Gavin D. Smith
Subject: branch master updated: Eliminate duplicate nesting warning messages
Date: Fri, 03 Feb 2023 17:55:50 -0500

This is an automated email from the git hooks/post-receive script.

gavin pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 82827d804e Eliminate duplicate nesting warning messages
82827d804e is described below

commit 82827d804e217c65964a0c26ecea0579ae338e03
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Fri Feb 3 22:52:57 2023 +0000

    Eliminate duplicate nesting warning messages
    
    * tp/Texinfo/ParserNonXS.pm (%default_valid_nestings) <brace commands>,
    * tp/Texinfo/XS/parsetexi/parser.c (check_valid_nesting):
    Use the same nesting for contain_basic_inline_commands as for other
    brace commands.
---
 ChangeLog                                          |   9 +
 tp/Texinfo/ParserNonXS.pm                          |  14 +-
 tp/Texinfo/XS/parsetexi/parser.c                   |   3 +
 .../converters_tests/spaces_in_empty_node_names.pl |   9 -
 .../converters_tests/spaces_in_node_names.pl       |   9 -
 .../coverage_braces/contain_plain_text_nestings.pl |   9 -
 tp/t/results/coverage_braces/test_image.pl         | 225 ---------------------
 tp/t/results/coverage_braces/verb_in_xref.pl       |   9 -
 .../formats_encodings/at_commands_in_refs.pl       |   9 -
 .../at_commands_in_refs_latin1.pl                  |   9 -
 .../formats_encodings/at_commands_in_refs_utf8.pl  |   9 -
 tp/t/results/invalid_nestings/footnote_in_ref.pl   |   9 -
 tp/t/results/invalid_nestings/ignore_in_xref.pl    |   9 -
 tp/t/results/invalid_nestings/in_errormsg.pl       |  27 ---
 tp/t/results/invalid_nestings/item_in_ref.pl       |   9 -
 tp/t/results/invalid_nestings/quotation_in_ref.pl  |   9 -
 tp/t/results/invalid_nestings/ref_in_anchor.pl     |   9 -
 tp/t/results/invalid_nestings/ref_in_ref.pl        |   9 -
 tp/t/results/invalid_nestings/section_in_math.pl   |   9 -
 tp/t/results/invalid_nestings/verbatim_in_ref.pl   |   9 -
 .../res_parser/formatting_chm/formatting.2         |  16 --
 .../res_parser/formatting_docbook/formatting.2     |  16 --
 .../res_parser/formatting_epub/formatting.2        |  16 --
 .../res_parser/formatting_html32/formatting.2      |  16 --
 .../formatting_html_no_split/formatting.2          |  16 --
 .../res_parser/formatting_info/formatting.2        |  16 --
 .../res_parser/formatting_latex/formatting.2       |  16 --
 .../formatting_macro_expand/formatting.2           |  16 --
 .../res_parser/formatting_plaintext/formatting.2   |  16 --
 .../res_parser/formatting_rawtext/formatting.2     |  16 --
 .../formatting_regions/formatting_regions.2        |  16 --
 .../res_parser/formatting_textcontent/formatting.2 |  16 --
 .../res_parser/formatting_xhtml/formatting.2       |  16 --
 .../res_parser/formatting_xml/formatting.2         |  16 --
 .../formatting_enable_encoding/formatting.2        |  16 --
 .../res_parser/formatting_epub_nodes/formatting.2  |  16 --
 .../res_parser/formatting_exotic/formatting.2      |  16 --
 .../layout/res_parser/formatting_fr/formatting.2   |  16 --
 .../res_parser/formatting_fr_icons/formatting.2    |  16 --
 .../res_parser/formatting_fr_info/formatting.2     |  16 --
 .../formatting_info_ascii_punctuation/formatting.2 |  16 --
 .../formatting_info_disable_encoding/formatting.2  |  16 --
 .../res_parser/formatting_inline_css/formatting.2  |  16 --
 .../res_parser/formatting_mathjax/formatting.2     |  16 --
 .../formatting_numerical_entities/formatting.2     |  16 --
 .../formatting.2                                   |  16 --
 .../formatting_sort_element_counts/formatting.2    |  16 --
 .../res_parser/formatting_texi2html/formatting.2   |  16 --
 .../formatting_texi2html_nodes/formatting.2        |  16 --
 .../formatting_weird_quotes/formatting.2           |  16 --
 50 files changed, 22 insertions(+), 871 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 71a5bd9145..0f0ec52d77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2023-02-03  Gavin Smith <gavinsmith0123@gmail.com>
+
+       Eliminate duplicate nesting warning messages
+
+       * tp/Texinfo/ParserNonXS.pm (%default_valid_nestings) <brace commands>,
+       * tp/Texinfo/XS/parsetexi/parser.c (check_valid_nesting):
+       Use the same nesting for contain_basic_inline_commands as for other
+       brace commands.
+
 2023-02-03  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/ParserNonXS.pm (_close_current),
diff --git a/tp/Texinfo/ParserNonXS.pm b/tp/Texinfo/ParserNonXS.pm
index 71d6798fa4..12bd0be762 100644
--- a/tp/Texinfo/ParserNonXS.pm
+++ b/tp/Texinfo/ParserNonXS.pm
@@ -471,8 +471,7 @@ my %contain_basic_inline_with_refs_commands = 
(%sectioning_heading_commands,
 # commands that accept full text, but no block or top-level commands
 my %contain_full_text_commands;
 foreach my $brace_command (keys (%brace_commands)) {
-  next if (exists($contain_basic_inline_commands{$brace_command})
-           or exists($contain_plain_text_commands{$brace_command}));
+  next if (exists($contain_plain_text_commands{$brace_command}));
   if ($brace_commands{$brace_command} eq 'style_code'
       or $brace_commands{$brace_command} eq 'style_other'
       or $brace_commands{$brace_command} eq 'style_no_code') {
@@ -500,9 +499,16 @@ my %default_valid_nestings;
 foreach my $command (keys(%contain_plain_text_commands)) {
   $default_valid_nestings{$command} = \%in_plain_text_commands;
 }
+
+# Brace commands are now checked for basic inline content using
+# the stack of commands in 'nesting_context'.
+#
 foreach my $command (keys(%contain_basic_inline_commands)) {
-  $default_valid_nestings{$command} = \%in_basic_inline_commands;
+  if (!$brace_commands{$command}) {
+    $default_valid_nestings{$command} = \%in_basic_inline_commands;
+  }
 }
+
 foreach my $command (keys(%contain_full_text_commands),
                      keys(%contain_full_line_commands)) {
   $default_valid_nestings{$command} = \%in_full_text_commands;
@@ -516,7 +522,7 @@ foreach my $command 
(keys(%contain_basic_inline_with_refs_commands)) {
 # on heading specification commands lines, such as indicatric @-commands.
 foreach my $in_heading_spec (keys(%in_heading_spec_commands)) {
   foreach my $command (keys(%heading_spec_commands)) {
-    $default_valid_nestings{$command}->{$in_heading_spec} = 1
+    $default_valid_nestings{$command}->{$in_heading_spec} = 1;
   }
   foreach my $brace_command (keys (%brace_commands)) {
     if ($brace_commands{$brace_command} eq 'style_code'
diff --git a/tp/Texinfo/XS/parsetexi/parser.c b/tp/Texinfo/XS/parsetexi/parser.c
index 31450918ab..3e86bbef6b 100644
--- a/tp/Texinfo/XS/parsetexi/parser.c
+++ b/tp/Texinfo/XS/parsetexi/parser.c
@@ -1026,12 +1026,15 @@ check_valid_nesting (ELEMENT *current, enum command_id 
cmd)
   // much TODO here.
 
   if (outer_flags & CF_contain_basic_inline
+      && !(outer_flags & CF_brace)
       /* not in CF_contain_basic_inline since index entry flags are not set
          in command_data.txt, and also index commands are dynamically added */
       || outer_flags & CF_index_entry_command)
     {
       basic_inline_command = 1;
     }
+  /* Note that brace commands are now checked for basic inline content
+     in check_valid_nesting_context instead. */
 
   /* first three conditions check if in the main contents of the commands
      or in the arguments where there is checking of nesting */
diff --git a/tp/t/results/converters_tests/spaces_in_empty_node_names.pl 
b/tp/t/results/converters_tests/spaces_in_empty_node_names.pl
index 2d53fd87ab..60e9cacdd4 100644
--- a/tp/t/results/converters_tests/spaces_in_empty_node_names.pl
+++ b/tp/t/results/converters_tests/spaces_in_empty_node_names.pl
@@ -700,15 +700,6 @@ $result_errors{'spaces_in_empty_node_names'} = [
     'text' => '@verb should not appear in @node',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @ref
-',
-    'file_name' => '',
-    'line_nr' => 17,
-    'macro' => '',
-    'text' => '@verb should not appear in @ref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @ref
 ',
diff --git a/tp/t/results/converters_tests/spaces_in_node_names.pl 
b/tp/t/results/converters_tests/spaces_in_node_names.pl
index 6e05d8425b..116b8e95ae 100644
--- a/tp/t/results/converters_tests/spaces_in_node_names.pl
+++ b/tp/t/results/converters_tests/spaces_in_node_names.pl
@@ -865,15 +865,6 @@ $result_errors{'spaces_in_node_names'} = [
     'text' => '@verb should not appear in @node',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @ref
-',
-    'file_name' => '',
-    'line_nr' => 17,
-    'macro' => '',
-    'text' => '@verb should not appear in @ref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @ref
 ',
diff --git a/tp/t/results/coverage_braces/contain_plain_text_nestings.pl 
b/tp/t/results/coverage_braces/contain_plain_text_nestings.pl
index 5d09f74634..f7e10aa15e 100644
--- a/tp/t/results/coverage_braces/contain_plain_text_nestings.pl
+++ b/tp/t/results/coverage_braces/contain_plain_text_nestings.pl
@@ -937,15 +937,6 @@ $result_errors{'contain_plain_text_nestings'} = [
     'text' => '@code should not appear in @sortas',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @ref should not appear in @w
-',
-    'file_name' => '',
-    'line_nr' => 13,
-    'macro' => '',
-    'text' => '@ref should not appear in @w',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @ref should not appear anywhere inside @w
 ',
diff --git a/tp/t/results/coverage_braces/test_image.pl 
b/tp/t/results/coverage_braces/test_image.pl
index 39e27ee323..6bde2ae515 100644
--- a/tp/t/results/coverage_braces/test_image.pl
+++ b/tp/t/results/coverage_braces/test_image.pl
@@ -2828,15 +2828,6 @@ $result_menus{'test_image'} = {
 };
 
 $result_errors{'test_image'} = [
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 9,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -2846,15 +2837,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 9,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -2864,15 +2846,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 9,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -2882,15 +2855,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 9,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -2900,15 +2864,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 9,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -2918,15 +2873,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 14,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -2936,15 +2882,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 14,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -2954,15 +2891,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 14,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -2972,15 +2900,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 14,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -2990,15 +2909,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 14,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3008,15 +2918,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 20,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3026,15 +2927,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 20,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3044,15 +2936,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 20,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3062,15 +2945,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 20,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3080,15 +2954,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 20,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3098,15 +2963,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 24,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3116,15 +2972,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 24,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3134,15 +2981,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 24,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3152,15 +2990,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 24,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3170,15 +2999,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 24,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3188,15 +3008,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 26,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3206,15 +3017,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 26,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3224,15 +3026,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 26,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3242,15 +3035,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 26,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
@@ -3260,15 +3044,6 @@ $result_errors{'test_image'} = [
     'text' => '@verb should not appear anywhere inside @image',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @image (possibly 
involving @files-char)
-',
-    'file_name' => '',
-    'line_nr' => 26,
-    'macro' => 'files-char',
-    'text' => '@verb should not appear in @image',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @image 
(possibly involving @files-char)
 ',
diff --git a/tp/t/results/coverage_braces/verb_in_xref.pl 
b/tp/t/results/coverage_braces/verb_in_xref.pl
index edfcb3ee8e..e9f9555665 100644
--- a/tp/t/results/coverage_braces/verb_in_xref.pl
+++ b/tp/t/results/coverage_braces/verb_in_xref.pl
@@ -181,15 +181,6 @@ $result_menus{'verb_in_xref'} = {
 };
 
 $result_errors{'verb_in_xref'} = [
-  {
-    'error_line' => 'warning: @verb should not appear in @xref
-',
-    'file_name' => '',
-    'line_nr' => 3,
-    'macro' => '',
-    'text' => '@verb should not appear in @xref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @xref
 ',
diff --git a/tp/t/results/formats_encodings/at_commands_in_refs.pl 
b/tp/t/results/formats_encodings/at_commands_in_refs.pl
index d912209e76..d099055623 100644
--- a/tp/t/results/formats_encodings/at_commands_in_refs.pl
+++ b/tp/t/results/formats_encodings/at_commands_in_refs.pl
@@ -17757,15 +17757,6 @@ $result_errors{'at_commands_in_refs'} = [
     'text' => '@verb should not appear in @chapter',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @ref
-',
-    'file_name' => '',
-    'line_nr' => 162,
-    'macro' => '',
-    'text' => '@verb should not appear in @ref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @ref
 ',
diff --git a/tp/t/results/formats_encodings/at_commands_in_refs_latin1.pl 
b/tp/t/results/formats_encodings/at_commands_in_refs_latin1.pl
index a17d04a7d3..6d3314102c 100644
--- a/tp/t/results/formats_encodings/at_commands_in_refs_latin1.pl
+++ b/tp/t/results/formats_encodings/at_commands_in_refs_latin1.pl
@@ -17833,15 +17833,6 @@ $result_errors{'at_commands_in_refs_latin1'} = [
     'text' => '@verb should not appear in @chapter',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @ref
-',
-    'file_name' => '',
-    'line_nr' => 165,
-    'macro' => '',
-    'text' => '@verb should not appear in @ref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @ref
 ',
diff --git a/tp/t/results/formats_encodings/at_commands_in_refs_utf8.pl 
b/tp/t/results/formats_encodings/at_commands_in_refs_utf8.pl
index ae3262acb8..13c7f67fe8 100644
--- a/tp/t/results/formats_encodings/at_commands_in_refs_utf8.pl
+++ b/tp/t/results/formats_encodings/at_commands_in_refs_utf8.pl
@@ -17833,15 +17833,6 @@ $result_errors{'at_commands_in_refs_utf8'} = [
     'text' => '@verb should not appear in @chapter',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @verb should not appear in @ref
-',
-    'file_name' => '',
-    'line_nr' => 165,
-    'macro' => '',
-    'text' => '@verb should not appear in @ref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verb should not appear anywhere inside @ref
 ',
diff --git a/tp/t/results/invalid_nestings/footnote_in_ref.pl 
b/tp/t/results/invalid_nestings/footnote_in_ref.pl
index a34a63559c..b81b4072ec 100644
--- a/tp/t/results/invalid_nestings/footnote_in_ref.pl
+++ b/tp/t/results/invalid_nestings/footnote_in_ref.pl
@@ -169,15 +169,6 @@ $result_menus{'footnote_in_ref'} = {
 };
 
 $result_errors{'footnote_in_ref'} = [
-  {
-    'error_line' => 'warning: @footnote should not appear in @xref
-',
-    'file_name' => '',
-    'line_nr' => 3,
-    'macro' => '',
-    'text' => '@footnote should not appear in @xref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @footnote should not appear anywhere inside @xref
 ',
diff --git a/tp/t/results/invalid_nestings/ignore_in_xref.pl 
b/tp/t/results/invalid_nestings/ignore_in_xref.pl
index 7714a279a9..8785997e27 100644
--- a/tp/t/results/invalid_nestings/ignore_in_xref.pl
+++ b/tp/t/results/invalid_nestings/ignore_in_xref.pl
@@ -204,15 +204,6 @@ $result_menus{'ignore_in_xref'} = {
 };
 
 $result_errors{'ignore_in_xref'} = [
-  {
-    'error_line' => 'warning: @ignore should not appear in @xref
-',
-    'file_name' => '',
-    'line_nr' => 4,
-    'macro' => '',
-    'text' => '@ignore should not appear in @xref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @ignore should not appear anywhere inside @xref
 ',
diff --git a/tp/t/results/invalid_nestings/in_errormsg.pl 
b/tp/t/results/invalid_nestings/in_errormsg.pl
index 0355288e34..1b53c930d5 100644
--- a/tp/t/results/invalid_nestings/in_errormsg.pl
+++ b/tp/t/results/invalid_nestings/in_errormsg.pl
@@ -290,15 +290,6 @@ item
 ';
 
 $result_errors{'in_errormsg'} = [
-  {
-    'error_line' => 'warning: @anchor should not appear in @errormsg
-',
-    'file_name' => '',
-    'line_nr' => 3,
-    'macro' => '',
-    'text' => '@anchor should not appear in @errormsg',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @anchor should not appear anywhere inside 
@errormsg
 ',
@@ -308,15 +299,6 @@ $result_errors{'in_errormsg'} = [
     'text' => '@anchor should not appear anywhere inside @errormsg',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @ref should not appear in @errormsg
-',
-    'file_name' => '',
-    'line_nr' => 3,
-    'macro' => '',
-    'text' => '@ref should not appear in @errormsg',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @ref should not appear anywhere inside @errormsg
 ',
@@ -326,15 +308,6 @@ $result_errors{'in_errormsg'} = [
     'text' => '@ref should not appear anywhere inside @errormsg',
     'type' => 'warning'
   },
-  {
-    'error_line' => 'warning: @table should not appear in @errormsg
-',
-    'file_name' => '',
-    'line_nr' => 6,
-    'macro' => '',
-    'text' => '@table should not appear in @errormsg',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @table should not appear anywhere inside 
@errormsg
 ',
diff --git a/tp/t/results/invalid_nestings/item_in_ref.pl 
b/tp/t/results/invalid_nestings/item_in_ref.pl
index 94ac75395c..96f2609e48 100644
--- a/tp/t/results/invalid_nestings/item_in_ref.pl
+++ b/tp/t/results/invalid_nestings/item_in_ref.pl
@@ -243,15 +243,6 @@ Topsecond item
 ';
 
 $result_errors{'item_in_ref'} = [
-  {
-    'error_line' => 'warning: @item should not appear in @ref
-',
-    'file_name' => '',
-    'line_nr' => 6,
-    'macro' => '',
-    'text' => '@item should not appear in @ref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @item should not appear anywhere inside @ref
 ',
diff --git a/tp/t/results/invalid_nestings/quotation_in_ref.pl 
b/tp/t/results/invalid_nestings/quotation_in_ref.pl
index e55f5157d2..36fcccfa8d 100644
--- a/tp/t/results/invalid_nestings/quotation_in_ref.pl
+++ b/tp/t/results/invalid_nestings/quotation_in_ref.pl
@@ -201,15 +201,6 @@ $result_menus{'quotation_in_ref'} = {
 };
 
 $result_errors{'quotation_in_ref'} = [
-  {
-    'error_line' => 'warning: @quotation should not appear in @xref
-',
-    'file_name' => '',
-    'line_nr' => 4,
-    'macro' => '',
-    'text' => '@quotation should not appear in @xref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @quotation should not appear anywhere inside 
@xref
 ',
diff --git a/tp/t/results/invalid_nestings/ref_in_anchor.pl 
b/tp/t/results/invalid_nestings/ref_in_anchor.pl
index 1c9d76cd8d..12733db62e 100644
--- a/tp/t/results/invalid_nestings/ref_in_anchor.pl
+++ b/tp/t/results/invalid_nestings/ref_in_anchor.pl
@@ -144,15 +144,6 @@ $result_menus{'ref_in_anchor'} = {
 };
 
 $result_errors{'ref_in_anchor'} = [
-  {
-    'error_line' => 'warning: @ref should not appear in @anchor
-',
-    'file_name' => '',
-    'line_nr' => 2,
-    'macro' => '',
-    'text' => '@ref should not appear in @anchor',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @ref should not appear anywhere inside @anchor
 ',
diff --git a/tp/t/results/invalid_nestings/ref_in_ref.pl 
b/tp/t/results/invalid_nestings/ref_in_ref.pl
index 55001fec39..21803f2d8f 100644
--- a/tp/t/results/invalid_nestings/ref_in_ref.pl
+++ b/tp/t/results/invalid_nestings/ref_in_ref.pl
@@ -144,15 +144,6 @@ $result_menus{'ref_in_ref'} = {
 };
 
 $result_errors{'ref_in_ref'} = [
-  {
-    'error_line' => 'warning: @ref should not appear in @ref
-',
-    'file_name' => '',
-    'line_nr' => 2,
-    'macro' => '',
-    'text' => '@ref should not appear in @ref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @ref should not appear anywhere inside @ref
 ',
diff --git a/tp/t/results/invalid_nestings/section_in_math.pl 
b/tp/t/results/invalid_nestings/section_in_math.pl
index c031381421..61b6d7fbd0 100644
--- a/tp/t/results/invalid_nestings/section_in_math.pl
+++ b/tp/t/results/invalid_nestings/section_in_math.pl
@@ -251,15 +251,6 @@ $result_errors{'section_in_math'} = [
     'text' => '@section seen before @math closing brace',
     'type' => 'error'
   },
-  {
-    'error_line' => 'warning: @section should not appear in @math
-',
-    'file_name' => '',
-    'line_nr' => 8,
-    'macro' => '',
-    'text' => '@section should not appear in @math',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @section should not appear anywhere inside @math
 ',
diff --git a/tp/t/results/invalid_nestings/verbatim_in_ref.pl 
b/tp/t/results/invalid_nestings/verbatim_in_ref.pl
index 0b32f3bc79..95abd04ca0 100644
--- a/tp/t/results/invalid_nestings/verbatim_in_ref.pl
+++ b/tp/t/results/invalid_nestings/verbatim_in_ref.pl
@@ -200,15 +200,6 @@ $result_menus{'verbatim_in_ref'} = {
 };
 
 $result_errors{'verbatim_in_ref'} = [
-  {
-    'error_line' => 'warning: @verbatim should not appear in @xref
-',
-    'file_name' => '',
-    'line_nr' => 4,
-    'macro' => '',
-    'text' => '@verbatim should not appear in @xref',
-    'type' => 'warning'
-  },
   {
     'error_line' => 'warning: @verbatim should not appear anywhere inside @xref
 ',
diff --git a/tp/tests/coverage/res_parser/formatting_chm/formatting.2 
b/tp/tests/coverage/res_parser/formatting_chm/formatting.2
index 3363f2651f..f33e4094fc 100644
--- a/tp/tests/coverage/res_parser/formatting_chm/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_chm/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_docbook/formatting.2 
b/tp/tests/coverage/res_parser/formatting_docbook/formatting.2
index 7da0b7275a..ecb75295d0 100644
--- a/tp/tests/coverage/res_parser/formatting_docbook/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_docbook/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_epub/formatting.2 
b/tp/tests/coverage/res_parser/formatting_epub/formatting.2
index c36729a7c7..4067e87644 100644
--- a/tp/tests/coverage/res_parser/formatting_epub/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_epub/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_html32/formatting.2 
b/tp/tests/coverage/res_parser/formatting_html32/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/coverage/res_parser/formatting_html32/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_html32/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_html_no_split/formatting.2 
b/tp/tests/coverage/res_parser/formatting_html_no_split/formatting.2
index 5aa7cf000e..a9c4608797 100644
--- a/tp/tests/coverage/res_parser/formatting_html_no_split/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_html_no_split/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_info/formatting.2 
b/tp/tests/coverage/res_parser/formatting_info/formatting.2
index 4cab14e9b2..5b19ade320 100644
--- a/tp/tests/coverage/res_parser/formatting_info/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_info/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_latex/formatting.2 
b/tp/tests/coverage/res_parser/formatting_latex/formatting.2
index 29335adc37..873bf30718 100644
--- a/tp/tests/coverage/res_parser/formatting_latex/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_latex/formatting.2
@@ -38,13 +38,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -111,13 +107,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -183,13 +175,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -268,13 +256,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_macro_expand/formatting.2 
b/tp/tests/coverage/res_parser/formatting_macro_expand/formatting.2
index 7e06034bcc..53c0fbdfb3 100644
--- a/tp/tests/coverage/res_parser/formatting_macro_expand/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_macro_expand/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_plaintext/formatting.2 
b/tp/tests/coverage/res_parser/formatting_plaintext/formatting.2
index 621070375e..2068004a2f 100644
--- a/tp/tests/coverage/res_parser/formatting_plaintext/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_plaintext/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_rawtext/formatting.2 
b/tp/tests/coverage/res_parser/formatting_rawtext/formatting.2
index 7e06034bcc..53c0fbdfb3 100644
--- a/tp/tests/coverage/res_parser/formatting_rawtext/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_rawtext/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git 
a/tp/tests/coverage/res_parser/formatting_regions/formatting_regions.2 
b/tp/tests/coverage/res_parser/formatting_regions/formatting_regions.2
index 7d1affd4e1..8b3fdf4c14 100644
--- a/tp/tests/coverage/res_parser/formatting_regions/formatting_regions.2
+++ b/tp/tests/coverage/res_parser/formatting_regions/formatting_regions.2
@@ -39,13 +39,9 @@ formatting_regions.texi:27: unexpected @ (possibly involving 
@mymacro)
 formatting_regions.texi:27: @image missing filename argument (possibly 
involving @mymacro)
 formatting_regions.texi:27: @image missing filename argument (possibly 
involving @mymacro)
 formatting_regions.texi:27: @image missing filename argument (possibly 
involving @mymacro)
-formatting_regions.texi:27: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:27: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:27: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:27: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:27: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:27: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:27: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:27: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
 formatting_regions.texi:27: @sp missing argument (possibly involving @mymacro)
 formatting_regions.texi:27: warning: @author not meaningful outside 
`@titlepage' and `@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting_regions.texi:38: unexpected @ (possibly 
involving @mymacro)
 formatting_regions.texi:38: @image missing filename argument (possibly 
involving @mymacro)
 formatting_regions.texi:38: @image missing filename argument (possibly 
involving @mymacro)
 formatting_regions.texi:38: @image missing filename argument (possibly 
involving @mymacro)
-formatting_regions.texi:38: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:38: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:38: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:38: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:38: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:38: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:38: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:38: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
 formatting_regions.texi:38: @sp missing argument (possibly involving @mymacro)
 formatting_regions.texi:38: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting_regions.texi:45: unexpected @ (possibly 
involving @mymacro)
 formatting_regions.texi:45: @image missing filename argument (possibly 
involving @mymacro)
 formatting_regions.texi:45: @image missing filename argument (possibly 
involving @mymacro)
 formatting_regions.texi:45: @image missing filename argument (possibly 
involving @mymacro)
-formatting_regions.texi:45: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:45: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:45: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:45: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:45: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:45: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:45: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:45: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
 formatting_regions.texi:45: @sp missing argument (possibly involving @mymacro)
 formatting_regions.texi:45: warning: @author not meaningful outside 
`@titlepage' and `@quotation' environments (possibly involving @mymacro)
@@ -260,13 +248,9 @@ formatting_regions.texi:48: unexpected @ (possibly 
involving @mymacro)
 formatting_regions.texi:48: @image missing filename argument (possibly 
involving @mymacro)
 formatting_regions.texi:48: @image missing filename argument (possibly 
involving @mymacro)
 formatting_regions.texi:48: @image missing filename argument (possibly 
involving @mymacro)
-formatting_regions.texi:48: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:48: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:48: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:48: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:48: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:48: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
-formatting_regions.texi:48: warning: @verb should not appear in @image 
(possibly involving @mymacro)
 formatting_regions.texi:48: warning: @verb should not appear anywhere inside 
@image (possibly involving @mymacro)
 formatting_regions.texi:48: @sp missing argument (possibly involving @mymacro)
 formatting_regions.texi:48: warning: @author not meaningful outside 
`@titlepage' and `@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_textcontent/formatting.2 
b/tp/tests/coverage/res_parser/formatting_textcontent/formatting.2
index 7e06034bcc..53c0fbdfb3 100644
--- a/tp/tests/coverage/res_parser/formatting_textcontent/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_textcontent/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_xhtml/formatting.2 
b/tp/tests/coverage/res_parser/formatting_xhtml/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/coverage/res_parser/formatting_xhtml/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_xhtml/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/coverage/res_parser/formatting_xml/formatting.2 
b/tp/tests/coverage/res_parser/formatting_xml/formatting.2
index 7e06034bcc..53c0fbdfb3 100644
--- a/tp/tests/coverage/res_parser/formatting_xml/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_xml/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2 
b/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2 
b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
index c36729a7c7..4067e87644 100644
--- a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_exotic/formatting.2 
b/tp/tests/layout/res_parser/formatting_exotic/formatting.2
index 5aa7cf000e..a9c4608797 100644
--- a/tp/tests/layout/res_parser/formatting_exotic/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_exotic/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_fr/formatting.2 
b/tp/tests/layout/res_parser/formatting_fr/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/layout/res_parser/formatting_fr/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_fr/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2 
b/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_fr_info/formatting.2 
b/tp/tests/layout/res_parser/formatting_fr_info/formatting.2
index 4cab14e9b2..5b19ade320 100644
--- a/tp/tests/layout/res_parser/formatting_fr_info/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_fr_info/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git 
a/tp/tests/layout/res_parser/formatting_info_ascii_punctuation/formatting.2 
b/tp/tests/layout/res_parser/formatting_info_ascii_punctuation/formatting.2
index 4cab14e9b2..5b19ade320 100644
--- a/tp/tests/layout/res_parser/formatting_info_ascii_punctuation/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_info_ascii_punctuation/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git 
a/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.2 
b/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.2
index 4cab14e9b2..5b19ade320 100644
--- a/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_info_disable_encoding/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_inline_css/formatting.2 
b/tp/tests/layout/res_parser/formatting_inline_css/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/layout/res_parser/formatting_inline_css/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_inline_css/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_mathjax/formatting.2 
b/tp/tests/layout/res_parser/formatting_mathjax/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/layout/res_parser/formatting_mathjax/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_mathjax/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git 
a/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2 
b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git 
a/tp/tests/layout/res_parser/formatting_plaintext_ascii_punctuation/formatting.2
 
b/tp/tests/layout/res_parser/formatting_plaintext_ascii_punctuation/formatting.2
index 621070375e..2068004a2f 100644
--- 
a/tp/tests/layout/res_parser/formatting_plaintext_ascii_punctuation/formatting.2
+++ 
b/tp/tests/layout/res_parser/formatting_plaintext_ascii_punctuation/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git 
a/tp/tests/layout/res_parser/formatting_sort_element_counts/formatting.2 
b/tp/tests/layout/res_parser/formatting_sort_element_counts/formatting.2
index 5aa7cf000e..a9c4608797 100644
--- a/tp/tests/layout/res_parser/formatting_sort_element_counts/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_sort_element_counts/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_texi2html/formatting.2 
b/tp/tests/layout/res_parser/formatting_texi2html/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/layout/res_parser/formatting_texi2html/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_texi2html/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_texi2html_nodes/formatting.2 
b/tp/tests/layout/res_parser/formatting_texi2html_nodes/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/layout/res_parser/formatting_texi2html_nodes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_texi2html_nodes/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
diff --git a/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2 
b/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
index 7b744c4afe..c630e75cc6 100644
--- a/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
@@ -39,13 +39,9 @@ formatting.texi:22: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:22: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:22: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:22: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:22: @sp missing argument (possibly involving @mymacro)
 formatting.texi:22: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -113,13 +109,9 @@ formatting.texi:32: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:32: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:32: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:32: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:32: @sp missing argument (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
@@ -186,13 +178,9 @@ formatting.texi:81: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:81: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:81: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:81: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:81: @sp missing argument (possibly involving @mymacro)
 formatting.texi:81: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
@@ -272,13 +260,9 @@ formatting.texi:86: unexpected @ (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
 formatting.texi:86: @image missing filename argument (possibly involving 
@mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
-formatting.texi:86: warning: @verb should not appear in @image (possibly 
involving @mymacro)
 formatting.texi:86: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:86: @sp missing argument (possibly involving @mymacro)
 formatting.texi:86: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)



reply via email to

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