[BACK]Return to regress.pl CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc / regress

Diff for /mandoc/regress/regress.pl between version 1.11 and 1.12

version 1.11, 2019/07/01 22:56:26 version 1.12, 2019/09/03 18:19:37
Line 86  sub syshtml ($@) {
Line 86  sub syshtml ($@) {
                 if (!$state && s/.*<math class="eqn">//) {                  if (!$state && s/.*<math class="eqn">//) {
                         $state = 'math';                          $state = 'math';
                         next unless length;                          next unless length;
                 } elsif (/^BEGINTEST/) {                  } elsif (/BEGINTEST/) {
                         $state = 'other';                          $state = 'other';
                           next;
                   } elsif (/ENDTEST/) {
                           $state = 0;
                           next;
                 }                  }
                 if ($state eq 'math') {                  if ($state eq 'math') {
                         s/^ *//;                          s/^ *//;
Line 98  sub syshtml ($@) {
Line 102  sub syshtml ($@) {
                         }                          }
                 }                  }
                 print $outfd "$_\n" if $state;                  print $outfd "$_\n" if $state;
                 $state = 0 if /^ENDTEST/;  
         }          }
         close $outfd;          close $outfd;
         close $infd;          close $infd;

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

CVSweb