[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.123 and 1.125

version 1.123, 2011/11/13 15:33:41 version 1.125, 2011/12/04 00:44:12
Line 963  print_man_foot(struct termp *p, const void *arg)
Line 963  print_man_foot(struct termp *p, const void *arg)
         const struct man_meta *meta;          const struct man_meta *meta;
   
         meta = (const struct man_meta *)arg;          meta = (const struct man_meta *)arg;
           assert(meta->title);
           assert(meta->msec);
           assert(meta->date);
   
         term_fontrepl(p, TERMFONT_NONE);          term_fontrepl(p, TERMFONT_NONE);
   
Line 1007  print_man_head(struct termp *p, const void *arg)
Line 1010  print_man_head(struct termp *p, const void *arg)
         const struct man_meta *m;          const struct man_meta *m;
   
         m = (const struct man_meta *)arg;          m = (const struct man_meta *)arg;
           assert(m->title);
           assert(m->msec);
   
         /*          /*
          * Note that old groff would spit out some spaces before the           * Note that old groff would spit out some spaces before the

Legend:
Removed from v.1.123  
changed lines
  Added in v.1.125

CVSweb