[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.33 and 1.34

version 1.33, 2009/07/25 16:03:03 version 1.34, 2009/07/26 10:29:39
Line 530  post_os(POST_ARGS)
Line 530  post_os(POST_ARGS)
         if (NULL == (m->meta.os = strdup(buf)))          if (NULL == (m->meta.os = strdup(buf)))
                 return(mdoc_nerr(m, m->last, EMALLOC));                  return(mdoc_nerr(m, m->last, EMALLOC));
   
         m->flags |= MDOC_PBODY;  
         return(post_prol(m));          return(post_prol(m));
 }  }
   
Line 822  post_prol(POST_ARGS)
Line 821  post_prol(POST_ARGS)
         }          }
   
         mdoc_node_freelist(n);          mdoc_node_freelist(n);
   
           if (m->meta.title && m->meta.date && m->meta.os)
                   m->flags |= MDOC_PBODY;
         return(1);          return(1);
 }  }
   
Line 832  pre_dl(PRE_ARGS)
Line 834  pre_dl(PRE_ARGS)
   
         if (MDOC_BODY == n->type)          if (MDOC_BODY == n->type)
                 m->flags |= MDOC_LITERAL;                  m->flags |= MDOC_LITERAL;
   
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34

CVSweb