[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.66 and 1.75

version 1.66, 2010/05/15 17:25:21 version 1.75, 2010/06/10 23:24:37
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 72  struct termact {
Line 73  struct termact {
 static  int               a2width(const struct man_node *);  static  int               a2width(const struct man_node *);
 static  int               a2height(const struct man_node *);  static  int               a2height(const struct man_node *);
   
 static  void              print_man_head(struct termp *,  
                                 const struct man_meta *);  
 static  void              print_man_nodelist(DECL_ARGS);  static  void              print_man_nodelist(DECL_ARGS);
 static  void              print_man_node(DECL_ARGS);  static  void              print_man_node(DECL_ARGS);
 static  void              print_man_foot(struct termp *,  static  void              print_man_head(struct termp *, const void *);
                                 const struct man_meta *);  static  void              print_man_foot(struct termp *, const void *);
 static  void              print_bvspace(struct termp *,  static  void              print_bvspace(struct termp *,
                                 const struct man_node *);                                  const struct man_node *);
   
Line 142  static const struct termact termacts[MAN_MAX] = {
Line 141  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, MAN_NOTEXT }, /* de */          { pre_ign, NULL, 0 }, /* AT */
         { pre_ign, NULL, MAN_NOTEXT }, /* dei */  
         { pre_ign, NULL, MAN_NOTEXT }, /* am */  
         { pre_ign, NULL, MAN_NOTEXT }, /* ami */  
         { pre_ign, NULL, MAN_NOTEXT }, /* ig */  
         { NULL, NULL, 0 }, /* . */  
 };  };
   
   
Line 164  terminal_man(void *arg, const struct man *man)
Line 158  terminal_man(void *arg, const struct man *man)
   
         p->overstep = 0;          p->overstep = 0;
         p->maxrmargin = p->defrmargin;          p->maxrmargin = p->defrmargin;
           p->tabwidth = 5;
   
         if (NULL == p->symtab)          if (NULL == p->symtab)
                 switch (p->enc) {                  switch (p->enc) {
Line 178  terminal_man(void *arg, const struct man *man)
Line 173  terminal_man(void *arg, const struct man *man)
         n = man_node(man);          n = man_node(man);
         m = man_meta(man);          m = man_meta(man);
   
         print_man_head(p, m);          term_begin(p, print_man_head, print_man_foot, m);
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
   
         mt.fl = 0;          mt.fl = 0;
Line 187  terminal_man(void *arg, const struct man *man)
Line 182  terminal_man(void *arg, const struct man *man)
   
         if (n->child)          if (n->child)
                 print_man_nodelist(p, &mt, n->child, m);                  print_man_nodelist(p, &mt, n->child, m);
         print_man_foot(p, m);  
           term_end(p);
 }  }
   
   
Line 862  print_man_nodelist(DECL_ARGS)
Line 858  print_man_nodelist(DECL_ARGS)
   
   
 static void  static void
 print_man_foot(struct termp *p, const struct man_meta *meta)  print_man_foot(struct termp *p, const void *arg)
 {  {
         char            buf[DATESIZ];          char            buf[DATESIZ];
           const struct man_meta *meta;
   
           meta = (const struct man_meta *)arg;
   
         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;
         p->rmargin = p->maxrmargin - strlen(buf);          p->rmargin = p->maxrmargin - strlen(buf);
Line 893  print_man_foot(struct termp *p, const struct man_meta 
Line 897  print_man_foot(struct termp *p, const struct man_meta 
   
   
 static void  static void
 print_man_head(struct termp *p, const struct man_meta *m)  print_man_head(struct termp *p, const void *arg)
 {  {
         char            buf[BUFSIZ], title[BUFSIZ];          char            buf[BUFSIZ], title[BUFSIZ];
         size_t          buflen, titlen;          size_t          buflen, titlen;
           const struct man_meta *m;
   
           m = (const struct man_meta *)arg;
   
         /*          /*
          * 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.66  
changed lines
  Added in v.1.75

CVSweb