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

Diff for /mandoc/tree.c between version 1.66 and 1.67

version 1.66, 2015/04/18 17:53:21 version 1.67, 2015/09/26 00:54:04
Line 98  print_mdoc(const struct roff_node *n, int indent)
Line 98  print_mdoc(const struct roff_node *n, int indent)
                 break;                  break;
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */  
         }          }
   
         switch (n->type) {          switch (n->type) {
Line 138  print_mdoc(const struct roff_node *n, int indent)
Line 137  print_mdoc(const struct roff_node *n, int indent)
                 break;                  break;
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */  
         }          }
   
         if (n->span) {          if (n->span) {
Line 212  print_man(const struct roff_node *n, int indent)
Line 210  print_man(const struct roff_node *n, int indent)
                 break;                  break;
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */  
         }          }
   
         switch (n->type) {          switch (n->type) {
Line 238  print_man(const struct roff_node *n, int indent)
Line 235  print_man(const struct roff_node *n, int indent)
                 break;                  break;
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */  
         }          }
   
         if (n->span) {          if (n->span) {

Legend:
Removed from v.1.66  
changed lines
  Added in v.1.67

CVSweb