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

Diff for /mandoc/man_term.c between version 1.148 and 1.149

version 1.148, 2014/04/23 16:08:33 version 1.149, 2014/06/20 23:02:31
Line 1061  print_man_foot(struct termp *p, const void *arg)
Line 1061  print_man_foot(struct termp *p, const void *arg)
   
         term_fontrepl(p, TERMFONT_NONE);          term_fontrepl(p, TERMFONT_NONE);
   
         term_vspace(p);          if (meta->hasbody)
                   term_vspace(p);
   
         /*          /*
          * Temporary, undocumented option to imitate mdoc(7) output.           * Temporary, undocumented option to imitate mdoc(7) output.
Line 1070  print_man_foot(struct termp *p, const void *arg)
Line 1071  print_man_foot(struct termp *p, const void *arg)
          */           */
   
         if ( ! p->mdocstyle) {          if ( ! p->mdocstyle) {
                 term_vspace(p);                  if (meta->hasbody) {
                 term_vspace(p);                          term_vspace(p);
                           term_vspace(p);
                   }
                 mandoc_asprintf(&title, "%s(%s)",                  mandoc_asprintf(&title, "%s(%s)",
                     meta->title, meta->msec);                      meta->title, meta->msec);
         } else if (meta->source) {          } else if (meta->source) {

Legend:
Removed from v.1.148  
changed lines
  Added in v.1.149

CVSweb