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

Diff for /mandoc/Attic/mlg.c between version 1.11 and 1.12

version 1.11, 2008/12/05 19:45:15 version 1.12, 2008/12/05 22:34:30
Line 447  mlg_roffspecial(void *arg, int tok, const char *start,
Line 447  mlg_roffspecial(void *arg, int tok, const char *start,
                         return(0);                          return(0);
                 break;                  break;
         case (ROFF_Fn):          case (ROFF_Fn):
                   abort(); /* TODO */
                   break;
           case (ROFF_Nm):
                   assert(*more);
                   if ( ! mlg_begintag(p, MD_NS_INLINE, tok, NULL, NULL))
                           return(0);
                   if ( ! ml_puts(p->mbuf, *more++, &p->pos))
                           return(0);
                   assert(NULL == *more);
                   if ( ! mlg_endtag(p, MD_NS_INLINE, tok))
                           return(0);
                 break;                  break;
         case (ROFF_Ns):          case (ROFF_Ns):
                 p->flags |= ML_OVERRIDE_ONE;                  p->flags |= ML_OVERRIDE_ONE;

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

CVSweb