texinfo-commits
[Top][All Lists]
Advanced

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

[7408] remove error continuation handling


From: gavinsmith0123
Subject: [7408] remove error continuation handling
Date: Fri, 23 Sep 2016 13:54:19 +0000 (UTC)

Revision: 7408
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7408
Author:   gavin
Date:     2016-09-23 13:54:19 +0000 (Fri, 23 Sep 2016)
Log Message:
-----------
remove error continuation handling

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tp/Texinfo/Parser.pm
    trunk/tp/Texinfo/Report.pm
    trunk/tp/t/results/converters_tests/things_before_setfilename.pl
    trunk/tp/t/results/converters_tests/things_before_setfilename_no_element.pl
    trunk/tp/t/results/html_tests/simple_menu.pl
    trunk/tp/t/results/info_tests/before_node_and_section.pl
    trunk/tp/t/results/invalid_nestings/def_not_closed_in_menu_description.pl
    trunk/tp/t/results/invalid_nestings/table_not_closed_in_menu_comment.pl
    trunk/tp/t/results/invalid_nestings/table_not_closed_in_menu_description.pl
    trunk/tp/t/results/macro/macro_in_menu.pl
    trunk/tp/t/results/menu/bad_beginning.pl
    trunk/tp/t/results/menu/dash_in_menu.pl
    trunk/tp/t/results/menu/detailmenu.pl
    trunk/tp/t/results/menu/detailmenu_in_description.pl
    trunk/tp/t/results/menu/example_in_menu_comment.pl
    trunk/tp/t/results/menu/menu_entry_name.pl
    trunk/tp/t/results/menu/menu_entry_name_comment.pl
    trunk/tp/t/results/menu/menu_entry_no_entry.pl
    trunk/tp/t/results/menu/menu_entry_no_entry_location.pl
    trunk/tp/t/results/menu/menu_entry_node.pl
    trunk/tp/t/results/menu/menu_entry_node_comments.pl
    trunk/tp/t/results/menu/menu_no_closed_after_empty_line.pl
    trunk/tp/t/results/menu/menu_no_closed_entry_beginning.pl
    trunk/tp/t/results/menu/menu_no_closed_in_description.pl
    trunk/tp/t/results/menu/menu_no_closed_in_entry.pl
    trunk/tp/t/results/menu/menu_no_closed_star.pl
    trunk/tp/t/results/menu/simple.pl
    trunk/tp/t/results/sectioning/double_node_anchor_float.pl
    trunk/tp/t/results/sectioning/double_top.pl
    trunk/tp/t/results/sectioning/double_top_in_menu.pl
    trunk/tp/t/results/sectioning/menutextorder.pl
    trunk/tp/t/results/sectioning/no_element.pl
    trunk/tp/t/results/sectioning/placed_things_before_element.pl
    trunk/tp/t/results/sectioning/placed_things_before_node.pl

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/ChangeLog     2016-09-23 13:54:19 UTC (rev 7408)
@@ -1,5 +1,15 @@
 2016-09-23  Gavin Smith  <address@hidden>
 
+       * tp/Texinfo/Report.pm (line_error): Remove 'error continuation' 
+       functionality.  Callers updated.  This has few user-visible 
+       changes, except that the continuation lines will be printed for
+       '-c NO_WARN=1', and that processing may be aborted sooner when
+       'ERROR_LIMIT' is used due to multi-line errors counting as more
+       than one.
+       (gdt): Remove some commented-out statements for debugging.
+
+2016-09-23  Gavin Smith  <address@hidden>
+
        * tp/Texinfo/Convert/HTML.pm,
        * tp/Texinfo/Convert/Plaintext.pm,
        * tp/Texinfo/Structuring.pm: Add a "use feature 'unicode_strings'"

Modified: trunk/tp/Texinfo/Parser.pm
===================================================================
--- trunk/tp/Texinfo/Parser.pm  2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/tp/Texinfo/Parser.pm  2016-09-23 13:54:19 UTC (rev 7408)
@@ -2462,7 +2462,7 @@
                            $line_nr);
     $self->line_error(sprintf($self->__("here is the previous definition as 
address@hidden"),
                                $self->{'labels'}->{$normalized}->{'cmdname'}),
-                       $self->{'labels'}->{$normalized}->{'line_nr'}, 1);
+                       $self->{'labels'}->{$normalized}->{'line_nr'});
     return 0;
   } else {
     $current->{'extra'}->{'normalized'} = $normalized;
@@ -4830,7 +4830,7 @@
                                               $command), $line_nr);
                     $self->line_error($self->__(
       "perhaps your address@hidden node should be wrapped in address@hidden 
rather than address@hidden"), 
-                                  $line_nr, 1);
+                                  $line_nr);
                   }
                   if ($command eq 'menu') {
                     push @{$self->{'info'}->{'unassociated_menus'}}, $current;

Modified: trunk/tp/Texinfo/Report.pm
===================================================================
--- trunk/tp/Texinfo/Report.pm  2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/tp/Texinfo/Report.pm  2016-09-23 13:54:19 UTC (rev 7408)
@@ -111,13 +111,12 @@
 }
 
 # format a line error
-sub line_error($$$;$)
+sub line_error($$$)
 {
   my $self = shift;
   my $text = shift;
   chomp ($text);
   my $line_number = shift;
-  my $continuation = shift;
   return if ($self->{'ignore_notice'});
   if (defined($line_number)) {
     my $file = $line_number->{'file_name'};
@@ -129,13 +128,11 @@
        if ($line_number->{'macro'} ne '');
     my $error_text = "$file:$line_number->{'line_nr'}: $text$macro_text\n";
     warn "$error_text" if ($self->get_conf('DEBUG'));
-    my $type = 'error';
-    $type = 'error continuation' if ($continuation);
     push @{$self->{'errors_warnings'}},
-         { 'type' => $type, 'text' => $text, 'error_line' => $error_text,
+         { 'type' => 'error', 'text' => $text, 'error_line' => $error_text,
            %{$line_number} };
   }
-  $self->{'error_nrs'}++ unless ($continuation);
+  $self->{'error_nrs'}++;
 }
 
 sub document_warn($$)
@@ -342,23 +339,7 @@
   } else {
     $ENV{'LC_ALL'} = $saved_env_LC_ALL;
   }
-#  my $new_LC_ALL = POSIX::setlocale (LC_ALL);
-#  my $new_LC_CTYPE = POSIX::setlocale (LC_CTYPE);
-#  my $new_LC_MESSAGES = POSIX::setlocale (LC_MESSAGES);
-#  my $new_env_LC_ALL = 'UNDEF';
-#  $new_env_LC_ALL = $ENV{'LC_ALL'} if defined($ENV{'LC_ALL'});
-#  my $saved_str_env_LC_ALL = $saved_env_LC_ALL;
-#  $saved_str_env_LC_ALL = 'UNDEF' if (!defined($saved_str_env_LC_ALL));
 
-#  print STDERR "  LC_ALL $saved_LC_ALL $new_LC_ALL ENV: $saved_str_env_LC_ALL 
$new_env_LC_ALL\n";
-#  print STDERR "  LC_CTYPE $saved_LC_CTYPE $new_LC_CTYPE\n";
-#  print STDERR "  LC_MESSAGES $saved_LC_MESSAGES $new_LC_MESSAGES\n";
-#  my $new_LANG = 'UNDEF';
-#  $new_LANG = $ENV{'LANG'} if defined($ENV{'LANG'});
-#  my $saved_str_LANG = $saved_LANG;
-#  $saved_str_LANG = 'UNDEF' if (!defined($saved_str_LANG));
-#  print STDERR "  LANG $saved_str_LANG $new_LANG\n";
-
   if ($type and $type eq 'translated_text') {
     if (defined($re)) {
       # next line taken from libintl perl, copyright Guido. sub __expand
@@ -593,8 +574,7 @@
 
 =item type
 
-May be C<warning>, C<error>, or C<error continuation> (for a continuation of
-an error line).
+May be C<warning>, or C<error>.
 
 =item text
 
@@ -622,15 +602,14 @@
 
 =item $converter->line_warn($text, $line_nr)
 
-=item $converter->line_error($text, $line_nr, $continuation)
+=item $converter->line_error($text, $line_nr)
 
 Register a warning or an error.  The I<$text> is the text of the
 error or warning.  The optional I<$line_nr> holds the information
 on the error or warning location.  It is associated with the I<line_nr> 
 key of Texinfo tree elements as described in L<Texinfo::Parser/line_nr>
 for the @-commands.  The I<$line_nr> structure is described in 
L<errors|($error_warnings_list, $error_count) = errors ($converter)>
-above.  If I<$continuation> is set, the line is an error message continuation
-line and not a new error.
+above.
 
 =item $converter->document_warn($text)
 

Modified: trunk/tp/t/results/converters_tests/things_before_setfilename.pl
===================================================================
--- trunk/tp/t/results/converters_tests/things_before_setfilename.pl    
2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/converters_tests/things_before_setfilename.pl    
2016-09-23 13:54:19 UTC (rev 7408)
@@ -1664,7 +1664,7 @@
     'line_nr' => 34,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => 'things_before_setfilename.texi:38: warning: entry for 
index `cp\' outside of any node

Modified: 
trunk/tp/t/results/converters_tests/things_before_setfilename_no_element.pl
===================================================================
--- trunk/tp/t/results/converters_tests/things_before_setfilename_no_element.pl 
2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/converters_tests/things_before_setfilename_no_element.pl 
2016-09-23 13:54:19 UTC (rev 7408)
@@ -1483,7 +1483,7 @@
     'line_nr' => 34,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => 'things_before_setfilename_no_element.texi:38: warning: 
entry for index `cp\' outside of any node

Modified: trunk/tp/t/results/html_tests/simple_menu.pl
===================================================================
--- trunk/tp/t/results/html_tests/simple_menu.pl        2016-09-23 10:15:06 UTC 
(rev 7407)
+++ trunk/tp/t/results/html_tests/simple_menu.pl        2016-09-23 13:54:19 UTC 
(rev 7408)
@@ -2239,7 +2239,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':34: @detailmenu seen before first @node
@@ -2257,7 +2257,7 @@
     'line_nr' => 34,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/info_tests/before_node_and_section.pl
===================================================================
--- trunk/tp/t/results/info_tests/before_node_and_section.pl    2016-09-23 
10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/info_tests/before_node_and_section.pl    2016-09-23 
13:54:19 UTC (rev 7408)
@@ -1162,7 +1162,7 @@
     'line_nr' => 7,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: 
trunk/tp/t/results/invalid_nestings/def_not_closed_in_menu_description.pl
===================================================================
--- trunk/tp/t/results/invalid_nestings/def_not_closed_in_menu_description.pl   
2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/invalid_nestings/def_not_closed_in_menu_description.pl   
2016-09-23 13:54:19 UTC (rev 7408)
@@ -321,7 +321,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':2: warning: @deffn should only appear at the beginning 
of a line

Modified: 
trunk/tp/t/results/invalid_nestings/table_not_closed_in_menu_comment.pl
===================================================================
--- trunk/tp/t/results/invalid_nestings/table_not_closed_in_menu_comment.pl     
2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/invalid_nestings/table_not_closed_in_menu_comment.pl     
2016-09-23 13:54:19 UTC (rev 7408)
@@ -362,7 +362,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':8: address@hidden' expected `table\', but saw `menu\'

Modified: 
trunk/tp/t/results/invalid_nestings/table_not_closed_in_menu_description.pl
===================================================================
--- trunk/tp/t/results/invalid_nestings/table_not_closed_in_menu_description.pl 
2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/invalid_nestings/table_not_closed_in_menu_description.pl 
2016-09-23 13:54:19 UTC (rev 7408)
@@ -325,7 +325,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':2: warning: @table should only appear at the beginning 
of a line

Modified: trunk/tp/t/results/macro/macro_in_menu.pl
===================================================================
--- trunk/tp/t/results/macro/macro_in_menu.pl   2016-09-23 10:15:06 UTC (rev 
7407)
+++ trunk/tp/t/results/macro/macro_in_menu.pl   2016-09-23 13:54:19 UTC (rev 
7408)
@@ -878,7 +878,7 @@
     'line_nr' => 26,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/bad_beginning.pl
===================================================================
--- trunk/tp/t/results/menu/bad_beginning.pl    2016-09-23 10:15:06 UTC (rev 
7407)
+++ trunk/tp/t/results/menu/bad_beginning.pl    2016-09-23 13:54:19 UTC (rev 
7408)
@@ -177,7 +177,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/dash_in_menu.pl
===================================================================
--- trunk/tp/t/results/menu/dash_in_menu.pl     2016-09-23 10:15:06 UTC (rev 
7407)
+++ trunk/tp/t/results/menu/dash_in_menu.pl     2016-09-23 13:54:19 UTC (rev 
7408)
@@ -252,7 +252,7 @@
     'line_nr' => 2,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/detailmenu.pl
===================================================================
--- trunk/tp/t/results/menu/detailmenu.pl       2016-09-23 10:15:06 UTC (rev 
7407)
+++ trunk/tp/t/results/menu/detailmenu.pl       2016-09-23 13:54:19 UTC (rev 
7408)
@@ -363,7 +363,7 @@
     'line_nr' => 2,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':5: @detailmenu seen before first @node
@@ -381,7 +381,7 @@
     'line_nr' => 5,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/detailmenu_in_description.pl
===================================================================
--- trunk/tp/t/results/menu/detailmenu_in_description.pl        2016-09-23 
10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/menu/detailmenu_in_description.pl        2016-09-23 
13:54:19 UTC (rev 7408)
@@ -340,7 +340,7 @@
     'line_nr' => 2,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':4: @detailmenu seen before first @node
@@ -358,7 +358,7 @@
     'line_nr' => 4,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/example_in_menu_comment.pl
===================================================================
--- trunk/tp/t/results/menu/example_in_menu_comment.pl  2016-09-23 10:15:06 UTC 
(rev 7407)
+++ trunk/tp/t/results/menu/example_in_menu_comment.pl  2016-09-23 13:54:19 UTC 
(rev 7408)
@@ -350,7 +350,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/menu_entry_name.pl
===================================================================
--- trunk/tp/t/results/menu/menu_entry_name.pl  2016-09-23 10:15:06 UTC (rev 
7407)
+++ trunk/tp/t/results/menu/menu_entry_name.pl  2016-09-23 13:54:19 UTC (rev 
7408)
@@ -1099,7 +1099,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/menu_entry_name_comment.pl
===================================================================
--- trunk/tp/t/results/menu/menu_entry_name_comment.pl  2016-09-23 10:15:06 UTC 
(rev 7407)
+++ trunk/tp/t/results/menu/menu_entry_name_comment.pl  2016-09-23 13:54:19 UTC 
(rev 7408)
@@ -679,7 +679,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/menu_entry_no_entry.pl
===================================================================
--- trunk/tp/t/results/menu/menu_entry_no_entry.pl      2016-09-23 10:15:06 UTC 
(rev 7407)
+++ trunk/tp/t/results/menu/menu_entry_no_entry.pl      2016-09-23 13:54:19 UTC 
(rev 7408)
@@ -289,7 +289,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/menu_entry_no_entry_location.pl
===================================================================
--- trunk/tp/t/results/menu/menu_entry_no_entry_location.pl     2016-09-23 
10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/menu/menu_entry_no_entry_location.pl     2016-09-23 
13:54:19 UTC (rev 7408)
@@ -358,7 +358,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/menu_entry_node.pl
===================================================================
--- trunk/tp/t/results/menu/menu_entry_node.pl  2016-09-23 10:15:06 UTC (rev 
7407)
+++ trunk/tp/t/results/menu/menu_entry_node.pl  2016-09-23 13:54:19 UTC (rev 
7408)
@@ -445,7 +445,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/menu_entry_node_comments.pl
===================================================================
--- trunk/tp/t/results/menu/menu_entry_node_comments.pl 2016-09-23 10:15:06 UTC 
(rev 7407)
+++ trunk/tp/t/results/menu/menu_entry_node_comments.pl 2016-09-23 13:54:19 UTC 
(rev 7408)
@@ -498,7 +498,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/menu/menu_no_closed_after_empty_line.pl
===================================================================
--- trunk/tp/t/results/menu/menu_no_closed_after_empty_line.pl  2016-09-23 
10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/menu/menu_no_closed_after_empty_line.pl  2016-09-23 
13:54:19 UTC (rev 7408)
@@ -164,7 +164,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':4: no matching address@hidden menu\'

Modified: trunk/tp/t/results/menu/menu_no_closed_entry_beginning.pl
===================================================================
--- trunk/tp/t/results/menu/menu_no_closed_entry_beginning.pl   2016-09-23 
10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/menu/menu_no_closed_entry_beginning.pl   2016-09-23 
13:54:19 UTC (rev 7408)
@@ -80,7 +80,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':2: no matching address@hidden menu\'

Modified: trunk/tp/t/results/menu/menu_no_closed_in_description.pl
===================================================================
--- trunk/tp/t/results/menu/menu_no_closed_in_description.pl    2016-09-23 
10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/menu/menu_no_closed_in_description.pl    2016-09-23 
13:54:19 UTC (rev 7408)
@@ -130,7 +130,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':2: no matching address@hidden menu\'

Modified: trunk/tp/t/results/menu/menu_no_closed_in_entry.pl
===================================================================
--- trunk/tp/t/results/menu/menu_no_closed_in_entry.pl  2016-09-23 10:15:06 UTC 
(rev 7407)
+++ trunk/tp/t/results/menu/menu_no_closed_in_entry.pl  2016-09-23 13:54:19 UTC 
(rev 7408)
@@ -93,7 +93,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':2: no matching address@hidden menu\'

Modified: trunk/tp/t/results/menu/menu_no_closed_star.pl
===================================================================
--- trunk/tp/t/results/menu/menu_no_closed_star.pl      2016-09-23 10:15:06 UTC 
(rev 7407)
+++ trunk/tp/t/results/menu/menu_no_closed_star.pl      2016-09-23 13:54:19 UTC 
(rev 7408)
@@ -80,7 +80,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':2: no matching address@hidden menu\'

Modified: trunk/tp/t/results/menu/simple.pl
===================================================================
--- trunk/tp/t/results/menu/simple.pl   2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/menu/simple.pl   2016-09-23 13:54:19 UTC (rev 7408)
@@ -632,7 +632,7 @@
     'line_nr' => 4,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/sectioning/double_node_anchor_float.pl
===================================================================
--- trunk/tp/t/results/sectioning/double_node_anchor_float.pl   2016-09-23 
10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/sectioning/double_node_anchor_float.pl   2016-09-23 
13:54:19 UTC (rev 7408)
@@ -858,7 +858,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'here is the previous definition as @node',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':5: @anchor `node1\' previously defined
@@ -876,7 +876,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'here is the previous definition as @node',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':9: @node `anchor1\' previously defined
@@ -894,7 +894,7 @@
     'line_nr' => 7,
     'macro' => '',
     'text' => 'here is the previous definition as @anchor',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':11: @float `node1\' previously defined
@@ -912,7 +912,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'here is the previous definition as @node',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':14: @float `anchor1\' previously defined
@@ -930,7 +930,7 @@
     'line_nr' => 7,
     'macro' => '',
     'text' => 'here is the previous definition as @anchor',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':20: @node `float1\' previously defined
@@ -948,7 +948,7 @@
     'line_nr' => 17,
     'macro' => '',
     'text' => 'here is the previous definition as @float',
-    'type' => 'error continuation'
+    'type' => 'error'
   }
 ];
 

Modified: trunk/tp/t/results/sectioning/double_top.pl
===================================================================
--- trunk/tp/t/results/sectioning/double_top.pl 2016-09-23 10:15:06 UTC (rev 
7407)
+++ trunk/tp/t/results/sectioning/double_top.pl 2016-09-23 13:54:19 UTC (rev 
7408)
@@ -310,7 +310,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'here is the previous definition as @node',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':5: @anchor `TOP\' previously defined
@@ -328,7 +328,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'here is the previous definition as @node',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':1: warning: Next pointer `top\' (for node `ToP\') 
different from node name `ToP\'

Modified: trunk/tp/t/results/sectioning/double_top_in_menu.pl
===================================================================
--- trunk/tp/t/results/sectioning/double_top_in_menu.pl 2016-09-23 10:15:06 UTC 
(rev 7407)
+++ trunk/tp/t/results/sectioning/double_top_in_menu.pl 2016-09-23 13:54:19 UTC 
(rev 7408)
@@ -539,7 +539,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'here is the previous definition as @node',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':5: warning: @menu entry node name `top\' different from 
node name `ToP\'

Modified: trunk/tp/t/results/sectioning/menutextorder.pl
===================================================================
--- trunk/tp/t/results/sectioning/menutextorder.pl      2016-09-23 10:15:06 UTC 
(rev 7407)
+++ trunk/tp/t/results/sectioning/menutextorder.pl      2016-09-23 13:54:19 UTC 
(rev 7408)
@@ -1868,7 +1868,7 @@
     'line_nr' => 1,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':6: warning: node `foo\' is next for `bar\' in sectioning 
but not in menu

Modified: trunk/tp/t/results/sectioning/no_element.pl
===================================================================
--- trunk/tp/t/results/sectioning/no_element.pl 2016-09-23 10:15:06 UTC (rev 
7407)
+++ trunk/tp/t/results/sectioning/no_element.pl 2016-09-23 13:54:19 UTC (rev 
7408)
@@ -987,7 +987,7 @@
     'line_nr' => 28,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':32: warning: entry for index `cp\' outside of any node

Modified: trunk/tp/t/results/sectioning/placed_things_before_element.pl
===================================================================
--- trunk/tp/t/results/sectioning/placed_things_before_element.pl       
2016-09-23 10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/sectioning/placed_things_before_element.pl       
2016-09-23 13:54:19 UTC (rev 7408)
@@ -1104,7 +1104,7 @@
     'line_nr' => 24,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':28: warning: entry for index `cp\' outside of any node

Modified: trunk/tp/t/results/sectioning/placed_things_before_node.pl
===================================================================
--- trunk/tp/t/results/sectioning/placed_things_before_node.pl  2016-09-23 
10:15:06 UTC (rev 7407)
+++ trunk/tp/t/results/sectioning/placed_things_before_node.pl  2016-09-23 
13:54:19 UTC (rev 7408)
@@ -1199,7 +1199,7 @@
     'line_nr' => 24,
     'macro' => '',
     'text' => 'perhaps your @top node should be wrapped in @ifnottex rather 
than @ifinfo?',
-    'type' => 'error continuation'
+    'type' => 'error'
   },
   {
     'error_line' => ':28: warning: entry for index `cp\' outside of any node




reply via email to

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