[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.373 and 1.374

version 1.373, 2019/06/03 19:50:33 version 1.374, 2019/06/27 12:20:18
Line 253  static int  fn_prio;
Line 253  static int  fn_prio;
 void  void
 terminal_mdoc(void *arg, const struct roff_meta *mdoc)  terminal_mdoc(void *arg, const struct roff_meta *mdoc)
 {  {
         struct roff_node        *n;          struct roff_node        *n, *nn;
         struct termp            *p;          struct termp            *p;
         size_t                   save_defindent;          size_t                   save_defindent;
   
Line 265  terminal_mdoc(void *arg, const struct roff_meta *mdoc)
Line 265  terminal_mdoc(void *arg, const struct roff_meta *mdoc)
   
         n = mdoc->first->child;          n = mdoc->first->child;
         if (p->synopsisonly) {          if (p->synopsisonly) {
                 while (n != NULL) {                  for (nn = NULL; n != NULL; n = n->next) {
                         if (n->tok == MDOC_Sh && n->sec == SEC_SYNOPSIS) {                          if (n->tok != MDOC_Sh)
                                 if (n->child->next->child != NULL)                                  continue;
                                         print_mdoc_nodelist(p, NULL,                          if (n->sec == SEC_SYNOPSIS)
                                             mdoc, n->child->next->child);  
                                 term_newln(p);  
                                 break;                                  break;
                         }                          if (nn == NULL && n->sec == SEC_NAME)
                         n = n->next;                                  nn = n;
                 }                  }
                   if (n == NULL)
                           n = nn;
                   p->flags |= TERMP_NOSPACE;
                   if (n != NULL && (n = n->child->next->child) != NULL)
                           print_mdoc_nodelist(p, NULL, mdoc, n);
                   term_newln(p);
         } else {          } else {
                 save_defindent = p->defindent;                  save_defindent = p->defindent;
                 if (p->defindent == 0)                  if (p->defindent == 0)

Legend:
Removed from v.1.373  
changed lines
  Added in v.1.374

CVSweb