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

Diff for /mandoc/tree.c between version 1.58 and 1.61

version 1.58, 2014/10/10 15:26:29 version 1.61, 2015/02/03 18:37:59
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 40  void
Line 40  void
 tree_mdoc(void *arg, const struct mdoc *mdoc)  tree_mdoc(void *arg, const struct mdoc *mdoc)
 {  {
   
         print_mdoc(mdoc_node(mdoc), 0);          print_mdoc(mdoc_node(mdoc)->child, 0);
 }  }
   
 void  void
 tree_man(void *arg, const struct man *man)  tree_man(void *arg, const struct man *man)
 {  {
   
         print_man(man_node(man), 0);          print_man(man_node(man)->child, 0);
 }  }
   
 static void  static void
Line 58  print_mdoc(const struct mdoc_node *n, int indent)
Line 58  print_mdoc(const struct mdoc_node *n, int indent)
         size_t            argc;          size_t            argc;
         struct mdoc_argv *argv;          struct mdoc_argv *argv;
   
           if (n == NULL)
                   return;
   
         argv = NULL;          argv = NULL;
         argc = 0;          argc = 0;
         t = p = NULL;          t = p = NULL;
Line 88  print_mdoc(const struct mdoc_node *n, int indent)
Line 91  print_mdoc(const struct mdoc_node *n, int indent)
                 t = "text";                  t = "text";
                 break;                  break;
         case MDOC_TBL:          case MDOC_TBL:
                 /* FALLTHROUGH */                  break;
         case MDOC_EQN:          case MDOC_EQN:
                   t = "eqn";
                 break;                  break;
         default:          default:
                 abort();                  abort();
Line 124  print_mdoc(const struct mdoc_node *n, int indent)
Line 128  print_mdoc(const struct mdoc_node *n, int indent)
                 }                  }
                 break;                  break;
         case MDOC_TBL:          case MDOC_TBL:
                 /* FALLTHROUGH */                  break;
         case MDOC_EQN:          case MDOC_EQN:
                   p = "EQ";
                 break;                  break;
         case MDOC_ROOT:          case MDOC_ROOT:
                 p = "root";                  p = "root";
Line 138  print_mdoc(const struct mdoc_node *n, int indent)
Line 143  print_mdoc(const struct mdoc_node *n, int indent)
         if (n->span) {          if (n->span) {
                 assert(NULL == p && NULL == t);                  assert(NULL == p && NULL == t);
                 print_span(n->span, indent);                  print_span(n->span, indent);
         } else if (n->eqn) {  
                 assert(NULL == p && NULL == t);  
                 print_box(n->eqn->root, indent);  
         } else {          } else {
                 for (i = 0; i < indent; i++)                  for (i = 0; i < indent; i++)
                         putchar('\t');                          putchar(' ');
   
                 printf("%s (%s)", p, t);                  printf("%s (%s)", p, t);
   
Line 166  print_mdoc(const struct mdoc_node *n, int indent)
Line 168  print_mdoc(const struct mdoc_node *n, int indent)
                 putchar('\n');                  putchar('\n');
         }          }
   
           if (n->eqn)
                   print_box(n->eqn->root->first, indent + 4);
         if (n->child)          if (n->child)
                 print_mdoc(n->child, indent + 1);                  print_mdoc(n->child, indent +
                       (n->type == MDOC_BLOCK ? 2 : 4));
         if (n->next)          if (n->next)
                 print_mdoc(n->next, indent);                  print_mdoc(n->next, indent);
 }  }
Line 178  print_man(const struct man_node *n, int indent)
Line 183  print_man(const struct man_node *n, int indent)
         const char       *p, *t;          const char       *p, *t;
         int               i;          int               i;
   
           if (n == NULL)
                   return;
   
         t = p = NULL;          t = p = NULL;
   
         switch (n->type) {          switch (n->type) {
Line 199  print_man(const struct man_node *n, int indent)
Line 207  print_man(const struct man_node *n, int indent)
         case MAN_BODY:          case MAN_BODY:
                 t = "block-body";                  t = "block-body";
                 break;                  break;
         case MAN_TAIL:  
                 t = "block-tail";  
                 break;  
         case MAN_TBL:          case MAN_TBL:
                 /* FALLTHROUGH */                  break;
         case MAN_EQN:          case MAN_EQN:
                   t = "eqn";
                 break;                  break;
         default:          default:
                 abort();                  abort();
Line 221  print_man(const struct man_node *n, int indent)
Line 227  print_man(const struct man_node *n, int indent)
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MAN_HEAD:          case MAN_HEAD:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MAN_TAIL:  
                 /* FALLTHROUGH */  
         case MAN_BODY:          case MAN_BODY:
                 p = man_macronames[n->tok];                  p = man_macronames[n->tok];
                 break;                  break;
Line 230  print_man(const struct man_node *n, int indent)
Line 234  print_man(const struct man_node *n, int indent)
                 p = "root";                  p = "root";
                 break;                  break;
         case MAN_TBL:          case MAN_TBL:
                 /* FALLTHROUGH */                  break;
         case MAN_EQN:          case MAN_EQN:
                   p = "EQ";
                 break;                  break;
         default:          default:
                 abort();                  abort();
Line 241  print_man(const struct man_node *n, int indent)
Line 246  print_man(const struct man_node *n, int indent)
         if (n->span) {          if (n->span) {
                 assert(NULL == p && NULL == t);                  assert(NULL == p && NULL == t);
                 print_span(n->span, indent);                  print_span(n->span, indent);
         } else if (n->eqn) {  
                 assert(NULL == p && NULL == t);  
                 print_box(n->eqn->root, indent);  
         } else {          } else {
                 for (i = 0; i < indent; i++)                  for (i = 0; i < indent; i++)
                         putchar('\t');                          putchar(' ');
                 printf("%s (%s) ", p, t);                  printf("%s (%s) ", p, t);
                 if (MAN_LINE & n->flags)                  if (MAN_LINE & n->flags)
                         putchar('*');                          putchar('*');
                 printf("%d:%d\n", n->line, n->pos + 1);                  printf("%d:%d\n", n->line, n->pos + 1);
         }          }
   
           if (n->eqn)
                   print_box(n->eqn->root->first, indent + 4);
         if (n->child)          if (n->child)
                 print_man(n->child, indent + 1);                  print_man(n->child, indent +
                       (n->type == MAN_BLOCK ? 2 : 4));
         if (n->next)          if (n->next)
                 print_man(n->next, indent);                  print_man(n->next, indent);
 }  }
Line 273  print_box(const struct eqn_box *ep, int indent)
Line 278  print_box(const struct eqn_box *ep, int indent)
         if (NULL == ep)          if (NULL == ep)
                 return;                  return;
         for (i = 0; i < indent; i++)          for (i = 0; i < indent; i++)
                 putchar('\t');                  putchar(' ');
   
         t = NULL;          t = NULL;
         switch (ep->type) {          switch (ep->type) {
Line 321  print_box(const struct eqn_box *ep, int indent)
Line 326  print_box(const struct eqn_box *ep, int indent)
                 printf(" args=%zu", ep->args);                  printf(" args=%zu", ep->args);
         putchar('\n');          putchar('\n');
   
         print_box(ep->first, indent + 1);          print_box(ep->first, indent + 4);
         print_box(ep->next, indent);          print_box(ep->next, indent);
 }  }
   
Line 332  print_span(const struct tbl_span *sp, int indent)
Line 337  print_span(const struct tbl_span *sp, int indent)
         int              i;          int              i;
   
         for (i = 0; i < indent; i++)          for (i = 0; i < indent; i++)
                 putchar('\t');                  putchar(' ');
   
         switch (sp->pos) {          switch (sp->pos) {
         case TBL_SPAN_HORIZ:          case TBL_SPAN_HORIZ:

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

CVSweb