[BACK]Return to roff.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/roff.c between version 1.254 and 1.255

version 1.254, 2022/04/24 13:34:53 version 1.255, 2022/04/24 17:39:31
Line 2431 
Line 2431 
                         }                          }
                 }                  }
         } else if (t != TOKEN_NONE &&          } else if (t != TOKEN_NONE &&
             (rr || roffs[t].flags & ROFFMAC_STRUCT))              (rr || roffs[t].flags & ROFFMAC_STRUCT)) {
                 irc |= (*roffs[t].proc)(r, t, buf, ln, ppos, pos, offs);                  irc |= (*roffs[t].proc)(r, t, buf, ln, ppos, pos, offs);
         else                  if (irc & ROFF_WHILE)
                           irc &= ~(ROFF_LOOPCONT | ROFF_LOOPEXIT);
           } else
                 irc |= rr ? ROFF_CONT : ROFF_IGN;                  irc |= rr ? ROFF_CONT : ROFF_IGN;
         return irc;          return irc;
 }  }

Legend:
Removed from v.1.254  
changed lines
  Added in v.1.255