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

Diff for /mandoc/mdoc.c between version 1.133 and 1.134

version 1.133, 2010/05/15 16:24:37 version 1.134, 2010/05/16 00:04:46
Line 291  mdoc_parseln(struct mdoc *m, int ln, char *buf)
Line 291  mdoc_parseln(struct mdoc *m, int ln, char *buf)
                 return(0);                  return(0);
   
         m->flags |= MDOC_NEWLINE;          m->flags |= MDOC_NEWLINE;
         return('.' == *buf ?          return(('.' == *buf || '\'' == *buf) ?
                         mdoc_pmacro(m, ln, buf) :                          mdoc_pmacro(m, ln, buf) :
                         mdoc_ptext(m, ln, buf));                          mdoc_ptext(m, ln, buf));
 }  }

Legend:
Removed from v.1.133  
changed lines
  Added in v.1.134

CVSweb