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

Diff for /mandoc/mdoc_term.c between version 1.145 and 1.146

version 1.145, 2010/06/09 08:07:13 version 1.146, 2010/06/10 23:24:37
Line 276  terminal_mdoc(void *arg, const struct mdoc *mdoc)
Line 276  terminal_mdoc(void *arg, const struct mdoc *mdoc)
         p->maxrmargin = p->defrmargin;          p->maxrmargin = p->defrmargin;
         p->tabwidth = 5;          p->tabwidth = 5;
   
         term_begin(p, print_mdoc_head,  
                         print_mdoc_foot, mdoc_meta(mdoc));  
   
         if (NULL == p->symtab)          if (NULL == p->symtab)
                 switch (p->enc) {                  switch (p->enc) {
                 case (TERMENC_ASCII):                  case (TERMENC_ASCII):
Line 291  terminal_mdoc(void *arg, const struct mdoc *mdoc)
Line 288  terminal_mdoc(void *arg, const struct mdoc *mdoc)
   
         n = mdoc_node(mdoc);          n = mdoc_node(mdoc);
         m = mdoc_meta(mdoc);          m = mdoc_meta(mdoc);
   
           term_begin(p, print_mdoc_head, print_mdoc_foot, m);
   
         if (n->child)          if (n->child)
                 print_mdoc_nodelist(p, NULL, m, n->child);                  print_mdoc_nodelist(p, NULL, m, n->child);

Legend:
Removed from v.1.145  
changed lines
  Added in v.1.146

CVSweb