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

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

version 1.130, 2010/05/13 06:22:11 version 1.133, 2010/05/15 16:24:37
Line 69  const char *const __mdoc_merrnames[MERRMAX] = {   
Line 69  const char *const __mdoc_merrnames[MERRMAX] = {   
         "prologue macro out of conventional order", /* EPROLOOO */          "prologue macro out of conventional order", /* EPROLOOO */
         "prologue macro repeated", /* EPROLREP */          "prologue macro repeated", /* EPROLREP */
         "invalid manual section", /* EBADMSEC */          "invalid manual section", /* EBADMSEC */
         "invalid section", /* EBADSEC */  
         "invalid font mode", /* EFONT */          "invalid font mode", /* EFONT */
         "invalid date syntax", /* EBADDATE */          "invalid date syntax", /* EBADDATE */
         "invalid number format", /* ENUMFMT */          "invalid number format", /* ENUMFMT */
Line 191  mdoc_free1(struct mdoc *mdoc)
Line 190  mdoc_free1(struct mdoc *mdoc)
                 free(mdoc->meta.arch);                  free(mdoc->meta.arch);
         if (mdoc->meta.vol)          if (mdoc->meta.vol)
                 free(mdoc->meta.vol);                  free(mdoc->meta.vol);
           if (mdoc->meta.msec)
                   free(mdoc->meta.msec);
 }  }
   
   
Line 701  mdoc_ptext(struct mdoc *m, int line, char *buf)
Line 702  mdoc_ptext(struct mdoc *m, int line, char *buf)
          * EOS character, then flag the node as being the end of a           * EOS character, then flag the node as being the end of a
          * sentence.  The front-end will know how to interpret this.           * sentence.  The front-end will know how to interpret this.
          */           */
   
           /* FIXME: chain of close delims. */
   
         assert(i);          assert(i);
   

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

CVSweb