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

Diff for /mandoc/tree.c between version 1.76 and 1.81

version 1.76, 2017/07/07 19:39:30 version 1.81, 2018/12/12 21:54:35
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, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2013,2014,2015,2017,2018 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 29 
Line 29 
 #include "roff.h"  #include "roff.h"
 #include "mdoc.h"  #include "mdoc.h"
 #include "man.h"  #include "man.h"
   #include "tbl.h"
 #include "main.h"  #include "main.h"
   
 static  void    print_box(const struct eqn_box *, int);  static  void    print_box(const struct eqn_box *, int);
Line 115  print_mdoc(const struct roff_node *n, int indent)
Line 116  print_mdoc(const struct roff_node *n, int indent)
         case ROFFT_TEXT:          case ROFFT_TEXT:
                 t = "text";                  t = "text";
                 break;                  break;
           case ROFFT_COMMENT:
                   t = "comment";
                   break;
         case ROFFT_TBL:          case ROFFT_TBL:
                 break;                  break;
         case ROFFT_EQN:          case ROFFT_EQN:
Line 126  print_mdoc(const struct roff_node *n, int indent)
Line 130  print_mdoc(const struct roff_node *n, int indent)
   
         switch (n->type) {          switch (n->type) {
         case ROFFT_TEXT:          case ROFFT_TEXT:
           case ROFFT_COMMENT:
                 p = n->string;                  p = n->string;
                 break;                  break;
         case ROFFT_BODY:          case ROFFT_BODY:
Line 202  print_mdoc(const struct roff_node *n, int indent)
Line 207  print_mdoc(const struct roff_node *n, int indent)
         }          }
   
         if (n->eqn)          if (n->eqn)
                 print_box(n->eqn->root->first, indent + 4);                  print_box(n->eqn->first, indent + 4);
         if (n->child)          if (n->child)
                 print_mdoc(n->child, indent +                  print_mdoc(n->child, indent +
                     (n->type == ROFFT_BLOCK ? 2 : 4));                      (n->type == ROFFT_BLOCK ? 2 : 4));
Line 231  print_man(const struct roff_node *n, int indent)
Line 236  print_man(const struct roff_node *n, int indent)
         case ROFFT_TEXT:          case ROFFT_TEXT:
                 t = "text";                  t = "text";
                 break;                  break;
           case ROFFT_COMMENT:
                   t = "comment";
                   break;
         case ROFFT_BLOCK:          case ROFFT_BLOCK:
                 t = "block";                  t = "block";
                 break;                  break;
Line 251  print_man(const struct roff_node *n, int indent)
Line 259  print_man(const struct roff_node *n, int indent)
   
         switch (n->type) {          switch (n->type) {
         case ROFFT_TEXT:          case ROFFT_TEXT:
           case ROFFT_COMMENT:
                 p = n->string;                  p = n->string;
                 break;                  break;
         case ROFFT_ELEM:          case ROFFT_ELEM:
Line 281  print_man(const struct roff_node *n, int indent)
Line 290  print_man(const struct roff_node *n, int indent)
                 if (NODE_LINE & n->flags)                  if (NODE_LINE & n->flags)
                         putchar('*');                          putchar('*');
                 printf("%d:%d", n->line, n->pos + 1);                  printf("%d:%d", n->line, n->pos + 1);
                   if (NODE_DELIMC & n->flags)
                           putchar(')');
                 if (NODE_EOS & n->flags)                  if (NODE_EOS & n->flags)
                         putchar('.');                          putchar('.');
                 putchar('\n');                  putchar('\n');
         }          }
   
         if (n->eqn)          if (n->eqn)
                 print_box(n->eqn->root->first, indent + 4);                  print_box(n->eqn->first, indent + 4);
         if (n->child)          if (n->child)
                 print_man(n->child, indent +                  print_man(n->child, indent +
                     (n->type == ROFFT_BLOCK ? 2 : 4));                      (n->type == ROFFT_BLOCK ? 2 : 4));
Line 369  print_span(const struct tbl_span *sp, int indent)
Line 380  print_span(const struct tbl_span *sp, int indent)
         switch (sp->pos) {          switch (sp->pos) {
         case TBL_SPAN_HORIZ:          case TBL_SPAN_HORIZ:
                 putchar('-');                  putchar('-');
                 return;                  putchar(' ');
                   break;
         case TBL_SPAN_DHORIZ:          case TBL_SPAN_DHORIZ:
                 putchar('=');                  putchar('=');
                 return;                  putchar(' ');
                   break;
         default:          default:
                   for (dp = sp->first; dp; dp = dp->next) {
                           switch (dp->pos) {
                           case TBL_DATA_HORIZ:
                           case TBL_DATA_NHORIZ:
                                   putchar('-');
                                   putchar(' ');
                                   continue;
                           case TBL_DATA_DHORIZ:
                           case TBL_DATA_NDHORIZ:
                                   putchar('=');
                                   putchar(' ');
                                   continue;
                           default:
                                   break;
                           }
                           printf("[\"%s\"", dp->string ? dp->string : "");
                           if (dp->hspans)
                                   printf(">%d", dp->hspans);
                           if (dp->vspans)
                                   printf("v%d", dp->vspans);
                           if (dp->layout == NULL)
                                   putchar('*');
                           else if (dp->layout->pos == TBL_CELL_DOWN)
                                   putchar('^');
                           putchar(']');
                           putchar(' ');
                   }
                 break;                  break;
         }          }
   
         for (dp = sp->first; dp; dp = dp->next) {  
                 switch (dp->pos) {  
                 case TBL_DATA_HORIZ:  
                 case TBL_DATA_NHORIZ:  
                         putchar('-');  
                         continue;  
                 case TBL_DATA_DHORIZ:  
                 case TBL_DATA_NDHORIZ:  
                         putchar('=');  
                         continue;  
                 default:  
                         break;  
                 }  
                 printf("[\"%s\"", dp->string ? dp->string : "");  
                 if (dp->spans)  
                         printf("(%d)", dp->spans);  
                 if (NULL == dp->layout)  
                         putchar('*');  
                 putchar(']');  
                 putchar(' ');  
         }  
   
         printf("(tbl) %d:1\n", sp->line);          printf("(tbl) %d:1\n", sp->line);
 }  }

Legend:
Removed from v.1.76  
changed lines
  Added in v.1.81

CVSweb