[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.68 and 1.72

version 1.68, 2010/05/15 22:44:04 version 1.72, 2010/05/26 14:03:54
Line 26 
Line 26 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
   #include "mandoc.h"
 #include "out.h"  #include "out.h"
 #include "man.h"  #include "man.h"
 #include "term.h"  #include "term.h"
Line 142  static const struct termact termacts[MAN_MAX] = {
Line 143  static const struct termact termacts[MAN_MAX] = {
         { pre_sp, NULL, MAN_NOTEXT }, /* Sp */          { pre_sp, NULL, MAN_NOTEXT }, /* Sp */
         { pre_nf, NULL, 0 }, /* Vb */          { pre_nf, NULL, 0 }, /* Vb */
         { pre_fi, NULL, 0 }, /* Ve */          { pre_fi, NULL, 0 }, /* Ve */
           { pre_ign, NULL, 0 }, /* AT */
 };  };
   
   
Line 862  print_man_foot(struct termp *p, const struct man_meta 
Line 864  print_man_foot(struct termp *p, const struct man_meta 
   
         term_fontrepl(p, TERMFONT_NONE);          term_fontrepl(p, TERMFONT_NONE);
   
         time2a(meta->date, buf, DATESIZ);          if (meta->rawdate)
                   strlcpy(buf, meta->rawdate, DATESIZ);
           else
                   time2a(meta->date, buf, DATESIZ);
   
           term_vspace(p);
           term_vspace(p);
         term_vspace(p);          term_vspace(p);
   
         p->flags |= TERMP_NOSPACE | TERMP_NOBREAK;          p->flags |= TERMP_NOSPACE | TERMP_NOBREAK;

Legend:
Removed from v.1.68  
changed lines
  Added in v.1.72

CVSweb