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

Diff for /mandoc/mdoc.c between version 1.203 and 1.204

version 1.203, 2012/11/17 00:26:33 version 1.204, 2013/10/05 22:08:12
Line 295  mdoc_parseln(struct mdoc *mdoc, int ln, char *buf, int
Line 295  mdoc_parseln(struct mdoc *mdoc, int ln, char *buf, int
          * whether this mode is on or off.           * whether this mode is on or off.
          * Note that this mode is also switched by the Sh macro.           * Note that this mode is also switched by the Sh macro.
          */           */
         if (roff_regisset(mdoc->roff, REG_nS)) {          if (roff_getreg(mdoc->roff, "nS"))
                 if (roff_regget(mdoc->roff, REG_nS))                  mdoc->flags |= MDOC_SYNOPSIS;
                         mdoc->flags |= MDOC_SYNOPSIS;          else
                 else                  mdoc->flags &= ~MDOC_SYNOPSIS;
                         mdoc->flags &= ~MDOC_SYNOPSIS;  
         }  
   
         return(roff_getcontrol(mdoc->roff, buf, &offs) ?          return(roff_getcontrol(mdoc->roff, buf, &offs) ?
                         mdoc_pmacro(mdoc, ln, buf, offs) :                          mdoc_pmacro(mdoc, ln, buf, offs) :

Legend:
Removed from v.1.203  
changed lines
  Added in v.1.204

CVSweb