[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.150 and 1.168

version 1.150, 2014/08/10 23:54:41 version 1.168, 2015/01/30 22:04:44
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2010-2015 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 21 
Line 21 
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
   #include <limits.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
Line 37 
Line 38 
 struct  mtermp {  struct  mtermp {
         int               fl;          int               fl;
 #define MANT_LITERAL     (1 << 0)  #define MANT_LITERAL     (1 << 0)
         size_t            lmargin[MAXMARGINS]; /* margins (incl. visible page) */          int               lmargin[MAXMARGINS]; /* margins (incl. vis. page) */
         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 */
Line 46  struct mtermp {
Line 47  struct mtermp {
   
 #define DECL_ARGS         struct termp *p, \  #define DECL_ARGS         struct termp *p, \
                           struct mtermp *mt, \                            struct mtermp *mt, \
                           const struct man_node *n, \                            struct man_node *n, \
                           const struct man_meta *meta                            const struct man_meta *meta
   
 struct  termact {  struct  termact {
Line 56  struct termact {
Line 57  struct termact {
 #define MAN_NOTEXT       (1 << 0) /* Never has text children. */  #define MAN_NOTEXT       (1 << 0) /* Never has text children. */
 };  };
   
 static  int               a2width(const struct termp *, const char *);  
 static  size_t            a2height(const struct termp *, const char *);  
   
 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_head(struct termp *, const void *);  static  void              print_man_head(struct termp *, const void *);
Line 116  static const struct termact termacts[MAN_MAX] = {
Line 114  static const struct termact termacts[MAN_MAX] = {
         { pre_I, NULL, 0 }, /* I */          { pre_I, NULL, 0 }, /* I */
         { pre_alternate, NULL, 0 }, /* IR */          { pre_alternate, NULL, 0 }, /* IR */
         { pre_alternate, NULL, 0 }, /* RI */          { pre_alternate, NULL, 0 }, /* RI */
         { pre_ign, NULL, MAN_NOTEXT }, /* na */  
         { pre_sp, NULL, MAN_NOTEXT }, /* sp */          { pre_sp, NULL, MAN_NOTEXT }, /* sp */
         { pre_literal, NULL, 0 }, /* nf */          { pre_literal, NULL, 0 }, /* nf */
         { pre_literal, NULL, 0 }, /* fi */          { pre_literal, NULL, 0 }, /* fi */
         { NULL, NULL, 0 }, /* RE */          { NULL, NULL, 0 }, /* RE */
         { 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, MAN_NOTEXT }, /* UC */
         { pre_PD, NULL, MAN_NOTEXT }, /* 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 */
Line 141  void
Line 138  void
 terminal_man(void *arg, const struct man *man)  terminal_man(void *arg, const struct man *man)
 {  {
         struct termp            *p;          struct termp            *p;
         const struct man_node   *n;  
         const struct man_meta   *meta;          const struct man_meta   *meta;
           struct man_node         *n;
         struct mtermp            mt;          struct mtermp            mt;
   
         p = (struct termp *)arg;          p = (struct termp *)arg;
   
         if (0 == p->defindent)  
                 p->defindent = 7;  
   
         p->overstep = 0;          p->overstep = 0;
         p->maxrmargin = p->defrmargin;          p->rmargin = p->maxrmargin = p->defrmargin;
         p->tabwidth = term_len(p, 5);          p->tabwidth = term_len(p, 5);
   
         if (NULL == p->symtab)          n = man_node(man)->child;
                 p->symtab = mchars_alloc();  
   
         n = man_node(man);  
         meta = man_meta(man);          meta = man_meta(man);
   
         term_begin(p, print_man_head, print_man_foot, meta);  
         p->flags |= TERMP_NOSPACE;  
   
         memset(&mt, 0, sizeof(struct mtermp));          memset(&mt, 0, sizeof(struct mtermp));
   
         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;          mt.pardist = 1;
   
         if (n->child)          if (p->synopsisonly) {
                 print_man_nodelist(p, &mt, n->child, meta);                  while (n != NULL) {
                           if (n->tok == MAN_SH &&
         term_end(p);                              n->child->child->type == MAN_TEXT &&
                               !strcmp(n->child->child->string, "SYNOPSIS")) {
                                   if (n->child->next->child != NULL)
                                           print_man_nodelist(p, &mt,
                                               n->child->next->child, meta);
                                   term_newln(p);
                                   break;
                           }
                           n = n->next;
                   }
           } else {
                   if (p->defindent == 0)
                           p->defindent = 7;
                   term_begin(p, print_man_head, print_man_foot, meta);
                   p->flags |= TERMP_NOSPACE;
                   if (n != NULL)
                           print_man_nodelist(p, &mt, n, meta);
                   term_end(p);
           }
 }  }
   
   
 static size_t  
 a2height(const struct termp *p, const char *cp)  
 {  
         struct roffsu    su;  
   
         if ( ! a2roffsu(cp, &su, SCALE_VS))  
                 SCALE_VS_INIT(&su, atoi(cp));  
   
         return(term_vspan(p, &su));  
 }  
   
 static int  
 a2width(const struct termp *p, const char *cp)  
 {  
         struct roffsu    su;  
   
         if ( ! a2roffsu(cp, &su, SCALE_BU))  
                 return(-1);  
   
         return((int)term_hspan(p, &su));  
 }  
   
 /*  /*
  * Printing leading vertical space before a block.   * Printing leading vertical space before a block.
  * This is used for the paragraph macros.   * This is used for the paragraph macros.
Line 279  pre_literal(DECL_ARGS)
Line 262  pre_literal(DECL_ARGS)
 static int  static int
 pre_PD(DECL_ARGS)  pre_PD(DECL_ARGS)
 {  {
           struct roffsu    su;
   
         n = n->child;          n = n->child;
         if (0 == n) {          if (n == NULL) {
                 mt->pardist = 1;                  mt->pardist = 1;
                 return(0);                  return(0);
         }          }
         assert(MAN_TEXT == n->type);          assert(MAN_TEXT == n->type);
         mt->pardist = atoi(n->string);          if (a2roffsu(n->string, &su, SCALE_VS))
                   mt->pardist = term_vspan(p, &su);
         return(0);          return(0);
 }  }
   
Line 294  static int
Line 279  static int
 pre_alternate(DECL_ARGS)  pre_alternate(DECL_ARGS)
 {  {
         enum termfont            font[2];          enum termfont            font[2];
         const struct man_node   *nn;          struct man_node         *nn;
         int                      savelit, i;          int                      savelit, i;
   
         switch (n->tok) {          switch (n->tok) {
Line 414  pre_ft(DECL_ARGS)
Line 399  pre_ft(DECL_ARGS)
 static int  static int
 pre_in(DECL_ARGS)  pre_in(DECL_ARGS)
 {  {
         int              len, less;          struct roffsu    su;
         size_t           v;  
         const char      *cp;          const char      *cp;
           size_t           v;
           int              less;
   
         term_newln(p);          term_newln(p);
   
Line 435  pre_in(DECL_ARGS)
Line 421  pre_in(DECL_ARGS)
         else          else
                 cp--;                  cp--;
   
         if ((len = a2width(p, ++cp)) < 0)          if ( ! a2roffsu(++cp, &su, SCALE_EN))
                 return(0);                  return(0);
   
         v = (size_t)len;          v = term_hspan(p, &su);
   
         if (less < 0)          if (less < 0)
                 p->offset -= p->offset > v ? v : p->offset;                  p->offset -= p->offset > v ? v : p->offset;
Line 446  pre_in(DECL_ARGS)
Line 432  pre_in(DECL_ARGS)
                 p->offset += v;                  p->offset += v;
         else          else
                 p->offset = v;                  p->offset = v;
           if (p->offset > SHRT_MAX)
                   p->offset = term_len(p, p->defindent);
   
         /* Don't let this creep beyond the right margin. */  
   
         if (p->offset > p->rmargin)  
                 p->offset = p->rmargin;  
   
         return(0);          return(0);
 }  }
   
 static int  static int
 pre_sp(DECL_ARGS)  pre_sp(DECL_ARGS)
 {  {
         char            *s;          struct roffsu    su;
         size_t           i, len;          int              i, len;
         int              neg;  
   
         if ((NULL == n->prev && n->parent)) {          if ((NULL == n->prev && n->parent)) {
                 switch (n->parent->tok) {                  switch (n->parent->tok) {
Line 480  pre_sp(DECL_ARGS)
Line 462  pre_sp(DECL_ARGS)
                 }                  }
         }          }
   
         neg = 0;          if (n->tok == MAN_br)
         switch (n->tok) {  
         case MAN_br:  
                 len = 0;                  len = 0;
                 break;          else if (n->child == NULL)
         default:                  len = 1;
                 if (NULL == n->child) {          else {
                         len = 1;                  if ( ! a2roffsu(n->child->string, &su, SCALE_VS))
                         break;                          su.scale = 1.0;
                 }                  len = term_vspan(p, &su);
                 s = n->child->string;  
                 if ('-' == *s) {  
                         neg = 1;  
                         s++;  
                 }  
                 len = a2height(p, s);  
                 break;  
         }          }
   
         if (0 == len)          if (len == 0)
                 term_newln(p);                  term_newln(p);
         else if (neg)          else if (len < 0)
                 p->skipvsp += len;                  p->skipvsp -= len;
         else          else
                 for (i = 0; i < len; i++)                  for (i = 0; i < len; i++)
                         term_vspace(p);                          term_vspace(p);
Line 513  pre_sp(DECL_ARGS)
Line 486  pre_sp(DECL_ARGS)
 static int  static int
 pre_HP(DECL_ARGS)  pre_HP(DECL_ARGS)
 {  {
         size_t                   len, one;          struct roffsu            su;
         int                      ival;  
         const struct man_node   *nn;          const struct man_node   *nn;
           int                      len;
   
         switch (n->type) {          switch (n->type) {
         case MAN_BLOCK:          case MAN_BLOCK:
Line 532  pre_HP(DECL_ARGS)
Line 505  pre_HP(DECL_ARGS)
                 p->trailspace = 2;                  p->trailspace = 2;
         }          }
   
         len = mt->lmargin[mt->lmargincur];  
         ival = -1;  
   
         /* Calculate offset. */          /* Calculate offset. */
   
         if (NULL != (nn = n->parent->head->child))          if ((nn = n->parent->head->child) != NULL &&
                 if ((ival = a2width(p, nn->string)) >= 0)              a2roffsu(nn->string, &su, SCALE_EN)) {
                         len = (size_t)ival;                  len = term_hspan(p, &su);
                   if (len < 0 && (size_t)(-len) > mt->offset)
                           len = -mt->offset;
                   else if (len > SHRT_MAX)
                           len = term_len(p, p->defindent);
                   mt->lmargin[mt->lmargincur] = len;
           } else
                   len = mt->lmargin[mt->lmargincur];
   
         one = term_len(p, 1);  
         if (len < one)  
                 len = one;  
   
         p->offset = mt->offset;          p->offset = mt->offset;
         p->rmargin = mt->offset + len;          p->rmargin = mt->offset + len;
   
         if (ival >= 0)  
                 mt->lmargin[mt->lmargincur] = (size_t)ival;  
   
         return(1);          return(1);
 }  }
   
Line 591  pre_PP(DECL_ARGS)
Line 560  pre_PP(DECL_ARGS)
 static int  static int
 pre_IP(DECL_ARGS)  pre_IP(DECL_ARGS)
 {  {
           struct roffsu            su;
         const struct man_node   *nn;          const struct man_node   *nn;
         size_t                   len;          int                      len, savelit;
         int                      savelit, ival;  
   
         switch (n->type) {          switch (n->type) {
         case MAN_BODY:          case MAN_BODY:
Line 610  pre_IP(DECL_ARGS)
Line 579  pre_IP(DECL_ARGS)
                 return(1);                  return(1);
         }          }
   
         len = mt->lmargin[mt->lmargincur];  
         ival = -1;  
   
         /* Calculate the offset from the optional second argument. */          /* Calculate the offset from the optional second argument. */
         if (NULL != (nn = n->parent->head->child))          if ((nn = n->parent->head->child) != NULL &&
                 if (NULL != (nn = nn->next))              (nn = nn->next) != NULL &&
                         if ((ival = a2width(p, nn->string)) >= 0)              a2roffsu(nn->string, &su, SCALE_EN)) {
                                 len = (size_t)ival;                  len = term_hspan(p, &su);
                   if (len < 0 && (size_t)(-len) > mt->offset)
                           len = -mt->offset;
                   else if (len > SHRT_MAX)
                           len = term_len(p, p->defindent);
                   mt->lmargin[mt->lmargincur] = len;
           } else
                   len = mt->lmargin[mt->lmargincur];
   
         switch (n->type) {          switch (n->type) {
         case MAN_HEAD:          case MAN_HEAD:
                 /* Handle zero-width lengths. */  
                 if (0 == len)  
                         len = term_len(p, 1);  
   
                 p->offset = mt->offset;                  p->offset = mt->offset;
                 p->rmargin = mt->offset + len;                  p->rmargin = mt->offset + len;
                 if (ival < 0)  
                         break;  
   
                 /* Set the saved left-margin. */  
                 mt->lmargin[mt->lmargincur] = (size_t)ival;  
   
                 savelit = MANT_LITERAL & mt->fl;                  savelit = MANT_LITERAL & mt->fl;
                 mt->fl &= ~MANT_LITERAL;                  mt->fl &= ~MANT_LITERAL;
   
Line 645  pre_IP(DECL_ARGS)
Line 609  pre_IP(DECL_ARGS)
                 return(0);                  return(0);
         case MAN_BODY:          case MAN_BODY:
                 p->offset = mt->offset + len;                  p->offset = mt->offset + len;
                 p->rmargin = p->maxrmargin > p->offset ?                  p->rmargin = p->maxrmargin;
                     p->maxrmargin : p->offset;  
                 break;                  break;
         default:          default:
                 break;                  break;
Line 678  post_IP(DECL_ARGS)
Line 641  post_IP(DECL_ARGS)
 static int  static int
 pre_TP(DECL_ARGS)  pre_TP(DECL_ARGS)
 {  {
         const struct man_node   *nn;          struct roffsu            su;
         size_t                   len;          struct man_node         *nn;
         int                      savelit, ival;          int                      len, savelit;
   
         switch (n->type) {          switch (n->type) {
         case MAN_HEAD:          case MAN_HEAD:
Line 697  pre_TP(DECL_ARGS)
Line 660  pre_TP(DECL_ARGS)
                 return(1);                  return(1);
         }          }
   
         len = (size_t)mt->lmargin[mt->lmargincur];  
         ival = -1;  
   
         /* Calculate offset. */          /* Calculate offset. */
   
         if (NULL != (nn = n->parent->head->child))          if ((nn = n->parent->head->child) != NULL &&
                 if (nn->string && 0 == (MAN_LINE & nn->flags))              nn->string != NULL && ! (MAN_LINE & nn->flags) &&
                         if ((ival = a2width(p, nn->string)) >= 0)              a2roffsu(nn->string, &su, SCALE_EN)) {
                                 len = (size_t)ival;                  len = term_hspan(p, &su);
                   if (len < 0 && (size_t)(-len) > mt->offset)
                           len = -mt->offset;
                   else if (len > SHRT_MAX)
                           len = term_len(p, p->defindent);
                   mt->lmargin[mt->lmargincur] = len;
           } else
                   len = mt->lmargin[mt->lmargincur];
   
         switch (n->type) {          switch (n->type) {
         case MAN_HEAD:          case MAN_HEAD:
                 /* Handle zero-length properly. */  
                 if (0 == len)  
                         len = term_len(p, 1);  
   
                 p->offset = mt->offset;                  p->offset = mt->offset;
                 p->rmargin = mt->offset + len;                  p->rmargin = mt->offset + len;
   
Line 731  pre_TP(DECL_ARGS)
Line 694  pre_TP(DECL_ARGS)
   
                 if (savelit)                  if (savelit)
                         mt->fl |= MANT_LITERAL;                          mt->fl |= MANT_LITERAL;
                 if (ival >= 0)  
                         mt->lmargin[mt->lmargincur] = (size_t)ival;  
   
                 return(0);                  return(0);
         case MAN_BODY:          case MAN_BODY:
                 p->offset = mt->offset + len;                  p->offset = mt->offset + len;
                 p->rmargin = p->maxrmargin > p->offset ?                  p->rmargin = p->maxrmargin;
                     p->maxrmargin : p->offset;  
                 p->trailspace = 0;                  p->trailspace = 0;
                 p->flags &= ~TERMP_NOBREAK;                  p->flags &= ~TERMP_NOBREAK;
                 break;                  break;
Line 776  pre_SS(DECL_ARGS)
Line 735  pre_SS(DECL_ARGS)
                 mt->fl &= ~MANT_LITERAL;                  mt->fl &= ~MANT_LITERAL;
                 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);
                 /* If following a prior empty `SS', no vspace. */  
                 if (n->prev && MAN_SS == n->prev->tok)                  /*
                         if (NULL == n->prev->body->child)                   * No vertical space before the first subsection
                                 break;                   * and after an empty subsection.
                 if (NULL == n->prev)                   */
   
                   do {
                           n = n->prev;
                   } while (n != NULL && termacts[n->tok].flags & MAN_NOTEXT);
                   if (n == NULL || (n->tok == MAN_SS && n->body->child == NULL))
                         break;                          break;
   
                 for (i = 0; i < mt->pardist; i++)                  for (i = 0; i < mt->pardist; i++)
                         term_vspace(p);                          term_vspace(p);
                 break;                  break;
Line 825  pre_SH(DECL_ARGS)
Line 790  pre_SH(DECL_ARGS)
                 mt->fl &= ~MANT_LITERAL;                  mt->fl &= ~MANT_LITERAL;
                 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);
                 /* If following a prior empty `SH', no vspace. */  
                 if (n->prev && MAN_SH == n->prev->tok)                  /*
                         if (NULL == n->prev->body->child)                   * No vertical space before the first section
                                 break;                   * and after an empty section.
                 /* If the first macro, no vspae. */                   */
                 if (NULL == n->prev)  
                   do {
                           n = n->prev;
                   } while (n != NULL && termacts[n->tok].flags & MAN_NOTEXT);
                   if (n == NULL || (n->tok == MAN_SH && n->body->child == NULL))
                         break;                          break;
   
                 for (i = 0; i < mt->pardist; i++)                  for (i = 0; i < mt->pardist; i++)
                         term_vspace(p);                          term_vspace(p);
                 break;                  break;
Line 868  post_SH(DECL_ARGS)
Line 838  post_SH(DECL_ARGS)
 static int  static int
 pre_RS(DECL_ARGS)  pre_RS(DECL_ARGS)
 {  {
         int              ival;          struct roffsu    su;
         size_t           sz;  
   
         switch (n->type) {          switch (n->type) {
         case MAN_BLOCK:          case MAN_BLOCK:
Line 881  pre_RS(DECL_ARGS)
Line 850  pre_RS(DECL_ARGS)
                 break;                  break;
         }          }
   
         sz = term_len(p, p->defindent);          n = n->parent->head;
           n->aux = SHRT_MAX + 1;
           if (n->child != NULL && a2roffsu(n->child->string, &su, SCALE_EN))
                   n->aux = term_hspan(p, &su);
           if (n->aux < 0 && (size_t)(-n->aux) > mt->offset)
                   n->aux = -mt->offset;
           else if (n->aux > SHRT_MAX)
                   n->aux = term_len(p, p->defindent);
   
         if (NULL != (n = n->parent->head->child))          mt->offset += n->aux;
                 if ((ival = a2width(p, n->string)) >= 0)  
                         sz = (size_t)ival;  
   
         mt->offset += sz;  
         p->offset = mt->offset;          p->offset = mt->offset;
         p->rmargin = p->maxrmargin > p->offset ?          p->rmargin = p->maxrmargin;
             p->maxrmargin : p->offset;  
   
         if (++mt->lmarginsz < MAXMARGINS)          if (++mt->lmarginsz < MAXMARGINS)
                 mt->lmargincur = mt->lmarginsz;                  mt->lmargincur = mt->lmarginsz;
Line 902  pre_RS(DECL_ARGS)
Line 873  pre_RS(DECL_ARGS)
 static void  static void
 post_RS(DECL_ARGS)  post_RS(DECL_ARGS)
 {  {
         int              ival;  
         size_t           sz;  
   
         switch (n->type) {          switch (n->type) {
         case MAN_BLOCK:          case MAN_BLOCK:
Line 915  post_RS(DECL_ARGS)
Line 884  post_RS(DECL_ARGS)
                 break;                  break;
         }          }
   
         sz = term_len(p, p->defindent);          mt->offset -= n->parent->head->aux;
   
         if (NULL != (n = n->parent->head->child))  
                 if ((ival = a2width(p, n->string)) >= 0)  
                         sz = (size_t)ival;  
   
         mt->offset = mt->offset < sz ?  0 : mt->offset - sz;  
         p->offset = mt->offset;          p->offset = mt->offset;
   
         if (--mt->lmarginsz < MAXMARGINS)          if (--mt->lmarginsz < MAXMARGINS)
Line 975  print_man_node(DECL_ARGS)
Line 938  print_man_node(DECL_ARGS)
                 goto out;                  goto out;
   
         case MAN_EQN:          case MAN_EQN:
                   if ( ! (n->flags & MAN_LINE))
                           p->flags |= TERMP_NOSPACE;
                 term_eqn(p, n->eqn);                  term_eqn(p, n->eqn);
                   if (n->next != NULL && ! (n->next->flags & MAN_LINE))
                           p->flags |= TERMP_NOSPACE;
                 return;                  return;
         case MAN_TBL:          case MAN_TBL:
                 /*                  /*
                  * Tables are preceded by a newline.  Then process a                   * Tables are preceded by a newline.  Then process a
                  * table line, which will cause line termination,                   * table line, which will cause line termination,
                  */                   */
                 if (TBL_SPAN_FIRST & n->span->flags)                  if (n->span->prev == NULL)
                         term_newln(p);                          term_newln(p);
                 term_tbl(p, n->span);                  term_tbl(p, n->span);
                 return;                  return;
Line 1013  out:
Line 980  out:
          * -man doesn't have nested macros, we don't need to be           * -man doesn't have nested macros, we don't need to be
          * more specific than this.           * more specific than this.
          */           */
         if (MANT_LITERAL & mt->fl && ! (TERMP_NOBREAK & p->flags) &&          if (mt->fl & MANT_LITERAL &&
             (NULL == n->next || MAN_LINE & n->next->flags)) {              ! (p->flags & (TERMP_NOBREAK | TERMP_NONEWLINE)) &&
               (n->next == NULL || n->next->flags & MAN_LINE)) {
                 rm = p->rmargin;                  rm = p->rmargin;
                 rmax = p->maxrmargin;                  rmax = p->maxrmargin;
                 p->rmargin = p->maxrmargin = TERM_MAXMARGIN;                  p->rmargin = p->maxrmargin = TERM_MAXMARGIN;
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 if (NULL != n->string && '\0' != *n->string)                  if (n->string != NULL && *n->string != '\0')
                         term_flushln(p);                          term_flushln(p);
                 else                  else
                         term_newln(p);                          term_newln(p);
Line 1039  static void
Line 1007  static void
 print_man_nodelist(DECL_ARGS)  print_man_nodelist(DECL_ARGS)
 {  {
   
         print_man_node(p, mt, n, meta);          while (n != NULL) {
         if ( ! n->next)                  print_man_node(p, mt, n, meta);
                 return;                  n = n->next;
         print_man_nodelist(p, mt, n->next, meta);          }
 }  }
   
 static void  static void
Line 1050  print_man_foot(struct termp *p, const void *arg)
Line 1018  print_man_foot(struct termp *p, const void *arg)
 {  {
         const struct man_meta   *meta;          const struct man_meta   *meta;
         char                    *title;          char                    *title;
         size_t                   datelen;          size_t                   datelen, titlen;
   
         meta = (const struct man_meta *)arg;          meta = (const struct man_meta *)arg;
         assert(meta->title);          assert(meta->title);
Line 1087  print_man_foot(struct termp *p, const void *arg)
Line 1055  print_man_foot(struct termp *p, const void *arg)
         p->flags |= TERMP_NOSPACE | TERMP_NOBREAK;          p->flags |= TERMP_NOSPACE | TERMP_NOBREAK;
         p->trailspace = 1;          p->trailspace = 1;
         p->offset = 0;          p->offset = 0;
         p->rmargin = (p->maxrmargin - datelen + term_len(p, 1)) / 2;          p->rmargin = p->maxrmargin > datelen ?
               (p->maxrmargin + term_len(p, 1) - datelen) / 2 : 0;
   
         if (meta->source)          if (meta->source)
                 term_word(p, meta->source);                  term_word(p, meta->source);
Line 1095  print_man_foot(struct termp *p, const void *arg)
Line 1064  print_man_foot(struct termp *p, const void *arg)
   
         /* At the bottom in the middle: manual date. */          /* At the bottom in the middle: manual date. */
   
         p->flags |= TERMP_NOSPACE;  
         p->offset = p->rmargin;          p->offset = p->rmargin;
         p->rmargin = p->maxrmargin - term_strlen(p, title);          titlen = term_strlen(p, title);
         if (p->offset + datelen >= p->rmargin)          p->rmargin = p->maxrmargin > titlen ? p->maxrmargin - titlen : 0;
                 p->rmargin = p->offset + datelen;          p->flags |= TERMP_NOSPACE;
   
         term_word(p, meta->date);          term_word(p, meta->date);
         term_flushln(p);          term_flushln(p);
Line 1142  print_man_head(struct termp *p, const void *arg)
Line 1110  print_man_head(struct termp *p, const void *arg)
         p->offset = 0;          p->offset = 0;
         p->rmargin = 2 * (titlen+1) + vollen < p->maxrmargin ?          p->rmargin = 2 * (titlen+1) + vollen < p->maxrmargin ?
             (p->maxrmargin - vollen + term_len(p, 1)) / 2 :              (p->maxrmargin - vollen + term_len(p, 1)) / 2 :
             p->maxrmargin - vollen;              vollen < p->maxrmargin ? p->maxrmargin - vollen : 0;
   
         term_word(p, title);          term_word(p, title);
         term_flushln(p);          term_flushln(p);

Legend:
Removed from v.1.150  
changed lines
  Added in v.1.168

CVSweb