[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.133 and 1.134

version 1.133, 2012/07/16 21:59:40 version 1.134, 2012/07/29 12:35:42
Line 35 
Line 35 
   
 #define MAXMARGINS        64 /* maximum number of indented scopes */  #define MAXMARGINS        64 /* maximum number of indented scopes */
   
 /* FIXME: have PD set the default vspace width. */  
   
 struct  mtermp {  struct  mtermp {
         int               fl;          int               fl;
 #define MANT_LITERAL     (1 << 0)  #define MANT_LITERAL     (1 << 0)
Line 44  struct mtermp {
Line 42  struct mtermp {
         int               lmargincur; /* index of current margin */          int               lmargincur; /* index of current margin */
         int               lmarginsz; /* actual number of nested margins */          int               lmarginsz; /* actual number of nested margins */
         size_t            offset; /* default offset to visible page */          size_t            offset; /* default offset to visible page */
           int               pardist; /* vert. space before par., unit: [v] */
 };  };
   
 #define DECL_ARGS         struct termp *p, \  #define DECL_ARGS         struct termp *p, \
Line 66  static void    print_man_node(DECL_ARGS);
Line 65  static void    print_man_node(DECL_ARGS);
 static  void              print_man_head(struct termp *, const void *);  static  void              print_man_head(struct termp *, const void *);
 static  void              print_man_foot(struct termp *, const void *);  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 *, int);
   
 static  int               pre_B(DECL_ARGS);  static  int               pre_B(DECL_ARGS);
 static  int               pre_HP(DECL_ARGS);  static  int               pre_HP(DECL_ARGS);
 static  int               pre_I(DECL_ARGS);  static  int               pre_I(DECL_ARGS);
 static  int               pre_IP(DECL_ARGS);  static  int               pre_IP(DECL_ARGS);
 static  int               pre_OP(DECL_ARGS);  static  int               pre_OP(DECL_ARGS);
   static  int               pre_PD(DECL_ARGS);
 static  int               pre_PP(DECL_ARGS);  static  int               pre_PP(DECL_ARGS);
 static  int               pre_RS(DECL_ARGS);  static  int               pre_RS(DECL_ARGS);
 static  int               pre_SH(DECL_ARGS);  static  int               pre_SH(DECL_ARGS);
Line 122  static const struct termact termacts[MAN_MAX] = {
Line 122  static const struct termact termacts[MAN_MAX] = {
         { pre_RS, post_RS, 0 }, /* RS */          { pre_RS, post_RS, 0 }, /* RS */
         { pre_ign, NULL, 0 }, /* DT */          { pre_ign, NULL, 0 }, /* DT */
         { pre_ign, NULL, 0 }, /* UC */          { pre_ign, NULL, 0 }, /* UC */
         { pre_ign, NULL, 0 }, /* PD */          { pre_PD, NULL, MAN_NOTEXT }, /* PD */
         { pre_ign, NULL, 0 }, /* AT */          { pre_ign, NULL, 0 }, /* AT */
         { pre_in, NULL, MAN_NOTEXT }, /* in */          { pre_in, NULL, MAN_NOTEXT }, /* in */
         { pre_ft, NULL, MAN_NOTEXT }, /* ft */          { pre_ft, NULL, MAN_NOTEXT }, /* ft */
Line 163  terminal_man(void *arg, const struct man *man)
Line 163  terminal_man(void *arg, const struct man *man)
   
         mt.lmargin[mt.lmargincur] = term_len(p, p->defindent);          mt.lmargin[mt.lmargincur] = term_len(p, p->defindent);
         mt.offset = term_len(p, p->defindent);          mt.offset = term_len(p, p->defindent);
           mt.pardist = 1;
   
         if (n->child)          if (n->child)
                 print_man_nodelist(p, &mt, n->child, m);                  print_man_nodelist(p, &mt, n->child, m);
Line 203  a2width(const struct termp *p, const char *cp)
Line 204  a2width(const struct termp *p, const char *cp)
  * first, print it.   * first, print it.
  */   */
 static void  static void
 print_bvspace(struct termp *p, const struct man_node *n)  print_bvspace(struct termp *p, const struct man_node *n, int pardist)
 {  {
           int      i;
   
         term_newln(p);          term_newln(p);
   
Line 216  print_bvspace(struct termp *p, const struct man_node *
Line 218  print_bvspace(struct termp *p, const struct man_node *
                 if (NULL == n->prev)                  if (NULL == n->prev)
                         return;                          return;
   
         term_vspace(p);          for (i = 0; i < pardist; i++)
                   term_vspace(p);
 }  }
   
 /* ARGSUSED */  /* ARGSUSED */
Line 267  pre_literal(DECL_ARGS)
Line 270  pre_literal(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
   pre_PD(DECL_ARGS)
   {
   
           n = n->child;
           if (0 == n) {
                   mt->pardist = 1;
                   return(0);
           }
           assert(MAN_TEXT == n->type);
           mt->pardist = atoi(n->string);
           return(0);
   }
   
   /* ARGSUSED */
   static int
 pre_alternate(DECL_ARGS)  pre_alternate(DECL_ARGS)
 {  {
         enum termfont            font[2];          enum termfont            font[2];
Line 503  pre_HP(DECL_ARGS)
Line 521  pre_HP(DECL_ARGS)
   
         switch (n->type) {          switch (n->type) {
         case (MAN_BLOCK):          case (MAN_BLOCK):
                 print_bvspace(p, n);                  print_bvspace(p, n, mt->pardist);
                 return(1);                  return(1);
         case (MAN_BODY):          case (MAN_BODY):
                 break;                  break;
Line 566  pre_PP(DECL_ARGS)
Line 584  pre_PP(DECL_ARGS)
         switch (n->type) {          switch (n->type) {
         case (MAN_BLOCK):          case (MAN_BLOCK):
                 mt->lmargin[mt->lmargincur] = term_len(p, p->defindent);                  mt->lmargin[mt->lmargincur] = term_len(p, p->defindent);
                 print_bvspace(p, n);                  print_bvspace(p, n, mt->pardist);
                 break;                  break;
         default:          default:
                 p->offset = mt->offset;                  p->offset = mt->offset;
Line 593  pre_IP(DECL_ARGS)
Line 611  pre_IP(DECL_ARGS)
                 p->flags |= TERMP_NOBREAK;                  p->flags |= TERMP_NOBREAK;
                 break;                  break;
         case (MAN_BLOCK):          case (MAN_BLOCK):
                 print_bvspace(p, n);                  print_bvspace(p, n, mt->pardist);
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         default:          default:
                 return(1);                  return(1);
Line 680  pre_TP(DECL_ARGS)
Line 698  pre_TP(DECL_ARGS)
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 break;                  break;
         case (MAN_BLOCK):          case (MAN_BLOCK):
                 print_bvspace(p, n);                  print_bvspace(p, n, mt->pardist);
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         default:          default:
                 return(1);                  return(1);
Line 755  post_TP(DECL_ARGS)
Line 773  post_TP(DECL_ARGS)
 static int  static int
 pre_SS(DECL_ARGS)  pre_SS(DECL_ARGS)
 {  {
           int      i;
   
         switch (n->type) {          switch (n->type) {
         case (MAN_BLOCK):          case (MAN_BLOCK):
Line 767  pre_SS(DECL_ARGS)
Line 786  pre_SS(DECL_ARGS)
                                 break;                                  break;
                 if (NULL == n->prev)                  if (NULL == n->prev)
                         break;                          break;
                 term_vspace(p);                  for (i = 0; i < mt->pardist; i++)
                           term_vspace(p);
                 break;                  break;
         case (MAN_HEAD):          case (MAN_HEAD):
                 term_fontrepl(p, TERMFONT_BOLD);                  term_fontrepl(p, TERMFONT_BOLD);
Line 806  post_SS(DECL_ARGS)
Line 826  post_SS(DECL_ARGS)
 static int  static int
 pre_SH(DECL_ARGS)  pre_SH(DECL_ARGS)
 {  {
           int      i;
   
         switch (n->type) {          switch (n->type) {
         case (MAN_BLOCK):          case (MAN_BLOCK):
Line 819  pre_SH(DECL_ARGS)
Line 840  pre_SH(DECL_ARGS)
                 /* If the first macro, no vspae. */                  /* If the first macro, no vspae. */
                 if (NULL == n->prev)                  if (NULL == n->prev)
                         break;                          break;
                 term_vspace(p);                  for (i = 0; i < mt->pardist; i++)
                           term_vspace(p);
                 break;                  break;
         case (MAN_HEAD):          case (MAN_HEAD):
                 term_fontrepl(p, TERMFONT_BOLD);                  term_fontrepl(p, TERMFONT_BOLD);

Legend:
Removed from v.1.133  
changed lines
  Added in v.1.134

CVSweb