[BACK]Return to term.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term.c between version 1.61 and 1.62

version 1.61, 2009/03/16 23:37:28 version 1.62, 2009/03/20 15:14:01
Line 434  termp_dq_pre(DECL_ARGS)
Line 434  termp_dq_pre(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
   
         word(p, "\\(lq");          term_word(p, "\\(lq");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 449  termp_dq_post(DECL_ARGS)
Line 449  termp_dq_post(DECL_ARGS)
                 return;                  return;
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\\(rq");          term_word(p, "\\(rq");
 }  }
   
   
Line 458  static int
Line 458  static int
 termp_it_pre_block(DECL_ARGS)  termp_it_pre_block(DECL_ARGS)
 {  {
   
         newln(p);          term_newln(p);
         if ( ! arg_hasattr(MDOC_Compact, node->parent->parent))          if ( ! arg_hasattr(MDOC_Compact, node->parent->parent))
                 /* FIXME: parent->parent->parent? */                  term_vspace(p);
                 if (node->prev || node->parent->parent->prev)  
                         vspace(p);  
   
         return(1);          return(1);
 }  }
Line 664  termp_it_pre(DECL_ARGS)
Line 662  termp_it_pre(DECL_ARGS)
         if (MDOC_HEAD == node->type)          if (MDOC_HEAD == node->type)
                 switch (type) {                  switch (type) {
                 case (MDOC_Bullet):                  case (MDOC_Bullet):
                         word(p, "\\[bu]");                          term_word(p, "\\[bu]");
                         break;                          break;
                 case (MDOC_Dash):                  case (MDOC_Dash):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_Hyphen):                  case (MDOC_Hyphen):
                         word(p, "\\-");                          term_word(p, "\\-");
                         break;                          break;
                 case (MDOC_Enum):                  case (MDOC_Enum):
                         (pair->ppair->ppair->count)++;                          (pair->ppair->ppair->count)++;
                         (void)snprintf(buf, sizeof(buf), "%d.",                          (void)snprintf(buf, sizeof(buf), "%d.",
                                         pair->ppair->ppair->count);                                          pair->ppair->ppair->count);
                         word(p, buf);                          term_word(p, buf);
                         break;                          break;
                 default:                  default:
                         break;                          break;
Line 728  termp_it_post(DECL_ARGS)
Line 726  termp_it_post(DECL_ARGS)
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Inset):          case (MDOC_Inset):
                 if (MDOC_BODY == node->type)                  if (MDOC_BODY == node->type)
                         flushln(p);                          term_flushln(p);
                 break;                  break;
         case (MDOC_Column):          case (MDOC_Column):
                 if (MDOC_HEAD == node->type)                  if (MDOC_HEAD == node->type)
                         flushln(p);                          term_flushln(p);
                 break;                  break;
         default:          default:
                 flushln(p);                  term_flushln(p);
                 break;                  break;
         }          }
   
Line 751  termp_nm_pre(DECL_ARGS)
Line 749  termp_nm_pre(DECL_ARGS)
 {  {
   
         if (SEC_SYNOPSIS == node->sec)          if (SEC_SYNOPSIS == node->sec)
                 newln(p);                  term_newln(p);
   
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_PROG]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_PROG]);
         if (NULL == node->child)          if (NULL == node->child)
                 word(p, meta->name);                  term_word(p, meta->name);
   
         return(1);          return(1);
 }  }
Line 767  termp_fl_pre(DECL_ARGS)
Line 765  termp_fl_pre(DECL_ARGS)
 {  {
   
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CMD_FLAG]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CMD_FLAG]);
         word(p, "\\-");          term_word(p, "\\-");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 798  static int
Line 796  static int
 termp_pp_pre(DECL_ARGS)  termp_pp_pre(DECL_ARGS)
 {  {
   
         vspace(p);          term_vspace(p);
         return(1);          return(1);
 }  }
   
Line 810  termp_st_pre(DECL_ARGS)
Line 808  termp_st_pre(DECL_ARGS)
         const char      *cp;          const char      *cp;
   
         if (node->child && (cp = mdoc_a2st(node->child->string)))          if (node->child && (cp = mdoc_a2st(node->child->string)))
                 word(p, cp);                  term_word(p, cp);
         return(0);          return(0);
 }  }
   
Line 821  termp_rs_pre(DECL_ARGS)
Line 819  termp_rs_pre(DECL_ARGS)
 {  {
   
         if (MDOC_BLOCK == node->type && node->prev)          if (MDOC_BLOCK == node->type && node->prev)
                 vspace(p);                  term_vspace(p);
         return(1);          return(1);
 }  }
   
Line 837  termp_rv_pre(DECL_ARGS)
Line 835  termp_rv_pre(DECL_ARGS)
         if (1 != node->args->argv[i].sz)          if (1 != node->args->argv[i].sz)
                 errx(1, "expected -std argument");                  errx(1, "expected -std argument");
   
         newln(p);          term_newln(p);
         word(p, "The");          term_word(p, "The");
   
         p->flags |= ttypes[TTYPE_FUNC_NAME];          p->flags |= ttypes[TTYPE_FUNC_NAME];
         word(p, *node->args->argv[i].value);          term_word(p, *node->args->argv[i].value);
         p->flags &= ~ttypes[TTYPE_FUNC_NAME];          p->flags &= ~ttypes[TTYPE_FUNC_NAME];
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
   
         word(p, "() function returns the value 0 if successful;");          term_word(p, "() function returns the value 0 if successful;");
         word(p, "otherwise the value -1 is returned and the");          term_word(p, "otherwise the value -1 is returned and the");
         word(p, "global variable");          term_word(p, "global variable");
   
         p->flags |= ttypes[TTYPE_VAR_DECL];          p->flags |= ttypes[TTYPE_VAR_DECL];
         word(p, "errno");          term_word(p, "errno");
         p->flags &= ~ttypes[TTYPE_VAR_DECL];          p->flags &= ~ttypes[TTYPE_VAR_DECL];
   
         word(p, "is set to indicate the error.");          term_word(p, "is set to indicate the error.");
   
         return(1);          return(1);
 }  }
Line 870  termp_ex_pre(DECL_ARGS)
Line 868  termp_ex_pre(DECL_ARGS)
         if (1 != node->args->argv[i].sz)          if (1 != node->args->argv[i].sz)
                 errx(1, "expected -std argument");                  errx(1, "expected -std argument");
   
         word(p, "The");          term_word(p, "The");
         p->flags |= ttypes[TTYPE_PROG];          p->flags |= ttypes[TTYPE_PROG];
         word(p, *node->args->argv[i].value);          term_word(p, *node->args->argv[i].value);
         p->flags &= ~ttypes[TTYPE_PROG];          p->flags &= ~ttypes[TTYPE_PROG];
         word(p, "utility exits 0 on success, and >0 if an error occurs.");          term_word(p, "utility exits 0 on success, and >0 if an error occurs.");
   
         return(1);          return(1);
 }  }
Line 885  static int
Line 883  static int
 termp_nd_pre(DECL_ARGS)  termp_nd_pre(DECL_ARGS)
 {  {
   
         word(p, "\\-");          term_word(p, "\\-");
         return(1);          return(1);
 }  }
   
Line 896  termp_bl_post(DECL_ARGS)
Line 894  termp_bl_post(DECL_ARGS)
 {  {
   
         if (MDOC_BLOCK == node->type)          if (MDOC_BLOCK == node->type)
                 newln(p);                  term_newln(p);
 }  }
   
   
Line 908  termp_op_post(DECL_ARGS)
Line 906  termp_op_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\\(rB");          term_word(p, "\\(rB");
 }  }
   
   
Line 920  termp_xr_pre(DECL_ARGS)
Line 918  termp_xr_pre(DECL_ARGS)
   
         if (NULL == (n = node->child))          if (NULL == (n = node->child))
                 errx(1, "expected text line argument");                  errx(1, "expected text line argument");
         word(p, n->string);          term_word(p, n->string);
         if (NULL == (n = n->next))          if (NULL == (n = n->next))
                 return(0);                  return(0);
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "(");          term_word(p, "(");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, n->string);          term_word(p, n->string);
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, ")");          term_word(p, ")");
         return(0);          return(0);
 }  }
   
Line 950  termp_vt_post(DECL_ARGS)
Line 948  termp_vt_post(DECL_ARGS)
 {  {
   
         if (node->sec == SEC_SYNOPSIS)          if (node->sec == SEC_SYNOPSIS)
                 vspace(p);                  term_vspace(p);
 }  }
   
   
Line 975  termp_fd_post(DECL_ARGS)
Line 973  termp_fd_post(DECL_ARGS)
   
         if (node->sec != SEC_SYNOPSIS)          if (node->sec != SEC_SYNOPSIS)
                 return;                  return;
         newln(p);          term_newln(p);
         if (node->next && MDOC_Fd != node->next->tok)          if (node->next && MDOC_Fd != node->next->tok)
                 vspace(p);                  term_vspace(p);
 }  }
   
   
Line 988  termp_sh_pre(DECL_ARGS)
Line 986  termp_sh_pre(DECL_ARGS)
   
         switch (node->type) {          switch (node->type) {
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 vspace(p);                  term_vspace(p);
                 TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SECTION]);                  TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SECTION]);
                 break;                  break;
         case (MDOC_BODY):          case (MDOC_BODY):
Line 1008  termp_sh_post(DECL_ARGS)
Line 1006  termp_sh_post(DECL_ARGS)
   
         switch (node->type) {          switch (node->type) {
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 newln(p);                  term_newln(p);
                 break;                  break;
         case (MDOC_BODY):          case (MDOC_BODY):
                 newln(p);                  term_newln(p);
                 p->offset = 0;                  p->offset = 0;
                 break;                  break;
         default:          default:
Line 1027  termp_op_pre(DECL_ARGS)
Line 1025  termp_op_pre(DECL_ARGS)
   
         switch (node->type) {          switch (node->type) {
         case (MDOC_BODY):          case (MDOC_BODY):
                 word(p, "\\(lB");                  term_word(p, "\\(lB");
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 break;                  break;
         default:          default:
Line 1042  static int
Line 1040  static int
 termp_bt_pre(DECL_ARGS)  termp_bt_pre(DECL_ARGS)
 {  {
   
         word(p, "is currently in beta test.");          term_word(p, "is currently in beta test.");
         return(1);          return(1);
 }  }
   
Line 1056  termp_lb_pre(DECL_ARGS)
Line 1054  termp_lb_pre(DECL_ARGS)
         if (NULL == node->child)          if (NULL == node->child)
                 errx(1, "expected text line argument");                  errx(1, "expected text line argument");
         if ((lb = mdoc_a2lib(node->child->string))) {          if ((lb = mdoc_a2lib(node->child->string))) {
                 word(p, lb);                  term_word(p, lb);
                 return(0);                  return(0);
         }          }
         word(p, "library");          term_word(p, "library");
         return(1);          return(1);
 }  }
   
Line 1069  static void
Line 1067  static void
 termp_lb_post(DECL_ARGS)  termp_lb_post(DECL_ARGS)
 {  {
   
         newln(p);          term_newln(p);
 }  }
   
   
Line 1078  static int
Line 1076  static int
 termp_ud_pre(DECL_ARGS)  termp_ud_pre(DECL_ARGS)
 {  {
   
         word(p, "currently under development.");          term_word(p, "currently under development.");
         return(1);          return(1);
 }  }
   
Line 1090  termp_d1_pre(DECL_ARGS)
Line 1088  termp_d1_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         newln(p);          term_newln(p);
         p->offset += (pair->offset = INDENT);          p->offset += (pair->offset = INDENT);
         return(1);          return(1);
 }  }
Line 1103  termp_d1_post(DECL_ARGS)
Line 1101  termp_d1_post(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         newln(p);          term_newln(p);
         p->offset -= pair->offset;          p->offset -= pair->offset;
 }  }
   
Line 1115  termp_aq_pre(DECL_ARGS)
Line 1113  termp_aq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\\(la");          term_word(p, "\\(la");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1129  termp_aq_post(DECL_ARGS)
Line 1127  termp_aq_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\\(ra");          term_word(p, "\\(ra");
 }  }
   
   
Line 1140  termp_ft_pre(DECL_ARGS)
Line 1138  termp_ft_pre(DECL_ARGS)
   
         if (SEC_SYNOPSIS == node->sec)          if (SEC_SYNOPSIS == node->sec)
                 if (node->prev && MDOC_Fo == node->prev->tok)                  if (node->prev && MDOC_Fo == node->prev->tok)
                         vspace(p);                          term_vspace(p);
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_FUNC_TYPE]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_FUNC_TYPE]);
         return(1);          return(1);
 }  }
Line 1152  termp_ft_post(DECL_ARGS)
Line 1150  termp_ft_post(DECL_ARGS)
 {  {
   
         if (SEC_SYNOPSIS == node->sec)          if (SEC_SYNOPSIS == node->sec)
                 newln(p);                  term_newln(p);
 }  }
   
   
Line 1168  termp_fn_pre(DECL_ARGS)
Line 1166  termp_fn_pre(DECL_ARGS)
         /* FIXME: can be "type funcname" "type varname"... */          /* FIXME: can be "type funcname" "type varname"... */
   
         p->flags |= ttypes[TTYPE_FUNC_NAME];          p->flags |= ttypes[TTYPE_FUNC_NAME];
         word(p, node->child->string);          term_word(p, node->child->string);
         p->flags &= ~ttypes[TTYPE_FUNC_NAME];          p->flags &= ~ttypes[TTYPE_FUNC_NAME];
   
         word(p, "(");          term_word(p, "(");
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         for (n = node->child->next; n; n = n->next) {          for (n = node->child->next; n; n = n->next) {
                 p->flags |= ttypes[TTYPE_FUNC_ARG];                  p->flags |= ttypes[TTYPE_FUNC_ARG];
                 word(p, n->string);                  term_word(p, n->string);
                 p->flags &= ~ttypes[TTYPE_FUNC_ARG];                  p->flags &= ~ttypes[TTYPE_FUNC_ARG];
                 if (n->next)                  if (n->next)
                         word(p, ",");                          term_word(p, ",");
         }          }
   
         word(p, ")");          term_word(p, ")");
   
         if (SEC_SYNOPSIS == node->sec)          if (SEC_SYNOPSIS == node->sec)
                 word(p, ";");                  term_word(p, ";");
   
         return(0);          return(0);
 }  }
Line 1197  termp_fn_post(DECL_ARGS)
Line 1195  termp_fn_post(DECL_ARGS)
 {  {
   
         if (node->sec == SEC_SYNOPSIS && node->next)          if (node->sec == SEC_SYNOPSIS && node->next)
                 vspace(p);                  term_vspace(p);
   
 }  }
   
Line 1225  termp_fa_pre(DECL_ARGS)
Line 1223  termp_fa_pre(DECL_ARGS)
   
         for (n = node->child; n; n = n->next) {          for (n = node->child; n; n = n->next) {
                 p->flags |= ttypes[TTYPE_FUNC_ARG];                  p->flags |= ttypes[TTYPE_FUNC_ARG];
                 word(p, n->string);                  term_word(p, n->string);
                 p->flags &= ~ttypes[TTYPE_FUNC_ARG];                  p->flags &= ~ttypes[TTYPE_FUNC_ARG];
                 if (n->next)                  if (n->next)
                         word(p, ",");                          term_word(p, ",");
         }          }
   
         if (node->next && node->next->tok == MDOC_Fa)          if (node->next && node->next->tok == MDOC_Fa)
                 word(p, ",");                  term_word(p, ",");
   
         return(0);          return(0);
 }  }
Line 1252  termp_va_pre(DECL_ARGS)
Line 1250  termp_va_pre(DECL_ARGS)
 static int  static int
 termp_bd_pre(DECL_ARGS)  termp_bd_pre(DECL_ARGS)
 {  {
         const struct mdoc_node  *n;          int              i, type, ln;
         int                      i, type;  
   
           /*
            * This is fairly tricky due primarily to crappy documentation.
            * If -ragged or -filled are specified, the block does nothing
            * but change the indentation.
            *
            * If, on the other hand, -unfilled or -literal are specified,
            * then the game changes.  Text is printed exactly as entered in
            * the display: if a macro line, a newline is appended to the
            * line.  Blank lines are allowed.
            */
   
         if (MDOC_BLOCK == node->type) {          if (MDOC_BLOCK == node->type) {
                 /* FIXME: parent prev? */                  /* FIXME: parent prev? */
                 if (node->prev)                  if (node->prev)
                         vspace(p);                          term_vspace(p);
                 return(1);                  return(1);
         } else if (MDOC_BODY != node->type)          } else if (MDOC_BODY != node->type)
                 return(1);                  return(1);
Line 1305  termp_bd_pre(DECL_ARGS)
Line 1313  termp_bd_pre(DECL_ARGS)
                 return(1);                  return(1);
         }          }
   
           /*
            * Tricky.  Iterate through all children.  If we're on a
            * different parse line, append a newline and then the contents.
            * Ew.
            */
   
         p->flags |= TERMP_LITERAL;          p->flags |= TERMP_LITERAL;
           ln = node->child ? node->child->line : 0;
   
         for (n = node->child; n; n = n->next) {          for (node = node->child; node; node = node->next) {
                 if (MDOC_TEXT != n->type) {                  if (ln < node->line) {
                         warnx("non-text children not yet allowed");                          term_flushln(p);
                         continue;                          p->flags |= TERMP_NOSPACE;
                 }                  }
                 word(p, n->string);                  ln = node->line;
                 flushln(p);                  term_node(p, pair, meta, node);
         }          }
   
         return(0);          return(0);
Line 1328  termp_bd_post(DECL_ARGS)
Line 1343  termp_bd_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
   
         if ( ! (p->flags & TERMP_LITERAL))  
                 flushln(p);  
   
         p->flags &= ~TERMP_LITERAL;          p->flags &= ~TERMP_LITERAL;
         p->offset = pair->offset;          p->offset = pair->offset;
           p->flags |= TERMP_NOSPACE;
 }  }
   
   
Line 1343  termp_qq_pre(DECL_ARGS)
Line 1356  termp_qq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\"");          term_word(p, "\"");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1357  termp_qq_post(DECL_ARGS)
Line 1370  termp_qq_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\"");          term_word(p, "\"");
 }  }
   
   
Line 1366  static int
Line 1379  static int
 termp_bsx_pre(DECL_ARGS)  termp_bsx_pre(DECL_ARGS)
 {  {
   
         word(p, "BSDI BSD/OS");          term_word(p, "BSDI BSD/OS");
         return(1);          return(1);
 }  }
   
Line 1378  termp_bx_post(DECL_ARGS)
Line 1391  termp_bx_post(DECL_ARGS)
   
         if (node->child)          if (node->child)
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
         word(p, "BSD");          term_word(p, "BSD");
 }  }
   
   
Line 1387  static int
Line 1400  static int
 termp_ox_pre(DECL_ARGS)  termp_ox_pre(DECL_ARGS)
 {  {
   
         word(p, "OpenBSD");          term_word(p, "OpenBSD");
         return(1);          return(1);
 }  }
   
Line 1397  static int
Line 1410  static int
 termp_dx_pre(DECL_ARGS)  termp_dx_pre(DECL_ARGS)
 {  {
   
         word(p, "DragonFly");          term_word(p, "DragonFly");
         return(1);          return(1);
 }  }
   
Line 1407  static int
Line 1420  static int
 termp_ux_pre(DECL_ARGS)  termp_ux_pre(DECL_ARGS)
 {  {
   
         word(p, "UNIX");          term_word(p, "UNIX");
         return(1);          return(1);
 }  }
   
Line 1417  static int
Line 1430  static int
 termp_fx_pre(DECL_ARGS)  termp_fx_pre(DECL_ARGS)
 {  {
   
         word(p, "FreeBSD");          term_word(p, "FreeBSD");
         return(1);          return(1);
 }  }
   
Line 1427  static int
Line 1440  static int
 termp_nx_pre(DECL_ARGS)  termp_nx_pre(DECL_ARGS)
 {  {
   
         word(p, "NetBSD");          term_word(p, "NetBSD");
         return(1);          return(1);
 }  }
   
Line 1439  termp_sq_pre(DECL_ARGS)
Line 1452  termp_sq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\\(oq");          term_word(p, "\\(oq");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1453  termp_sq_post(DECL_ARGS)
Line 1466  termp_sq_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\\(aq");          term_word(p, "\\(aq");
 }  }
   
   
Line 1484  termp_ss_pre(DECL_ARGS)
Line 1497  termp_ss_pre(DECL_ARGS)
   
         switch (node->type) {          switch (node->type) {
         case (MDOC_BLOCK):          case (MDOC_BLOCK):
                 newln(p);                  term_newln(p);
                 if (node->prev)                  if (node->prev)
                         vspace(p);                          term_vspace(p);
                 break;                  break;
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SSECTION]);                  TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_SSECTION]);
Line 1507  termp_ss_post(DECL_ARGS)
Line 1520  termp_ss_post(DECL_ARGS)
   
         switch (node->type) {          switch (node->type) {
         case (MDOC_HEAD):          case (MDOC_HEAD):
                 newln(p);                  term_newln(p);
                 p->offset = INDENT;                  p->offset = INDENT;
                 break;                  break;
         default:          default:
Line 1542  termp_cd_pre(DECL_ARGS)
Line 1555  termp_cd_pre(DECL_ARGS)
 {  {
   
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CONFIG]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_CONFIG]);
         newln(p);          term_newln(p);
         return(1);          return(1);
 }  }
   
Line 1573  termp_in_pre(DECL_ARGS)
Line 1586  termp_in_pre(DECL_ARGS)
 {  {
   
         TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_INCLUDE]);          TERMPAIR_SETFLAG(p, pair, ttypes[TTYPE_INCLUDE]);
         word(p, "#include");          term_word(p, "#include");
         word(p, "<");          term_word(p, "<");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1586  termp_in_post(DECL_ARGS)
Line 1599  termp_in_post(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, ">");          term_word(p, ">");
   
         newln(p);          term_newln(p);
         if (SEC_SYNOPSIS != node->sec)          if (SEC_SYNOPSIS != node->sec)
                 return;                  return;
         if (node->next && MDOC_In != node->next->tok)          if (node->next && MDOC_In != node->next->tok)
                 vspace(p);                  term_vspace(p);
 }  }
   
   
Line 1609  termp_at_pre(DECL_ARGS)
Line 1622  termp_at_pre(DECL_ARGS)
         if (NULL == att)          if (NULL == att)
                 att = "AT&T UNIX";                  att = "AT&T UNIX";
   
         word(p, att);          term_word(p, att);
         return(0);          return(0);
 }  }
   
Line 1621  termp_brq_pre(DECL_ARGS)
Line 1634  termp_brq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\\(lC");          term_word(p, "\\(lC");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1635  termp_brq_post(DECL_ARGS)
Line 1648  termp_brq_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\\(rC");          term_word(p, "\\(rC");
 }  }
   
   
Line 1646  termp_bq_pre(DECL_ARGS)
Line 1659  termp_bq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\\(lB");          term_word(p, "\\(lB");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1660  termp_bq_post(DECL_ARGS)
Line 1673  termp_bq_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\\(rB");          term_word(p, "\\(rB");
 }  }
   
   
Line 1671  termp_pq_pre(DECL_ARGS)
Line 1684  termp_pq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "\\&(");          term_word(p, "\\&(");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1684  termp_pq_post(DECL_ARGS)
Line 1697  termp_pq_post(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         word(p, ")");          term_word(p, ")");
 }  }
   
   
Line 1695  termp_fo_pre(DECL_ARGS)
Line 1708  termp_fo_pre(DECL_ARGS)
         const struct mdoc_node *n;          const struct mdoc_node *n;
   
         if (MDOC_BODY == node->type) {          if (MDOC_BODY == node->type) {
                 word(p, "(");                  term_word(p, "(");
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 return(1);                  return(1);
         } else if (MDOC_HEAD != node->type)          } else if (MDOC_HEAD != node->type)
Line 1707  termp_fo_pre(DECL_ARGS)
Line 1720  termp_fo_pre(DECL_ARGS)
         for (n = node->child; n; n = n->next) {          for (n = node->child; n; n = n->next) {
                 if (MDOC_TEXT != n->type)                  if (MDOC_TEXT != n->type)
                         errx(1, "expected text line argument");                          errx(1, "expected text line argument");
                 word(p, n->string);                  term_word(p, n->string);
         }          }
         p->flags &= ~ttypes[TTYPE_FUNC_NAME];          p->flags &= ~ttypes[TTYPE_FUNC_NAME];
   
Line 1723  termp_fo_post(DECL_ARGS)
Line 1736  termp_fo_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, ")");          term_word(p, ")");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, ";");          term_word(p, ";");
         newln(p);          term_newln(p);
 }  }
   
   
Line 1809  termp_ap_pre(DECL_ARGS)
Line 1822  termp_ap_pre(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, "\\(aq");          term_word(p, "\\(aq");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1831  termp____post(DECL_ARGS)
Line 1844  termp____post(DECL_ARGS)
 {  {
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, node->next ? "," : ".");          term_word(p, node->next ? "," : ".");
 }  }
   
   
Line 1845  termp_lk_pre(DECL_ARGS)
Line 1858  termp_lk_pre(DECL_ARGS)
                 errx(1, "expected line argument");                  errx(1, "expected line argument");
   
         p->flags |= ttypes[TTYPE_LINK_ANCHOR];          p->flags |= ttypes[TTYPE_LINK_ANCHOR];
         word(p, n->string);          term_word(p, n->string);
         p->flags &= ~ttypes[TTYPE_LINK_ANCHOR];          p->flags &= ~ttypes[TTYPE_LINK_ANCHOR];
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, ":");          term_word(p, ":");
   
         p->flags |= ttypes[TTYPE_LINK_TEXT];          p->flags |= ttypes[TTYPE_LINK_TEXT];
         for ( ; n; n = n->next) {          for ( ; n; n = n->next) {
                 word(p, n->string);                  term_word(p, n->string);
         }          }
         p->flags &= ~ttypes[TTYPE_LINK_TEXT];          p->flags &= ~ttypes[TTYPE_LINK_TEXT];
   

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62

CVSweb