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

Diff for /mandoc/man_validate.c between version 1.78 and 1.79

version 1.78, 2011/11/07 01:24:40 version 1.79, 2011/12/02 01:37:14
Line 413  post_TH(CHKARGS)
Line 413  post_TH(CHKARGS)
                 m->meta.source = mandoc_strdup(n->string);                  m->meta.source = mandoc_strdup(n->string);
   
         /* TITLE MSEC DATE SOURCE ->VOL<- */          /* TITLE MSEC DATE SOURCE ->VOL<- */
           /* If missing, use the default VOL name for MSEC. */
   
         if (n && (n = n->next))          if (n && (n = n->next))
                 m->meta.vol = mandoc_strdup(n->string);                  m->meta.vol = mandoc_strdup(n->string);
           else if ('\0' != m->meta.msec[0] &&
               (NULL != (p = mandoc_a2msec(m->meta.msec))))
                   m->meta.vol = mandoc_strdup(p);
   
         /*          /*
          * Remove the `TH' node after we've processed it for our           * Remove the `TH' node after we've processed it for our

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.79

CVSweb