texinfo-commits
[Top][All Lists]
Advanced

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

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


From: Patrice Dumas
Subject: branch master updated: * tp/Texinfo/ParserNonXS.pm (_end_line_starting_block), tp/Texinfo/XS/parsetexi/end_line.c (end_line_starting_block): change warning message based on mailing list feedback. Use command_data in C.
Date: Thu, 07 Mar 2024 04:12:09 -0500

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

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 0b7f5a91f4 * tp/Texinfo/ParserNonXS.pm (_end_line_starting_block), 
tp/Texinfo/XS/parsetexi/end_line.c (end_line_starting_block): change warning 
message based on mailing list feedback.  Use command_data in C.
0b7f5a91f4 is described below

commit 0b7f5a91f44b7e80dab81d688b6b9f7e205e6a0e
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Thu Mar 7 10:12:07 2024 +0100

    * tp/Texinfo/ParserNonXS.pm (_end_line_starting_block),
    tp/Texinfo/XS/parsetexi/end_line.c (end_line_starting_block): change
    warning message based on mailing list feedback.  Use command_data in C.
---
 ChangeLog                                                |  6 ++++++
 tp/Texinfo/ParserNonXS.pm                                |  5 ++---
 tp/Texinfo/XS/parsetexi/end_line.c                       | 10 ++++------
 tp/t/results/html_tests/itemize_arguments.pl             |  4 ++--
 .../html_tests/itemize_arguments_enable_encoding.pl      |  4 ++--
 tp/t/results/itemize/asis_as_itemize_argument.pl         |  4 ++--
 tp/t/results/itemize/itemize_in_example.pl               |  4 ++--
 tp/tests/coverage/res_parser/formatting_chm/formatting.2 | 16 ++++++++--------
 .../coverage/res_parser/formatting_docbook/formatting.2  | 16 ++++++++--------
 .../coverage/res_parser/formatting_epub/formatting.2     | 16 ++++++++--------
 .../coverage/res_parser/formatting_html32/formatting.2   | 16 ++++++++--------
 .../res_parser/formatting_html_no_split/formatting.2     | 16 ++++++++--------
 .../coverage/res_parser/formatting_info/formatting.2     | 16 ++++++++--------
 .../coverage/res_parser/formatting_latex/formatting.2    | 16 ++++++++--------
 .../res_parser/formatting_macro_expand/formatting.2      | 16 ++++++++--------
 .../res_parser/formatting_plaintext/formatting.2         | 16 ++++++++--------
 .../coverage/res_parser/formatting_rawtext/formatting.2  | 16 ++++++++--------
 .../res_parser/formatting_regions/formatting_regions.2   | 16 ++++++++--------
 .../res_parser/formatting_textcontent/formatting.2       | 16 ++++++++--------
 .../coverage/res_parser/formatting_xhtml/formatting.2    | 16 ++++++++--------
 tp/tests/coverage/res_parser/formatting_xml/formatting.2 | 16 ++++++++--------
 .../res_parser/formatting_enable_encoding/formatting.2   | 16 ++++++++--------
 .../layout/res_parser/formatting_epub_nodes/formatting.2 | 16 ++++++++--------
 .../layout/res_parser/formatting_exotic/formatting.2     | 16 ++++++++--------
 tp/tests/layout/res_parser/formatting_fr/formatting.2    | 16 ++++++++--------
 .../layout/res_parser/formatting_fr_icons/formatting.2   | 16 ++++++++--------
 .../layout/res_parser/formatting_fr_info/formatting.2    | 16 ++++++++--------
 .../formatting_info_ascii_punctuation/formatting.2       | 16 ++++++++--------
 .../formatting_info_disable_encoding/formatting.2        | 16 ++++++++--------
 .../layout/res_parser/formatting_inline_css/formatting.2 | 16 ++++++++--------
 .../layout/res_parser/formatting_mathjax/formatting.2    | 16 ++++++++--------
 .../formatting_numerical_entities/formatting.2           | 16 ++++++++--------
 .../formatting_plaintext_ascii_punctuation/formatting.2  | 16 ++++++++--------
 .../formatting_sort_element_counts/formatting.2          | 16 ++++++++--------
 .../layout/res_parser/formatting_texi2html/formatting.2  | 16 ++++++++--------
 .../res_parser/formatting_texi2html_nodes/formatting.2   | 16 ++++++++--------
 .../res_parser/formatting_weird_quotes/formatting.2      | 16 ++++++++--------
 .../tex_html/res_parser/formatting_singular/formatting.2 | 16 ++++++++--------
 38 files changed, 268 insertions(+), 265 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c0317b8e8f..806e0633ee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-03-07  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/ParserNonXS.pm (_end_line_starting_block),
+       tp/Texinfo/XS/parsetexi/end_line.c (end_line_starting_block): change
+       warning message based on mailing list feedback.  Use command_data in C.
+
 2024-03-07  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/XS/main/build_perl_info.c (rebuild_document): do not
diff --git a/tp/Texinfo/ParserNonXS.pm b/tp/Texinfo/ParserNonXS.pm
index 8eb07e8f4f..0c937b0d82 100644
--- a/tp/Texinfo/ParserNonXS.pm
+++ b/tp/Texinfo/ParserNonXS.pm
@@ -4160,9 +4160,8 @@ sub _end_line_starting_block($$$)
         my $cmdname = $command_as_argument->{'cmdname'};
         if (defined($brace_commands{$cmdname})
             and $brace_commands{$cmdname} ne 'noarg') {
-          $self->_command_warn($current,
-       __("non-mark brace command `\@%s' as \@%s argument should have braces"),
-            $cmdname, $command);
+          $self->_command_warn($current, __("\@%s expected braces"),
+                               $cmdname);
         }
       }
     }
diff --git a/tp/Texinfo/XS/parsetexi/end_line.c 
b/tp/Texinfo/XS/parsetexi/end_line.c
index 0d161a95f6..6f5bde8062 100644
--- a/tp/Texinfo/XS/parsetexi/end_line.c
+++ b/tp/Texinfo/XS/parsetexi/end_line.c
@@ -990,13 +990,11 @@ end_line_starting_block (ELEMENT *current)
                        != ET_brace_command_arg))
             {
               enum command_id as_argument_cmd = k_command_as_arg->element->cmd;
-              if ((builtin_command_data[as_argument_cmd].flags & CF_brace)
-                  && builtin_command_data[as_argument_cmd].data != BRACE_noarg)
+              if ((command_data(as_argument_cmd).flags & CF_brace)
+                  && command_data(as_argument_cmd).data != BRACE_noarg)
                 {
-                  command_warn (current,
-       "non-mark brace command `@%s' as @%s argument should have braces",
-                            command_name(as_argument_cmd),
-                            command_name(command));
+                  command_warn (current, "@%s expected braces",
+                                command_name(as_argument_cmd));
                 }
             }
         }
diff --git a/tp/t/results/html_tests/itemize_arguments.pl 
b/tp/t/results/html_tests/itemize_arguments.pl
index ddea073f13..a5a61bb95e 100644
--- a/tp/t/results/html_tests/itemize_arguments.pl
+++ b/tp/t/results/html_tests/itemize_arguments.pl
@@ -4533,10 +4533,10 @@ item fr error error--> a
 
 $result_errors{'itemize_arguments'} = [
   {
-    'error_line' => 'warning: non-mark brace command `@asis\' as @itemize 
argument should have braces
+    'error_line' => 'warning: @asis expected braces
 ',
     'line_nr' => 94,
-    'text' => 'non-mark brace command `@asis\' as @itemize argument should 
have braces',
+    'text' => '@asis expected braces',
     'type' => 'warning'
   }
 ];
diff --git a/tp/t/results/html_tests/itemize_arguments_enable_encoding.pl 
b/tp/t/results/html_tests/itemize_arguments_enable_encoding.pl
index 2fdca50fda..6d17770d78 100644
--- a/tp/t/results/html_tests/itemize_arguments_enable_encoding.pl
+++ b/tp/t/results/html_tests/itemize_arguments_enable_encoding.pl
@@ -4533,10 +4533,10 @@ item fr error error--> a
 
 $result_errors{'itemize_arguments_enable_encoding'} = [
   {
-    'error_line' => 'warning: non-mark brace command `@asis\' as @itemize 
argument should have braces
+    'error_line' => 'warning: @asis expected braces
 ',
     'line_nr' => 94,
-    'text' => 'non-mark brace command `@asis\' as @itemize argument should 
have braces',
+    'text' => '@asis expected braces',
     'type' => 'warning'
   }
 ];
diff --git a/tp/t/results/itemize/asis_as_itemize_argument.pl 
b/tp/t/results/itemize/asis_as_itemize_argument.pl
index 879d53121c..4c188dc3da 100644
--- a/tp/t/results/itemize/asis_as_itemize_argument.pl
+++ b/tp/t/results/itemize/asis_as_itemize_argument.pl
@@ -118,10 +118,10 @@ $result_texts{'asis_as_itemize_argument'} = 'as is
 
 $result_errors{'asis_as_itemize_argument'} = [
   {
-    'error_line' => 'warning: non-mark brace command `@asis\' as @itemize 
argument should have braces
+    'error_line' => 'warning: @asis expected braces
 ',
     'line_nr' => 1,
-    'text' => 'non-mark brace command `@asis\' as @itemize argument should 
have braces',
+    'text' => '@asis expected braces',
     'type' => 'warning'
   }
 ];
diff --git a/tp/t/results/itemize/itemize_in_example.pl 
b/tp/t/results/itemize/itemize_in_example.pl
index b48f5c4944..4e6b686d86 100644
--- a/tp/t/results/itemize/itemize_in_example.pl
+++ b/tp/t/results/itemize/itemize_in_example.pl
@@ -597,10 +597,10 @@ in an itemize line
 
 $result_errors{'itemize_in_example'} = [
   {
-    'error_line' => 'warning: non-mark brace command `@asis\' as @itemize 
argument should have braces
+    'error_line' => 'warning: @asis expected braces
 ',
     'line_nr' => 8,
-    'text' => 'non-mark brace command `@asis\' as @itemize argument should 
have braces',
+    'text' => '@asis expected braces',
     'type' => 'warning'
   }
 ];
diff --git a/tp/tests/coverage/res_parser/formatting_chm/formatting.2 
b/tp/tests/coverage/res_parser/formatting_chm/formatting.2
index f6f031267c..bf1035c01e 100644
--- a/tp/tests/coverage/res_parser/formatting_chm/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_chm/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 041ab62910..e0bb1fbf45 100644
--- a/tp/tests/coverage/res_parser/formatting_docbook/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_docbook/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 fdf1ff0dac..e9632deb06 100644
--- a/tp/tests/coverage/res_parser/formatting_epub/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_epub/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/coverage/res_parser/formatting_html32/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_html32/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 1fdb09efd7..ec290bdc9a 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
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 5a529c0943..b5707e0c43 100644
--- a/tp/tests/coverage/res_parser/formatting_info/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_info/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 9a041b1a97..0853f49fd0 100644
--- a/tp/tests/coverage/res_parser/formatting_latex/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_latex/formatting.2
@@ -44,8 +44,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -114,8 +114,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -185,8 +185,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -256,8 +256,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 291ac18d9c..8cdad4182b 100644
--- a/tp/tests/coverage/res_parser/formatting_macro_expand/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_macro_expand/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 283e4a5998..602465ccb0 100644
--- a/tp/tests/coverage/res_parser/formatting_plaintext/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_plaintext/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 291ac18d9c..8cdad4182b 100644
--- a/tp/tests/coverage/res_parser/formatting_rawtext/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_rawtext/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 a15f324618..676720b648 100644
--- a/tp/tests/coverage/res_parser/formatting_regions/formatting_regions.2
+++ b/tp/tests/coverage/res_parser/formatting_regions/formatting_regions.2
@@ -45,8 +45,8 @@ formatting_regions.texi:27: warning: @verb should not appear 
anywhere inside @im
 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)
-formatting_regions.texi:27: warning: non-mark brace command `@emph' as 
@itemize argument should have braces (possibly involving @mymacro)
-formatting_regions.texi:27: warning: non-mark brace command `@w' as @itemize 
argument should have braces (possibly involving @mymacro)
+formatting_regions.texi:27: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting_regions.texi:27: warning: @w expected braces (possibly involving 
@mymacro)
 formatting_regions.texi:27: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 formatting_regions.texi:27: missing @table argument (possibly involving 
@mymacro)
 formatting_regions.texi:27: command @minus not accepting argument in brace 
should not be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting_regions.texi:38: warning: @verb should not 
appear anywhere inside @im
 formatting_regions.texi:38: warning: @verb should not appear anywhere inside 
@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: warning: non-mark brace command `@emph' as 
@itemize argument should have braces (possibly involving @mymacro)
-formatting_regions.texi:38: warning: non-mark brace command `@w' as @itemize 
argument should have braces (possibly involving @mymacro)
+formatting_regions.texi:38: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting_regions.texi:38: warning: @w expected braces (possibly involving 
@mymacro)
 formatting_regions.texi:38: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 formatting_regions.texi:38: missing @table argument (possibly involving 
@mymacro)
 formatting_regions.texi:38: command @minus not accepting argument in brace 
should not be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting_regions.texi:45: warning: @verb should not 
appear anywhere inside @im
 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)
-formatting_regions.texi:45: warning: non-mark brace command `@emph' as 
@itemize argument should have braces (possibly involving @mymacro)
-formatting_regions.texi:45: warning: non-mark brace command `@w' as @itemize 
argument should have braces (possibly involving @mymacro)
+formatting_regions.texi:45: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting_regions.texi:45: warning: @w expected braces (possibly involving 
@mymacro)
 formatting_regions.texi:45: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 formatting_regions.texi:45: missing @table argument (possibly involving 
@mymacro)
 formatting_regions.texi:45: command @minus not accepting argument in brace 
should not be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting_regions.texi:48: warning: @verb should not 
appear anywhere inside @im
 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)
-formatting_regions.texi:48: warning: non-mark brace command `@emph' as 
@itemize argument should have braces (possibly involving @mymacro)
-formatting_regions.texi:48: warning: non-mark brace command `@w' as @itemize 
argument should have braces (possibly involving @mymacro)
+formatting_regions.texi:48: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting_regions.texi:48: warning: @w expected braces (possibly involving 
@mymacro)
 formatting_regions.texi:48: command @bullet not accepting argument in brace 
should not be on @table line (possibly involving @mymacro)
 formatting_regions.texi:48: missing @table argument (possibly involving 
@mymacro)
 formatting_regions.texi:48: command @minus not accepting argument in brace 
should not be on @ftable line (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 291ac18d9c..8cdad4182b 100644
--- a/tp/tests/coverage/res_parser/formatting_textcontent/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_textcontent/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/coverage/res_parser/formatting_xhtml/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_xhtml/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 291ac18d9c..8cdad4182b 100644
--- a/tp/tests/coverage/res_parser/formatting_xml/formatting.2
+++ b/tp/tests/coverage/res_parser/formatting_xml/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_enable_encoding/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 fdf1ff0dac..e9632deb06 100644
--- a/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_epub_nodes/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 1fdb09efd7..ec290bdc9a 100644
--- a/tp/tests/layout/res_parser/formatting_exotic/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_exotic/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/layout/res_parser/formatting_fr/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_fr/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_fr_icons/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 5a529c0943..b5707e0c43 100644
--- a/tp/tests/layout/res_parser/formatting_fr_info/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_fr_info/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 5a529c0943..b5707e0c43 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
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 5a529c0943..b5707e0c43 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
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/layout/res_parser/formatting_inline_css/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_inline_css/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/layout/res_parser/formatting_mathjax/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_mathjax/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_numerical_entities/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 283e4a5998..602465ccb0 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
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 1fdb09efd7..ec290bdc9a 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
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/layout/res_parser/formatting_texi2html/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_texi2html/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/layout/res_parser/formatting_texi2html_nodes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_texi2html_nodes/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (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 f6f031267c..bf1035c01e 100644
--- a/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
+++ b/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
diff --git a/tp/tests/tex_html/res_parser/formatting_singular/formatting.2 
b/tp/tests/tex_html/res_parser/formatting_singular/formatting.2
index b1e2f89365..96ef837f02 100644
--- a/tp/tests/tex_html/res_parser/formatting_singular/formatting.2
+++ b/tp/tests/tex_html/res_parser/formatting_singular/formatting.2
@@ -45,8 +45,8 @@ formatting.texi:22: warning: @verb should not appear anywhere 
inside @image (pos
 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)
-formatting.texi:22: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:22: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:22: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:22: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:22: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:22: missing @table argument (possibly involving @mymacro)
 formatting.texi:22: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -116,8 +116,8 @@ formatting.texi:32: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:32: warning: @verb should not appear anywhere inside @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: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:32: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:32: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:32: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:32: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:32: missing @table argument (possibly involving @mymacro)
 formatting.texi:32: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -188,8 +188,8 @@ formatting.texi:81: warning: @verb should not appear 
anywhere inside @image (pos
 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)
-formatting.texi:81: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:81: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:81: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:81: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:81: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:81: missing @table argument (possibly involving @mymacro)
 formatting.texi:81: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)
@@ -260,8 +260,8 @@ formatting.texi:88: warning: @verb should not appear 
anywhere inside @image (pos
 formatting.texi:88: warning: @verb should not appear anywhere inside @image 
(possibly involving @mymacro)
 formatting.texi:88: @sp missing argument (possibly involving @mymacro)
 formatting.texi:88: warning: @author not meaningful outside `@titlepage' and 
`@quotation' environments (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@emph' as @itemize 
argument should have braces (possibly involving @mymacro)
-formatting.texi:88: warning: non-mark brace command `@w' as @itemize argument 
should have braces (possibly involving @mymacro)
+formatting.texi:88: warning: @emph expected braces (possibly involving 
@mymacro)
+formatting.texi:88: warning: @w expected braces (possibly involving @mymacro)
 formatting.texi:88: command @bullet not accepting argument in brace should not 
be on @table line (possibly involving @mymacro)
 formatting.texi:88: missing @table argument (possibly involving @mymacro)
 formatting.texi:88: command @minus not accepting argument in brace should not 
be on @ftable line (possibly involving @mymacro)



reply via email to

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