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

Diff for /mandoc/mdoc_man.c between version 1.129 and 1.131

version 1.129, 2018/12/03 21:00:10 version 1.131, 2018/12/30 00:49:55
Line 325  man_strlen(const char *cp)
Line 325  man_strlen(const char *cp)
                 case ESCAPE_UNICODE:                  case ESCAPE_UNICODE:
                 case ESCAPE_NUMBERED:                  case ESCAPE_NUMBERED:
                 case ESCAPE_SPECIAL:                  case ESCAPE_SPECIAL:
                   case ESCAPE_UNDEF:
                 case ESCAPE_OVERSTRIKE:                  case ESCAPE_OVERSTRIKE:
                         if (skip)                          if (skip)
                                 skip = 0;                                  skip = 0;
Line 601  print_count(int *count)
Line 602  print_count(int *count)
 }  }
   
 void  void
 man_mdoc(void *arg, const struct roff_man *mdoc)  man_mdoc(void *arg, const struct roff_meta *mdoc)
 {  {
         struct roff_node *n;          struct roff_node *n;
   
Line 614  man_mdoc(void *arg, const struct roff_man *mdoc)
Line 615  man_mdoc(void *arg, const struct roff_man *mdoc)
         }          }
   
         printf(".TH \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"\n",          printf(".TH \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"\n",
             mdoc->meta.title,              mdoc->title, (mdoc->msec == NULL ? "" : mdoc->msec),
             (mdoc->meta.msec == NULL ? "" : mdoc->meta.msec),              mdoc->date, mdoc->os, mdoc->vol);
             mdoc->meta.date, mdoc->meta.os, mdoc->meta.vol);  
   
         /* Disable hyphenation and if nroff, disable justification. */          /* Disable hyphenation and if nroff, disable justification. */
         printf(".nh\n.if n .ad l");          printf(".nh\n.if n .ad l");
Line 628  man_mdoc(void *arg, const struct roff_man *mdoc)
Line 628  man_mdoc(void *arg, const struct roff_man *mdoc)
                 *fontqueue.tail = 'R';                  *fontqueue.tail = 'R';
         }          }
         for (; n != NULL; n = n->next)          for (; n != NULL; n = n->next)
                 print_node(&mdoc->meta, n);                  print_node(mdoc, n);
         putchar('\n');          putchar('\n');
 }  }
   

Legend:
Removed from v.1.129  
changed lines
  Added in v.1.131

CVSweb