[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.350 and 1.359

version 1.350, 2017/04/24 23:06:18 version 1.359, 2017/06/01 19:05:37
Line 106  static int   termp_ft_pre(DECL_ARGS);
Line 106  static int   termp_ft_pre(DECL_ARGS);
 static  int       termp_in_pre(DECL_ARGS);  static  int       termp_in_pre(DECL_ARGS);
 static  int       termp_it_pre(DECL_ARGS);  static  int       termp_it_pre(DECL_ARGS);
 static  int       termp_li_pre(DECL_ARGS);  static  int       termp_li_pre(DECL_ARGS);
 static  int       termp_ll_pre(DECL_ARGS);  
 static  int       termp_lk_pre(DECL_ARGS);  static  int       termp_lk_pre(DECL_ARGS);
 static  int       termp_nd_pre(DECL_ARGS);  static  int       termp_nd_pre(DECL_ARGS);
 static  int       termp_nm_pre(DECL_ARGS);  static  int       termp_nm_pre(DECL_ARGS);
Line 116  static int   termp_rs_pre(DECL_ARGS);
Line 115  static int   termp_rs_pre(DECL_ARGS);
 static  int       termp_sh_pre(DECL_ARGS);  static  int       termp_sh_pre(DECL_ARGS);
 static  int       termp_skip_pre(DECL_ARGS);  static  int       termp_skip_pre(DECL_ARGS);
 static  int       termp_sm_pre(DECL_ARGS);  static  int       termp_sm_pre(DECL_ARGS);
 static  int       termp_sp_pre(DECL_ARGS);  static  int       termp_pp_pre(DECL_ARGS);
 static  int       termp_ss_pre(DECL_ARGS);  static  int       termp_ss_pre(DECL_ARGS);
 static  int       termp_sy_pre(DECL_ARGS);  static  int       termp_sy_pre(DECL_ARGS);
 static  int       termp_tag_pre(DECL_ARGS);  static  int       termp_tag_pre(DECL_ARGS);
Line 131  static const struct termact __termacts[MDOC_MAX - MDOC
Line 130  static const struct termact __termacts[MDOC_MAX - MDOC
         { NULL, NULL }, /* Os */          { NULL, NULL }, /* Os */
         { termp_sh_pre, termp_sh_post }, /* Sh */          { termp_sh_pre, termp_sh_post }, /* Sh */
         { termp_ss_pre, termp_ss_post }, /* Ss */          { termp_ss_pre, termp_ss_post }, /* Ss */
         { termp_sp_pre, NULL }, /* Pp */          { termp_pp_pre, NULL }, /* Pp */
         { termp_d1_pre, termp_bl_post }, /* D1 */          { termp_d1_pre, termp_bl_post }, /* D1 */
         { termp_d1_pre, termp_bl_post }, /* Dl */          { termp_d1_pre, termp_bl_post }, /* Dl */
         { termp_bd_pre, termp_bd_post }, /* Bd */          { termp_bd_pre, termp_bd_post }, /* Bd */
Line 233  static const struct termact __termacts[MDOC_MAX - MDOC
Line 232  static const struct termact __termacts[MDOC_MAX - MDOC
         { termp_under_pre, NULL }, /* Fr */          { termp_under_pre, NULL }, /* Fr */
         { NULL, NULL }, /* Ud */          { NULL, NULL }, /* Ud */
         { NULL, termp_lb_post }, /* Lb */          { NULL, termp_lb_post }, /* Lb */
         { termp_sp_pre, NULL }, /* Lp */          { termp_pp_pre, NULL }, /* Lp */
         { termp_lk_pre, NULL }, /* Lk */          { termp_lk_pre, NULL }, /* Lk */
         { termp_under_pre, NULL }, /* Mt */          { termp_under_pre, NULL }, /* Mt */
         { termp_quote_pre, termp_quote_post }, /* Brq */          { termp_quote_pre, termp_quote_post }, /* Brq */
Line 244  static const struct termact __termacts[MDOC_MAX - MDOC
Line 243  static const struct termact __termacts[MDOC_MAX - MDOC
         { termp_quote_pre, termp_quote_post }, /* En */          { termp_quote_pre, termp_quote_post }, /* En */
         { termp_xx_pre, termp_xx_post }, /* Dx */          { termp_xx_pre, termp_xx_post }, /* Dx */
         { NULL, termp____post }, /* %Q */          { NULL, termp____post }, /* %Q */
         { termp_sp_pre, NULL }, /* br */  
         { termp_sp_pre, NULL }, /* sp */  
         { NULL, termp____post }, /* %U */          { NULL, termp____post }, /* %U */
         { NULL, NULL }, /* Ta */          { NULL, NULL }, /* Ta */
         { termp_ll_pre, NULL }, /* ll */  
 };  };
 static  const struct termact *const termacts = __termacts - MDOC_Dd;  static  const struct termact *const termacts = __termacts - MDOC_Dd;
   
Line 265  terminal_mdoc(void *arg, const struct roff_man *mdoc)
Line 261  terminal_mdoc(void *arg, const struct roff_man *mdoc)
         p = (struct termp *)arg;          p = (struct termp *)arg;
         p->overstep = 0;          p->overstep = 0;
         p->rmargin = p->maxrmargin = p->defrmargin;          p->rmargin = p->maxrmargin = p->defrmargin;
         p->tabwidth = term_len(p, 5);          term_tab_set(p, NULL);
           term_tab_set(p, "T");
           term_tab_set(p, ".5i");
   
         n = mdoc->first->child;          n = mdoc->first->child;
         if (p->synopsisonly) {          if (p->synopsisonly) {
Line 344  print_mdoc_node(DECL_ARGS)
Line 342  print_mdoc_node(DECL_ARGS)
   
         switch (n->type) {          switch (n->type) {
         case ROFFT_TEXT:          case ROFFT_TEXT:
                 if (' ' == *n->string && NODE_LINE & n->flags)                  if (*n->string == ' ' && n->flags & NODE_LINE &&
                       (p->flags & TERMP_NONEWLINE) == 0)
                         term_newln(p);                          term_newln(p);
                 if (NODE_DELIMC & n->flags)                  if (NODE_DELIMC & n->flags)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
Line 365  print_mdoc_node(DECL_ARGS)
Line 364  print_mdoc_node(DECL_ARGS)
                 term_tbl(p, n->span);                  term_tbl(p, n->span);
                 break;                  break;
         default:          default:
                   if (n->tok < ROFF_MAX) {
                           roff_term_pre(p, n);
                           return;
                   }
                   assert(n->tok >= MDOC_Dd && n->tok < MDOC_MAX);
                 if (termacts[n->tok].pre != NULL &&                  if (termacts[n->tok].pre != NULL &&
                     (n->end == ENDBODY_NOT || n->child != NULL))                      (n->end == ENDBODY_NOT || n->child != NULL))
                         chld = (*termacts[n->tok].pre)                          chld = (*termacts[n->tok].pre)
Line 403  print_mdoc_node(DECL_ARGS)
Line 407  print_mdoc_node(DECL_ARGS)
         if (NODE_EOS & n->flags)          if (NODE_EOS & n->flags)
                 p->flags |= TERMP_SENTENCE;                  p->flags |= TERMP_SENTENCE;
   
         if (MDOC_ll != n->tok) {          if (n->type != ROFFT_TEXT)
                 p->offset = offset;                  p->offset = offset;
                 p->rmargin = rmargin;          p->rmargin = rmargin;
         }  
 }  }
   
 static void  static void
Line 598  print_bvspace(struct termp *p,
Line 601  print_bvspace(struct termp *p,
   
   
 static int  static int
 termp_ll_pre(DECL_ARGS)  
 {  
   
         term_setwidth(p, n->child != NULL ? n->child->string : NULL);  
         return 0;  
 }  
   
 static int  
 termp_it_pre(DECL_ARGS)  termp_it_pre(DECL_ARGS)
 {  {
         struct roffsu           su;          struct roffsu           su;
Line 1137  static void
Line 1132  static void
 termp_bl_post(DECL_ARGS)  termp_bl_post(DECL_ARGS)
 {  {
   
         if (n->type == ROFFT_BLOCK)          if (n->type != ROFFT_BLOCK)
                 term_newln(p);                  return;
           term_newln(p);
           if (n->tok != MDOC_Bl || n->norm->Bl.type != LIST_column)
                   return;
           term_tab_set(p, NULL);
           term_tab_set(p, "T");
           term_tab_set(p, ".5i");
 }  }
   
 static int  static int
Line 1281  termp_sh_pre(DECL_ARGS)
Line 1282  termp_sh_pre(DECL_ARGS)
                 break;                  break;
         case ROFFT_BODY:          case ROFFT_BODY:
                 p->offset = term_len(p, p->defindent);                  p->offset = term_len(p, p->defindent);
                   term_tab_set(p, NULL);
                   term_tab_set(p, "T");
                   term_tab_set(p, ".5i");
                 switch (n->sec) {                  switch (n->sec) {
                 case SEC_DESCRIPTION:                  case SEC_DESCRIPTION:
                         fn_prio = 0;                          fn_prio = 0;
Line 1331  termp_d1_pre(DECL_ARGS)
Line 1335  termp_d1_pre(DECL_ARGS)
                 return 1;                  return 1;
         term_newln(p);          term_newln(p);
         p->offset += term_len(p, p->defindent + 1);          p->offset += term_len(p, p->defindent + 1);
           term_tab_set(p, NULL);
           term_tab_set(p, "T");
           term_tab_set(p, ".5i");
         return 1;          return 1;
 }  }
   
Line 1436  termp_fa_pre(DECL_ARGS)
Line 1443  termp_fa_pre(DECL_ARGS)
 static int  static int
 termp_bd_pre(DECL_ARGS)  termp_bd_pre(DECL_ARGS)
 {  {
         size_t                   tabwidth, lm, len, rm, rmax;          size_t                   lm, len, rm, rmax;
         struct roff_node        *nn;          struct roff_node        *nn;
         int                      offset;          int                      offset;
   
Line 1476  termp_bd_pre(DECL_ARGS)
Line 1483  termp_bd_pre(DECL_ARGS)
             DISP_centered != n->norm->Bd.type)              DISP_centered != n->norm->Bd.type)
                 return 1;                  return 1;
   
         tabwidth = p->tabwidth;          if (n->norm->Bd.type == DISP_literal) {
         if (DISP_literal == n->norm->Bd.type)                  term_tab_set(p, NULL);
                 p->tabwidth = term_len(p, 8);                  term_tab_set(p, "T");
                   term_tab_set(p, "8n");
           }
   
         lm = p->offset;          lm = p->offset;
         rm = p->rmargin;          rm = p->rmargin;
Line 1502  termp_bd_pre(DECL_ARGS)
Line 1511  termp_bd_pre(DECL_ARGS)
                  * notion of selective eoln whitespace is pretty dumb                   * notion of selective eoln whitespace is pretty dumb
                  * anyway, so don't sweat it.                   * anyway, so don't sweat it.
                  */                   */
                   if (nn->tok < ROFF_MAX)
                           continue;
                 switch (nn->tok) {                  switch (nn->tok) {
                 case MDOC_Sm:                  case MDOC_Sm:
                 case MDOC_br:  
                 case MDOC_sp:  
                 case MDOC_Bl:                  case MDOC_Bl:
                 case MDOC_D1:                  case MDOC_D1:
                 case MDOC_Dl:                  case MDOC_Dl:
Line 1522  termp_bd_pre(DECL_ARGS)
Line 1531  termp_bd_pre(DECL_ARGS)
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
         }          }
   
         p->tabwidth = tabwidth;  
         p->rmargin = rm;          p->rmargin = rm;
         p->maxrmargin = rmax;          p->maxrmargin = rmax;
         return 0;          return 0;
Line 1593  termp_ss_pre(DECL_ARGS)
Line 1601  termp_ss_pre(DECL_ARGS)
                 break;                  break;
         case ROFFT_BODY:          case ROFFT_BODY:
                 p->offset = term_len(p, p->defindent);                  p->offset = term_len(p, p->defindent);
                   term_tab_set(p, NULL);
                   term_tab_set(p, "T");
                   term_tab_set(p, ".5i");
                 break;                  break;
         default:          default:
                 break;                  break;
Line 1652  termp_in_post(DECL_ARGS)
Line 1663  termp_in_post(DECL_ARGS)
 }  }
   
 static int  static int
 termp_sp_pre(DECL_ARGS)  termp_pp_pre(DECL_ARGS)
 {  {
         struct roffsu    su;          fn_prio = 0;
         int              i, len;          term_vspace(p);
   
         switch (n->tok) {  
         case MDOC_sp:  
                 if (n->child) {  
                         if ( ! a2roffsu(n->child->string, &su, SCALE_VS))  
                                 su.scale = 1.0;  
                         len = term_vspan(p, &su);  
                 } else  
                         len = 1;  
                 break;  
         case MDOC_br:  
                 len = 0;  
                 break;  
         default:  
                 len = 1;  
                 fn_prio = 0;  
                 break;  
         }  
   
         if (0 == len)  
                 term_newln(p);  
         else if (len < 0)  
                 p->skipvsp -= len;  
         else  
                 for (i = 0; i < len; i++)  
                         term_vspace(p);  
   
         return 0;          return 0;
 }  }
   
Line 1994  termp_li_pre(DECL_ARGS)
Line 1978  termp_li_pre(DECL_ARGS)
 static int  static int
 termp_lk_pre(DECL_ARGS)  termp_lk_pre(DECL_ARGS)
 {  {
         const struct roff_node *link, *descr;          const struct roff_node *link, *descr, *punct;
         int display;          int display;
   
         if ((link = n->child) == NULL)          if ((link = n->child) == NULL)
                 return 0;                  return 0;
   
           /* Find beginning of trailing punctuation. */
           punct = n->last;
           while (punct != link && punct->flags & NODE_DELIMC)
                   punct = punct->prev;
           punct = punct->next;
   
         /* Link text. */          /* Link text. */
         if ((descr = link->next) != NULL && !(descr->flags & NODE_DELIMC)) {          if ((descr = link->next) != NULL && descr != punct) {
                 term_fontpush(p, TERMFONT_UNDER);                  term_fontpush(p, TERMFONT_UNDER);
                 while (descr != NULL && !(descr->flags & NODE_DELIMC)) {                  while (descr != punct) {
                           if (descr->flags & (NODE_DELIMC | NODE_DELIMO))
                                   p->flags |= TERMP_NOSPACE;
                         term_word(p, descr->string);                          term_word(p, descr->string);
                         descr = descr->next;                          descr = descr->next;
                 }                  }
Line 2023  termp_lk_pre(DECL_ARGS)
Line 2015  termp_lk_pre(DECL_ARGS)
         term_fontpop(p);          term_fontpop(p);
   
         /* Trailing punctuation. */          /* Trailing punctuation. */
         while (descr != NULL) {          while (punct != NULL) {
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 term_word(p, descr->string);                  term_word(p, punct->string);
                 descr = descr->next;                  punct = punct->next;
         }          }
         if (display)          if (display)
                 term_newln(p);                  term_newln(p);

Legend:
Removed from v.1.350  
changed lines
  Added in v.1.359

CVSweb