[BACK]Return to man_validate.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/man_validate.c between version 1.50 and 1.51

version 1.50, 2011/11/05 16:02:18 version 1.51, 2011/12/02 01:45:43
Line 409 
Line 409 
                 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.50  
changed lines
  Added in v.1.51