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

Diff for /mandoc/Attic/mdoc_action.c between version 1.60 and 1.61

version 1.60, 2010/05/17 23:57:06 version 1.61, 2010/05/24 11:59:37
Line 637  post_bl_tagwidth(POST_ARGS)
Line 637  post_bl_tagwidth(POST_ARGS)
         /* Defaults to ten ens. */          /* Defaults to ten ens. */
   
         sz = 10; /* XXX: make this a macro value. */          sz = 10; /* XXX: make this a macro value. */
         nn = n->body->child;  
   
           for (nn = n->body->child; nn; nn = nn->next) {
                   if (MDOC_It == nn->tok)
                           break;
           }
   
         if (nn) {          if (nn) {
                 assert(MDOC_BLOCK == nn->type);                  assert(MDOC_BLOCK == nn->type);
                 assert(MDOC_It == nn->tok);  
                 nn = nn->head->child;                  nn = nn->head->child;
                 if (MDOC_TEXT != nn->type) {                  if (MDOC_TEXT != nn->type) {
                         sz = mdoc_macro2len(nn->tok);                          sz = mdoc_macro2len(nn->tok);

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61

CVSweb