[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.51 and 1.52

version 1.51, 2009/11/10 12:03:30 version 1.52, 2009/11/12 05:50:12
Line 73  static int    a2height(const struct man_node *);
Line 73  static int    a2height(const struct man_node *);
   
 static  void              print_man_head(struct termp *,  static  void              print_man_head(struct termp *,
                                 const struct man_meta *);                                  const struct man_meta *);
 static  void              print_man_body(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_foot(struct termp *,
                                 const struct man_meta *);                                  const struct man_meta *);
Line 96  static int    pre_br(DECL_ARGS);
Line 96  static int    pre_br(DECL_ARGS);
 static  int               pre_fi(DECL_ARGS);  static  int               pre_fi(DECL_ARGS);
 static  int               pre_ign(DECL_ARGS);  static  int               pre_ign(DECL_ARGS);
 static  int               pre_nf(DECL_ARGS);  static  int               pre_nf(DECL_ARGS);
 static  int               pre_r(DECL_ARGS);  
 static  int               pre_sp(DECL_ARGS);  static  int               pre_sp(DECL_ARGS);
   
 static  void              post_B(DECL_ARGS);  
 static  void              post_I(DECL_ARGS);  
 static  void              post_IP(DECL_ARGS);  static  void              post_IP(DECL_ARGS);
 static  void              post_HP(DECL_ARGS);  static  void              post_HP(DECL_ARGS);
 static  void              post_RS(DECL_ARGS);  static  void              post_RS(DECL_ARGS);
Line 121  static const struct termact termacts[MAN_MAX] = {
Line 118  static const struct termact termacts[MAN_MAX] = {
         { pre_IP, post_IP }, /* IP */          { pre_IP, post_IP }, /* IP */
         { pre_HP, post_HP }, /* HP */          { pre_HP, post_HP }, /* HP */
         { NULL, NULL }, /* SM */          { NULL, NULL }, /* SM */
         { pre_B, post_B }, /* SB */          { pre_B, NULL }, /* SB */
         { pre_BI, NULL }, /* BI */          { pre_BI, NULL }, /* BI */
         { pre_BI, NULL }, /* IB */          { pre_BI, NULL }, /* IB */
         { pre_RB, NULL }, /* BR */          { pre_RB, NULL }, /* BR */
         { pre_RB, NULL }, /* RB */          { pre_RB, NULL }, /* RB */
         { NULL, NULL }, /* R */          { NULL, NULL }, /* R */
         { pre_B, post_B }, /* B */          { pre_B, NULL }, /* B */
         { pre_I, post_I }, /* I */          { pre_I, NULL }, /* I */
         { pre_RI, NULL }, /* IR */          { pre_RI, NULL }, /* IR */
         { pre_RI, NULL }, /* RI */          { pre_RI, NULL }, /* RI */
         { NULL, NULL }, /* na */          { NULL, NULL }, /* na */
Line 136  static const struct termact termacts[MAN_MAX] = {
Line 133  static const struct termact termacts[MAN_MAX] = {
         { pre_sp, NULL }, /* sp */          { pre_sp, NULL }, /* sp */
         { pre_nf, NULL }, /* nf */          { pre_nf, NULL }, /* nf */
         { pre_fi, NULL }, /* fi */          { pre_fi, NULL }, /* fi */
         { pre_r, NULL }, /* r */          { NULL, NULL }, /* r */
         { NULL, NULL }, /* RE */          { NULL, NULL }, /* RE */
         { pre_RS, post_RS }, /* RS */          { pre_RS, post_RS }, /* RS */
         { pre_ign, NULL }, /* DT */          { pre_ign, NULL }, /* DT */
Line 177  terminal_man(void *arg, const struct man *man)
Line 174  terminal_man(void *arg, const struct man *man)
         mt.offset = INDENT;          mt.offset = INDENT;
   
         if (n->child)          if (n->child)
                 print_man_body(p, &mt, n->child, m);                  print_man_nodelist(p, &mt, n->child, m);
         print_man_foot(p, m);          print_man_foot(p, m);
 }  }
   
Line 241  static int
Line 238  static int
 pre_I(DECL_ARGS)  pre_I(DECL_ARGS)
 {  {
   
         p->under++;          term_fontrepl(p, TERMFONT_UNDER);
         return(1);          return(1);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  
 pre_r(DECL_ARGS)  
 {  
   
         p->bold = p->under = 0;  
         return(1);  
 }  
   
   
 /* ARGSUSED */  
 static void  static void
 post_i(DECL_ARGS)  post_i(DECL_ARGS)
 {  {
   
         if (n->nchild)          /* FIXME */
                 p->under--;          /*if (n->nchild)
                   p->under--;*/
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static void  
 post_I(DECL_ARGS)  
 {  
   
         p->under--;  
 }  
   
   
 /* ARGSUSED */  
 static int  static int
 pre_fi(DECL_ARGS)  pre_fi(DECL_ARGS)
 {  {
Line 305  pre_RB(DECL_ARGS)
Line 284  pre_RB(DECL_ARGS)
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 if (i % 2 && MAN_RB == n->tok)                  if (i % 2 && MAN_RB == n->tok)
                         p->bold++;                          term_fontrepl(p, TERMFONT_BOLD);
                 else if ( ! (i % 2) && MAN_RB != n->tok)                  else if ( ! (i % 2) && MAN_RB != n->tok)
                         p->bold++;                          term_fontrepl(p, TERMFONT_BOLD);
                   else
                           term_fontrepl(p, TERMFONT_NONE);
   
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
   
                 print_man_node(p, mt, nn, m);                  print_man_node(p, mt, nn, m);
   
                 if (i % 2 && MAN_RB == n->tok)  
                         p->bold--;  
                 else if ( ! (i % 2) && MAN_RB != n->tok)  
                         p->bold--;  
         }          }
         return(0);          return(0);
 }  }
Line 332  pre_RI(DECL_ARGS)
Line 308  pre_RI(DECL_ARGS)
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 if (i % 2 && MAN_RI == n->tok)                  if (i % 2 && MAN_RI == n->tok)
                         p->under++;                          term_fontrepl(p, TERMFONT_UNDER);
                 else if ( ! (i % 2) && MAN_RI != n->tok)                  else if ( ! (i % 2) && MAN_RI != n->tok)
                         p->under++;                          term_fontrepl(p, TERMFONT_UNDER);
                   else
                           term_fontrepl(p, TERMFONT_NONE);
   
                 if (i > 0)                  if (i > 0)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_man_node(p, mt, nn, m);  
   
                 if (i % 2 && MAN_RI == n->tok)                  print_man_node(p, mt, nn, m);
                         p->under--;  
                 else if ( ! (i % 2) && MAN_RI != n->tok)  
                         p->under--;  
         }          }
         return(0);          return(0);
 }  }
Line 358  pre_BI(DECL_ARGS)
Line 332  pre_BI(DECL_ARGS)
   
         for (i = 0, nn = n->child; nn; nn = nn->next, i++) {          for (i = 0, nn = n->child; nn; nn = nn->next, i++) {
                 if (i % 2 && MAN_BI == n->tok)                  if (i % 2 && MAN_BI == n->tok)
                         p->under++;                          term_fontrepl(p, TERMFONT_UNDER);
                 else if (i % 2)                  else if (i % 2)
                         p->bold++;                          term_fontrepl(p, TERMFONT_BOLD);
                 else if (MAN_BI == n->tok)                  else if (MAN_BI == n->tok)
                         p->bold++;                          term_fontrepl(p, TERMFONT_BOLD);
                 else                  else
                         p->under++;                          term_fontrepl(p, TERMFONT_UNDER);
   
                 if (i)                  if (i)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                 print_man_node(p, mt, nn, m);  
   
                 if (i % 2 && MAN_BI == n->tok)                  print_man_node(p, mt, nn, m);
                         p->under--;  
                 else if (i % 2)  
                         p->bold--;  
                 else if (MAN_BI == n->tok)  
                         p->bold--;  
                 else  
                         p->under--;  
         }          }
         return(0);          return(0);
 }  }
Line 388  static int
Line 354  static int
 pre_B(DECL_ARGS)  pre_B(DECL_ARGS)
 {  {
   
         p->bold++;          term_fontrepl(p, TERMFONT_BOLD);
         return(1);          return(1);
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static void  
 post_B(DECL_ARGS)  
 {  
   
         p->bold--;  
 }  
   
   
 /* ARGSUSED */  
 static int  static int
 pre_sp(DECL_ARGS)  pre_sp(DECL_ARGS)
 {  {
Line 705  pre_SS(DECL_ARGS)
Line 662  pre_SS(DECL_ARGS)
                 term_vspace(p);                  term_vspace(p);
                 break;                  break;
         case (MAN_HEAD):          case (MAN_HEAD):
                 p->bold++;                  term_fontrepl(p, TERMFONT_BOLD);
                 p->offset = HALFINDENT;                  p->offset = HALFINDENT;
                 break;                  break;
         case (MAN_BODY):          case (MAN_BODY):
Line 727  post_SS(DECL_ARGS)
Line 684  post_SS(DECL_ARGS)
         switch (n->type) {          switch (n->type) {
         case (MAN_HEAD):          case (MAN_HEAD):
                 term_newln(p);                  term_newln(p);
                 p->bold--;  
                 break;                  break;
         case (MAN_BODY):          case (MAN_BODY):
                 term_newln(p);                  term_newln(p);
Line 754  pre_SH(DECL_ARGS)
Line 710  pre_SH(DECL_ARGS)
                 term_vspace(p);                  term_vspace(p);
                 break;                  break;
         case (MAN_HEAD):          case (MAN_HEAD):
                 p->bold++;                  term_fontrepl(p, TERMFONT_BOLD);
                 p->offset = 0;                  p->offset = 0;
                 break;                  break;
         case (MAN_BODY):          case (MAN_BODY):
Line 776  post_SH(DECL_ARGS)
Line 732  post_SH(DECL_ARGS)
         switch (n->type) {          switch (n->type) {
         case (MAN_HEAD):          case (MAN_HEAD):
                 term_newln(p);                  term_newln(p);
                 p->bold--;  
                 break;                  break;
         case (MAN_BODY):          case (MAN_BODY):
                 term_newln(p);                  term_newln(p);
Line 861  print_man_node(DECL_ARGS)
Line 816  print_man_node(DECL_ARGS)
                 if (sz >= 2 && n->string[sz - 1] == 'c' &&                  if (sz >= 2 && n->string[sz - 1] == 'c' &&
                                 n->string[sz - 2] == '\\')                                  n->string[sz - 2] == '\\')
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
   
                 /* FIXME: this means that macro lines are munged!  */                  /* FIXME: this means that macro lines are munged!  */
   
                 if (MANT_LITERAL & mt->fl) {                  if (MANT_LITERAL & mt->fl) {
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
                         term_flushln(p);                          term_flushln(p);
                 }                  }
                 break;                  break;
         default:          default:
                   term_fontrepl(p, TERMFONT_NONE);
                 if (termacts[n->tok].pre)                  if (termacts[n->tok].pre)
                         c = (*termacts[n->tok].pre)(p, mt, n, m);                          c = (*termacts[n->tok].pre)(p, mt, n, m);
                 break;                  break;
         }          }
   
         if (c && n->child)          if (c && n->child)
                 print_man_body(p, mt, n->child, m);                  print_man_nodelist(p, mt, n->child, m);
   
         if (MAN_TEXT != n->type) {          if (MAN_TEXT != n->type) {
                 if (termacts[n->tok].post)                  if (termacts[n->tok].post)
                         (*termacts[n->tok].post)(p, mt, n, m);                          (*termacts[n->tok].post)(p, mt, n, m);
                   term_fontrepl(p, TERMFONT_NONE);
                 /* Reset metafont upon exit from macro. */  
                 p->metafont = 0;  
         }          }
 }  }
   
   
 static void  static void
 print_man_body(DECL_ARGS)  print_man_nodelist(DECL_ARGS)
 {  {
   
         print_man_node(p, mt, n, m);          print_man_node(p, mt, n, m);
         if ( ! n->next)          if ( ! n->next)
                 return;                  return;
         print_man_body(p, mt, n->next, m);          print_man_nodelist(p, mt, n->next, m);
 }  }
   
   
Line 902  print_man_foot(struct termp *p, const struct man_meta 
Line 858  print_man_foot(struct termp *p, const struct man_meta 
 {  {
         char            buf[DATESIZ];          char            buf[DATESIZ];
   
         p->metafont = 0;          term_fontrepl(p, TERMFONT_NONE);
   
         time2a(meta->date, buf, DATESIZ);          time2a(meta->date, buf, DATESIZ);
   

Legend:
Removed from v.1.51  
changed lines
  Added in v.1.52

CVSweb