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

Diff for /mandoc/mdoc_validate.c between version 1.319 and 1.331

version 1.319, 2017/03/06 17:26:04 version 1.331, 2017/06/07 23:29:48
Line 53  typedef void (*v_post)(POST_ARGS);
Line 53  typedef void (*v_post)(POST_ARGS);
   
 static  int      build_list(struct roff_man *, int);  static  int      build_list(struct roff_man *, int);
 static  void     check_text(struct roff_man *, int, int, char *);  static  void     check_text(struct roff_man *, int, int, char *);
   static  void     check_bsd(struct roff_man *, int, int, char *);
 static  void     check_argv(struct roff_man *,  static  void     check_argv(struct roff_man *,
                         struct roff_node *, struct mdoc_argv *);                          struct roff_node *, struct mdoc_argv *);
 static  void     check_args(struct roff_man *, struct roff_node *);  static  void     check_args(struct roff_man *, struct roff_node *);
 static  int      child_an(const struct roff_node *);  static  int      child_an(const struct roff_node *);
 static  size_t          macro2len(int);  static  size_t          macro2len(enum roff_tok);
 static  void     rewrite_macro2len(char **);  static  void     rewrite_macro2len(struct roff_man *, char **);
   
 static  void     post_an(POST_ARGS);  static  void     post_an(POST_ARGS);
 static  void     post_an_norm(POST_ARGS);  static  void     post_an_norm(POST_ARGS);
Line 105  static void  post_sh_authors(POST_ARGS);
Line 106  static void  post_sh_authors(POST_ARGS);
 static  void     post_sm(POST_ARGS);  static  void     post_sm(POST_ARGS);
 static  void     post_st(POST_ARGS);  static  void     post_st(POST_ARGS);
 static  void     post_std(POST_ARGS);  static  void     post_std(POST_ARGS);
   static  void     post_useless(POST_ARGS);
 static  void     post_xr(POST_ARGS);  static  void     post_xr(POST_ARGS);
 static  void     post_xx(POST_ARGS);  static  void     post_xx(POST_ARGS);
   
 static  v_post mdoc_valids[MDOC_MAX] = {  static  const v_post __mdoc_valids[MDOC_MAX - MDOC_Dd] = {
         NULL,           /* Ap */  
         post_dd,        /* Dd */          post_dd,        /* Dd */
         post_dt,        /* Dt */          post_dt,        /* Dt */
         post_os,        /* Os */          post_os,        /* Os */
Line 125  static v_post mdoc_valids[MDOC_MAX] = {
Line 126  static v_post mdoc_valids[MDOC_MAX] = {
         post_it,        /* It */          post_it,        /* It */
         NULL,           /* Ad */          NULL,           /* Ad */
         post_an,        /* An */          post_an,        /* An */
           NULL,           /* Ap */
         post_defaults,  /* Ar */          post_defaults,  /* Ar */
         NULL,           /* Cd */          NULL,           /* Cd */
         NULL,           /* Cm */          NULL,           /* Cm */
Line 201  static v_post mdoc_valids[MDOC_MAX] = {
Line 203  static v_post mdoc_valids[MDOC_MAX] = {
         post_sm,        /* Sm */          post_sm,        /* Sm */
         post_hyph,      /* Sx */          post_hyph,      /* Sx */
         NULL,           /* Sy */          NULL,           /* Sy */
         NULL,           /* Tn */          post_useless,   /* Tn */
         post_xx,        /* Ux */          post_xx,        /* Ux */
         NULL,           /* Xc */          NULL,           /* Xc */
         NULL,           /* Xo */          NULL,           /* Xo */
Line 227  static v_post mdoc_valids[MDOC_MAX] = {
Line 229  static v_post mdoc_valids[MDOC_MAX] = {
         post_en,        /* En */          post_en,        /* En */
         post_xx,        /* Dx */          post_xx,        /* Dx */
         NULL,           /* %Q */          NULL,           /* %Q */
         post_par,       /* br */  
         post_par,       /* sp */  
         NULL,           /* %U */          NULL,           /* %U */
         NULL,           /* Ta */          NULL,           /* Ta */
         NULL,           /* ll */  
 };  };
   static  const v_post *const mdoc_valids = __mdoc_valids - MDOC_Dd;
   
 #define RSORD_MAX 14 /* Number of `Rs' blocks. */  #define RSORD_MAX 14 /* Number of `Rs' blocks. */
   
 static  const int rsord[RSORD_MAX] = {  static  const enum roff_tok rsord[RSORD_MAX] = {
         MDOC__A,          MDOC__A,
         MDOC__T,          MDOC__T,
         MDOC__B,          MDOC__B,
Line 284  void
Line 284  void
 mdoc_node_validate(struct roff_man *mdoc)  mdoc_node_validate(struct roff_man *mdoc)
 {  {
         struct roff_node *n;          struct roff_node *n;
         v_post *p;          const v_post *p;
   
         n = mdoc->last;          n = mdoc->last;
         mdoc->last = mdoc->last->child;          mdoc->last = mdoc->last->child;
Line 303  mdoc_node_validate(struct roff_man *mdoc)
Line 303  mdoc_node_validate(struct roff_man *mdoc)
                 if (n->sec != SEC_SYNOPSIS ||                  if (n->sec != SEC_SYNOPSIS ||
                     (n->parent->tok != MDOC_Cd && n->parent->tok != MDOC_Fd))                      (n->parent->tok != MDOC_Cd && n->parent->tok != MDOC_Fd))
                         check_text(mdoc, n->line, n->pos, n->string);                          check_text(mdoc, n->line, n->pos, n->string);
                   if (n->parent->tok == MDOC_Sh ||
                       n->parent->tok == MDOC_Ss ||
                       n->parent->tok == MDOC_It)
                           check_bsd(mdoc, n->line, n->pos, n->string);
                 break;                  break;
         case ROFFT_EQN:          case ROFFT_EQN:
         case ROFFT_TBL:          case ROFFT_TBL:
Line 326  mdoc_node_validate(struct roff_man *mdoc)
Line 330  mdoc_node_validate(struct roff_man *mdoc)
   
                 /* Call the macro's postprocessor. */                  /* Call the macro's postprocessor. */
   
                   if (n->tok < ROFF_MAX) {
                           switch(n->tok) {
                           case ROFF_br:
                           case ROFF_sp:
                                   post_par(mdoc);
                                   break;
                           default:
                                   roff_validate(mdoc);
                                   break;
                           }
                           break;
                   }
   
                   assert(n->tok >= MDOC_Dd && n->tok < MDOC_MAX);
                 p = mdoc_valids + n->tok;                  p = mdoc_valids + n->tok;
                 if (*p)                  if (*p)
                         (*p)(mdoc);                          (*p)(mdoc);
Line 371  check_text(struct roff_man *mdoc, int ln, int pos, cha
Line 389  check_text(struct roff_man *mdoc, int ln, int pos, cha
 }  }
   
 static void  static void
   check_bsd(struct roff_man *mdoc, int ln, int pos, char *p)
   {
           const char      *cp;
   
           if ((cp = strstr(p, "OpenBSD")) != NULL)
                   mandoc_msg(MANDOCERR_BX, mdoc->parse,
                       ln, pos + (cp - p), "Ox");
           if ((cp = strstr(p, "NetBSD")) != NULL)
                   mandoc_msg(MANDOCERR_BX, mdoc->parse,
                       ln, pos + (cp - p), "Nx");
           if ((cp = strstr(p, "FreeBSD")) != NULL)
                   mandoc_msg(MANDOCERR_BX, mdoc->parse,
                       ln, pos + (cp - p), "Fx");
           if ((cp = strstr(p, "DragonFly")) != NULL)
                   mandoc_msg(MANDOCERR_BX, mdoc->parse,
                       ln, pos + (cp - p), "Dx");
   }
   
   static void
 post_bl_norm(POST_ARGS)  post_bl_norm(POST_ARGS)
 {  {
         struct roff_node *n;          struct roff_node *n;
Line 450  post_bl_norm(POST_ARGS)
Line 487  post_bl_norm(POST_ARGS)
                                     mdoc->parse, argv->line,                                      mdoc->parse, argv->line,
                                     argv->pos, "Bl -width %s",                                      argv->pos, "Bl -width %s",
                                     argv->value[0]);                                      argv->value[0]);
                         rewrite_macro2len(argv->value);                          rewrite_macro2len(mdoc, argv->value);
                         n->norm->Bl.width = argv->value[0];                          n->norm->Bl.width = argv->value[0];
                         break;                          break;
                 case MDOC_Offset:                  case MDOC_Offset:
Line 465  post_bl_norm(POST_ARGS)
Line 502  post_bl_norm(POST_ARGS)
                                     mdoc->parse, argv->line,                                      mdoc->parse, argv->line,
                                     argv->pos, "Bl -offset %s",                                      argv->pos, "Bl -offset %s",
                                     argv->value[0]);                                      argv->value[0]);
                         rewrite_macro2len(argv->value);                          rewrite_macro2len(mdoc, argv->value);
                         n->norm->Bl.offs = argv->value[0];                          n->norm->Bl.offs = argv->value[0];
                         break;                          break;
                 default:                  default:
Line 592  post_bd(POST_ARGS)
Line 629  post_bd(POST_ARGS)
                                     mdoc->parse, argv->line,                                      mdoc->parse, argv->line,
                                     argv->pos, "Bd -offset %s",                                      argv->pos, "Bd -offset %s",
                                     argv->value[0]);                                      argv->value[0]);
                         rewrite_macro2len(argv->value);                          rewrite_macro2len(mdoc, argv->value);
                         n->norm->Bd.offs = argv->value[0];                          n->norm->Bd.offs = argv->value[0];
                         break;                          break;
                 case MDOC_Compact:                  case MDOC_Compact:
Line 659  post_eoln(POST_ARGS)
Line 696  post_eoln(POST_ARGS)
 {  {
         struct roff_node        *n;          struct roff_node        *n;
   
           post_useless(mdoc);
         n = mdoc->last;          n = mdoc->last;
         if (n->child != NULL)          if (n->child != NULL)
                 mandoc_vmsg(MANDOCERR_ARG_SKIP, mdoc->parse,                  mandoc_vmsg(MANDOCERR_ARG_SKIP, mdoc->parse, n->line,
                     n->line, n->pos, "%s %s",                      n->pos, "%s %s", roff_name[n->tok], n->child->string);
                     mdoc_macronames[n->tok], n->child->string);  
   
         while (n->child != NULL)          while (n->child != NULL)
                 roff_node_delete(mdoc, n->child);                  roff_node_delete(mdoc, n->child);
Line 817  post_std(POST_ARGS)
Line 854  post_std(POST_ARGS)
                         return;                          return;
   
         mandoc_msg(MANDOCERR_ARG_STD, mdoc->parse,          mandoc_msg(MANDOCERR_ARG_STD, mdoc->parse,
             n->line, n->pos, mdoc_macronames[n->tok]);              n->line, n->pos, roff_name[n->tok]);
 }  }
   
 static void  static void
Line 852  post_obsolete(POST_ARGS)
Line 889  post_obsolete(POST_ARGS)
         n = mdoc->last;          n = mdoc->last;
         if (n->type == ROFFT_ELEM || n->type == ROFFT_BLOCK)          if (n->type == ROFFT_ELEM || n->type == ROFFT_BLOCK)
                 mandoc_msg(MANDOCERR_MACRO_OBS, mdoc->parse,                  mandoc_msg(MANDOCERR_MACRO_OBS, mdoc->parse,
                     n->line, n->pos, mdoc_macronames[n->tok]);                      n->line, n->pos, roff_name[n->tok]);
 }  }
   
   static void
   post_useless(POST_ARGS)
   {
           struct roff_node *n;
   
           n = mdoc->last;
           mandoc_msg(MANDOCERR_MACRO_USELESS, mdoc->parse,
               n->line, n->pos, roff_name[n->tok]);
   }
   
 /*  /*
  * Block macros.   * Block macros.
  */   */
Line 1029  static void
Line 1076  static void
 post_nd(POST_ARGS)  post_nd(POST_ARGS)
 {  {
         struct roff_node        *n;          struct roff_node        *n;
           size_t                   sz;
   
         n = mdoc->last;          n = mdoc->last;
   
Line 1042  post_nd(POST_ARGS)
Line 1090  post_nd(POST_ARGS)
         if (n->child == NULL)          if (n->child == NULL)
                 mandoc_msg(MANDOCERR_ND_EMPTY, mdoc->parse,                  mandoc_msg(MANDOCERR_ND_EMPTY, mdoc->parse,
                     n->line, n->pos, "Nd");                      n->line, n->pos, "Nd");
           else if (n->last->type == ROFFT_TEXT &&
               (sz = strlen(n->last->string)) != 0 &&
               n->last->string[sz - 1] == '.')
                   mandoc_msg(MANDOCERR_ND_DOT, mdoc->parse,
                       n->last->line, n->last->pos + sz - 1, NULL);
   
         post_hyph(mdoc);          post_hyph(mdoc);
 }  }
Line 1060  post_display(POST_ARGS)
Line 1113  post_display(POST_ARGS)
                                 roff_node_delete(mdoc, n);                                  roff_node_delete(mdoc, n);
                 } else if (n->child == NULL)                  } else if (n->child == NULL)
                         mandoc_msg(MANDOCERR_BLK_EMPTY, mdoc->parse,                          mandoc_msg(MANDOCERR_BLK_EMPTY, mdoc->parse,
                             n->line, n->pos, mdoc_macronames[n->tok]);                              n->line, n->pos, roff_name[n->tok]);
                 else if (n->tok == MDOC_D1)                  else if (n->tok == MDOC_D1)
                         post_hyph(mdoc);                          post_hyph(mdoc);
                 break;                  break;
Line 1083  post_display(POST_ARGS)
Line 1136  post_display(POST_ARGS)
                         if (np->type == ROFFT_BLOCK && np->tok == MDOC_Bd) {                          if (np->type == ROFFT_BLOCK && np->tok == MDOC_Bd) {
                                 mandoc_vmsg(MANDOCERR_BD_NEST,                                  mandoc_vmsg(MANDOCERR_BD_NEST,
                                     mdoc->parse, n->line, n->pos,                                      mdoc->parse, n->line, n->pos,
                                     "%s in Bd", mdoc_macronames[n->tok]);                                      "%s in Bd", roff_name[n->tok]);
                                 break;                                  break;
                         }                          }
                 }                  }
Line 1269  post_it(POST_ARGS)
Line 1322  post_it(POST_ARGS)
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case LIST_item:          case LIST_item:
                 if ((nch = nit->head->child) != NULL)                  if ((nch = nit->head->child) != NULL)
                         mandoc_vmsg(MANDOCERR_ARG_SKIP,                          mandoc_vmsg(MANDOCERR_ARG_SKIP, mdoc->parse,
                             mdoc->parse, nit->line, nit->pos,                              nit->line, nit->pos, "It %s",
                             "It %s", nch->string == NULL ?                              nch->string == NULL ? roff_name[nch->tok] :
                             mdoc_macronames[nch->tok] : nch->string);                              nch->string);
                 break;                  break;
         case LIST_column:          case LIST_column:
                 cols = (int)nbl->norm->Bl.ncols;                  cols = (int)nbl->norm->Bl.ncols;
Line 1310  post_bl_block(POST_ARGS)
Line 1363  post_bl_block(POST_ARGS)
                         switch (nc->tok) {                          switch (nc->tok) {
                         case MDOC_Pp:                          case MDOC_Pp:
                         case MDOC_Lp:                          case MDOC_Lp:
                         case MDOC_br:                          case ROFF_br:
                                 break;                                  break;
                         default:                          default:
                                 nc = NULL;                                  nc = NULL;
Line 1319  post_bl_block(POST_ARGS)
Line 1372  post_bl_block(POST_ARGS)
                         if (ni->next == NULL) {                          if (ni->next == NULL) {
                                 mandoc_msg(MANDOCERR_PAR_MOVE,                                  mandoc_msg(MANDOCERR_PAR_MOVE,
                                     mdoc->parse, nc->line, nc->pos,                                      mdoc->parse, nc->line, nc->pos,
                                     mdoc_macronames[nc->tok]);                                      roff_name[nc->tok]);
                                 mdoc_node_relink(mdoc, nc);                                  mdoc_node_relink(mdoc, nc);
                         } else if (n->norm->Bl.comp == 0 &&                          } else if (n->norm->Bl.comp == 0 &&
                             n->norm->Bl.type != LIST_column) {                              n->norm->Bl.type != LIST_column) {
                                 mandoc_vmsg(MANDOCERR_PAR_SKIP,                                  mandoc_vmsg(MANDOCERR_PAR_SKIP,
                                     mdoc->parse, nc->line, nc->pos,                                      mdoc->parse, nc->line, nc->pos,
                                     "%s before It",                                      "%s before It", roff_name[nc->tok]);
                                     mdoc_macronames[nc->tok]);  
                                 roff_node_delete(mdoc, nc);                                  roff_node_delete(mdoc, nc);
                         } else                          } else
                                 break;                                  break;
Line 1339  post_bl_block(POST_ARGS)
Line 1391  post_bl_block(POST_ARGS)
  * If the argument of -offset or -width is a macro,   * If the argument of -offset or -width is a macro,
  * replace it with the associated default width.   * replace it with the associated default width.
  */   */
 void  static void
 rewrite_macro2len(char **arg)  rewrite_macro2len(struct roff_man *mdoc, char **arg)
 {  {
         size_t            width;          size_t            width;
         int               tok;          enum roff_tok     tok;
   
         if (*arg == NULL)          if (*arg == NULL)
                 return;                  return;
         else if ( ! strcmp(*arg, "Ds"))          else if ( ! strcmp(*arg, "Ds"))
                 width = 6;                  width = 6;
         else if ((tok = mdoc_hash_find(*arg)) == TOKEN_NONE)          else if ((tok = roffhash_find(mdoc->mdocmac, *arg, 0)) == TOKEN_NONE)
                 return;                  return;
         else          else
                 width = macro2len(tok);                  width = macro2len(tok);
Line 1427  post_bl(POST_ARGS)
Line 1479  post_bl(POST_ARGS)
         struct roff_node        *nparent, *nprev; /* of the Bl block */          struct roff_node        *nparent, *nprev; /* of the Bl block */
         struct roff_node        *nblock, *nbody;  /* of the Bl */          struct roff_node        *nblock, *nbody;  /* of the Bl */
         struct roff_node        *nchild, *nnext;  /* of the Bl body */          struct roff_node        *nchild, *nnext;  /* of the Bl body */
           const char              *prev_Er;
           int                      order;
   
         nbody = mdoc->last;          nbody = mdoc->last;
         switch (nbody->type) {          switch (nbody->type) {
Line 1490  post_bl(POST_ARGS)
Line 1544  post_bl(POST_ARGS)
                 }                  }
   
                 mandoc_msg(MANDOCERR_BL_MOVE, mdoc->parse,                  mandoc_msg(MANDOCERR_BL_MOVE, mdoc->parse,
                     nchild->line, nchild->pos,                      nchild->line, nchild->pos, roff_name[nchild->tok]);
                     mdoc_macronames[nchild->tok]);  
   
                 /*                  /*
                  * Move the node out of the Bl block.                   * Move the node out of the Bl block.
Line 1528  post_bl(POST_ARGS)
Line 1581  post_bl(POST_ARGS)
   
                 nchild = nnext;                  nchild = nnext;
         }          }
   
           if (mdoc->meta.os_e != MDOC_OS_NETBSD)
                   return;
   
           prev_Er = NULL;
           for (nchild = nbody->child; nchild != NULL; nchild = nchild->next) {
                   if (nchild->tok != MDOC_It)
                           continue;
                   if ((nnext = nchild->head->child) == NULL)
                           continue;
                   if (nnext->type == ROFFT_BLOCK)
                           nnext = nnext->body->child;
                   if (nnext == NULL || nnext->tok != MDOC_Er)
                           continue;
                   nnext = nnext->child;
                   if (prev_Er != NULL) {
                           order = strcmp(prev_Er, nnext->string);
                           if (order > 0)
                                   mandoc_vmsg(MANDOCERR_ER_ORDER,
                                       mdoc->parse, nnext->line, nnext->pos,
                                       "Er %s %s", prev_Er, nnext->string);
                           else if (order == 0)
                                   mandoc_vmsg(MANDOCERR_ER_REP,
                                       mdoc->parse, nnext->line, nnext->pos,
                                       "Er %s", prev_Er);
                   }
                   prev_Er = nnext->string;
           }
 }  }
   
 static void  static void
Line 1569  post_sm(POST_ARGS)
Line 1650  post_sm(POST_ARGS)
   
         mandoc_vmsg(MANDOCERR_SM_BAD,          mandoc_vmsg(MANDOCERR_SM_BAD,
             mdoc->parse, nch->line, nch->pos,              mdoc->parse, nch->line, nch->pos,
             "%s %s", mdoc_macronames[mdoc->last->tok], nch->string);              "%s %s", roff_name[mdoc->last->tok], nch->string);
         mdoc_node_relink(mdoc, nch);          mdoc_node_relink(mdoc, nch);
         return;          return;
 }  }
Line 1612  post_root(POST_ARGS)
Line 1693  post_root(POST_ARGS)
                 mandoc_msg(MANDOCERR_DOC_EMPTY, mdoc->parse, 0, 0, NULL);                  mandoc_msg(MANDOCERR_DOC_EMPTY, mdoc->parse, 0, 0, NULL);
         else if (n->tok != MDOC_Sh)          else if (n->tok != MDOC_Sh)
                 mandoc_msg(MANDOCERR_SEC_BEFORE, mdoc->parse,                  mandoc_msg(MANDOCERR_SEC_BEFORE, mdoc->parse,
                     n->line, n->pos, mdoc_macronames[n->tok]);                      n->line, n->pos, roff_name[n->tok]);
 }  }
   
 static void  static void
Line 1646  post_rs(POST_ARGS)
Line 1727  post_rs(POST_ARGS)
                                 break;                                  break;
   
                 if (i == RSORD_MAX) {                  if (i == RSORD_MAX) {
                         mandoc_msg(MANDOCERR_RS_BAD,                          mandoc_msg(MANDOCERR_RS_BAD, mdoc->parse,
                             mdoc->parse, nch->line, nch->pos,                              nch->line, nch->pos, roff_name[nch->tok]);
                             mdoc_macronames[nch->tok]);  
                         i = -1;                          i = -1;
                 } else if (nch->tok == MDOC__J || nch->tok == MDOC__B)                  } else if (nch->tok == MDOC__J || nch->tok == MDOC__B)
                         np->norm->Rs.quote_T++;                          np->norm->Rs.quote_T++;
Line 1801  post_sh_name(POST_ARGS)
Line 1881  post_sh_name(POST_ARGS)
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 default:                  default:
                         mandoc_msg(MANDOCERR_NAMESEC_BAD, mdoc->parse,                          mandoc_msg(MANDOCERR_NAMESEC_BAD, mdoc->parse,
                             n->line, n->pos, mdoc_macronames[n->tok]);                              n->line, n->pos, roff_name[n->tok]);
                         continue;                          continue;
                 }                  }
                 break;                  break;
Line 1871  post_sh_see_also(POST_ARGS)
Line 1951  post_sh_see_also(POST_ARGS)
                         if (isalpha((const unsigned char)*name))                          if (isalpha((const unsigned char)*name))
                                 return;                                  return;
                 lastpunct = n->string;                  lastpunct = n->string;
                 if (n->next == NULL)                  if (n->next == NULL || n->next->tok == MDOC_Rs)
                         mandoc_vmsg(MANDOCERR_XR_PUNCT, mdoc->parse,                          mandoc_vmsg(MANDOCERR_XR_PUNCT, mdoc->parse,
                             n->line, n->pos, "%s after %s(%s)",                              n->line, n->pos, "%s after %s(%s)",
                             lastpunct, lastname, lastsec);                              lastpunct, lastname, lastsec);
Line 1922  post_sh_head(POST_ARGS)
Line 2002  post_sh_head(POST_ARGS)
                     sec != SEC_CUSTOM ? secnames[sec] :                      sec != SEC_CUSTOM ? secnames[sec] :
                     (nch = mdoc->last->child) == NULL ? "" :                      (nch = mdoc->last->child) == NULL ? "" :
                     nch->type == ROFFT_TEXT ? nch->string :                      nch->type == ROFFT_TEXT ? nch->string :
                     mdoc_macronames[nch->tok]);                      roff_name[nch->tok]);
   
         /* The SYNOPSIS gets special attention in other areas. */          /* The SYNOPSIS gets special attention in other areas. */
   
Line 2018  post_ignpar(POST_ARGS)
Line 2098  post_ignpar(POST_ARGS)
         struct roff_node *np;          struct roff_node *np;
   
         switch (mdoc->last->type) {          switch (mdoc->last->type) {
           case ROFFT_BLOCK:
                   post_prevpar(mdoc);
                   return;
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 post_hyph(mdoc);                  post_hyph(mdoc);
                 return;                  return;
Line 2031  post_ignpar(POST_ARGS)
Line 2114  post_ignpar(POST_ARGS)
                 if (np->tok == MDOC_Pp || np->tok == MDOC_Lp) {                  if (np->tok == MDOC_Pp || np->tok == MDOC_Lp) {
                         mandoc_vmsg(MANDOCERR_PAR_SKIP,                          mandoc_vmsg(MANDOCERR_PAR_SKIP,
                             mdoc->parse, np->line, np->pos,                              mdoc->parse, np->line, np->pos,
                             "%s after %s", mdoc_macronames[np->tok],                              "%s after %s", roff_name[np->tok],
                             mdoc_macronames[mdoc->last->tok]);                              roff_name[mdoc->last->tok]);
                         roff_node_delete(mdoc, np);                          roff_node_delete(mdoc, np);
                 }                  }
   
Line 2040  post_ignpar(POST_ARGS)
Line 2123  post_ignpar(POST_ARGS)
                 if (np->tok == MDOC_Pp || np->tok == MDOC_Lp) {                  if (np->tok == MDOC_Pp || np->tok == MDOC_Lp) {
                         mandoc_vmsg(MANDOCERR_PAR_SKIP, mdoc->parse,                          mandoc_vmsg(MANDOCERR_PAR_SKIP, mdoc->parse,
                             np->line, np->pos, "%s at the end of %s",                              np->line, np->pos, "%s at the end of %s",
                             mdoc_macronames[np->tok],                              roff_name[np->tok],
                             mdoc_macronames[mdoc->last->tok]);                              roff_name[mdoc->last->tok]);
                         roff_node_delete(mdoc, np);                          roff_node_delete(mdoc, np);
                 }                  }
 }  }
Line 2064  post_prevpar(POST_ARGS)
Line 2147  post_prevpar(POST_ARGS)
   
         if (n->prev->tok != MDOC_Pp &&          if (n->prev->tok != MDOC_Pp &&
             n->prev->tok != MDOC_Lp &&              n->prev->tok != MDOC_Lp &&
             n->prev->tok != MDOC_br)              n->prev->tok != ROFF_br)
                 return;                  return;
         if (n->tok == MDOC_Bl && n->norm->Bl.comp)          if (n->tok == MDOC_Bl && n->norm->Bl.comp)
                 return;                  return;
Line 2074  post_prevpar(POST_ARGS)
Line 2157  post_prevpar(POST_ARGS)
                 return;                  return;
   
         mandoc_vmsg(MANDOCERR_PAR_SKIP, mdoc->parse,          mandoc_vmsg(MANDOCERR_PAR_SKIP, mdoc->parse,
             n->prev->line, n->prev->pos,              n->prev->line, n->prev->pos, "%s before %s",
             "%s before %s", mdoc_macronames[n->prev->tok],              roff_name[n->prev->tok], roff_name[n->tok]);
             mdoc_macronames[n->tok]);  
         roff_node_delete(mdoc, n->prev);          roff_node_delete(mdoc, n->prev);
 }  }
   
Line 2086  post_par(POST_ARGS)
Line 2168  post_par(POST_ARGS)
         struct roff_node *np;          struct roff_node *np;
   
         np = mdoc->last;          np = mdoc->last;
         if (np->tok != MDOC_br && np->tok != MDOC_sp)          if (np->tok != ROFF_br && np->tok != ROFF_sp)
                 post_prevpar(mdoc);                  post_prevpar(mdoc);
   
         if (np->tok == MDOC_sp) {          if (np->tok == ROFF_sp) {
                 if (np->child != NULL && np->child->next != NULL)                  if (np->child != NULL && np->child->next != NULL)
                         mandoc_vmsg(MANDOCERR_ARG_EXCESS, mdoc->parse,                          mandoc_vmsg(MANDOCERR_ARG_EXCESS, mdoc->parse,
                             np->child->next->line, np->child->next->pos,                              np->child->next->line, np->child->next->pos,
Line 2097  post_par(POST_ARGS)
Line 2179  post_par(POST_ARGS)
         } else if (np->child != NULL)          } else if (np->child != NULL)
                 mandoc_vmsg(MANDOCERR_ARG_SKIP,                  mandoc_vmsg(MANDOCERR_ARG_SKIP,
                     mdoc->parse, np->line, np->pos, "%s %s",                      mdoc->parse, np->line, np->pos, "%s %s",
                     mdoc_macronames[np->tok], np->child->string);                      roff_name[np->tok], np->child->string);
   
         if ((np = mdoc->last->prev) == NULL) {          if ((np = mdoc->last->prev) == NULL) {
                 np = mdoc->last->parent;                  np = mdoc->last->parent;
                 if (np->tok != MDOC_Sh && np->tok != MDOC_Ss)                  if (np->tok != MDOC_Sh && np->tok != MDOC_Ss)
                         return;                          return;
         } else if (np->tok != MDOC_Pp && np->tok != MDOC_Lp &&          } else if (np->tok != MDOC_Pp && np->tok != MDOC_Lp &&
             (mdoc->last->tok != MDOC_br ||              (mdoc->last->tok != ROFF_br ||
              (np->tok != MDOC_sp && np->tok != MDOC_br)))               (np->tok != ROFF_sp && np->tok != ROFF_br)))
                 return;                  return;
   
         mandoc_vmsg(MANDOCERR_PAR_SKIP, mdoc->parse,          mandoc_vmsg(MANDOCERR_PAR_SKIP, mdoc->parse,
             mdoc->last->line, mdoc->last->pos,              mdoc->last->line, mdoc->last->pos, "%s after %s",
             "%s after %s", mdoc_macronames[mdoc->last->tok],              roff_name[mdoc->last->tok], roff_name[np->tok]);
             mdoc_macronames[np->tok]);  
         roff_node_delete(mdoc, mdoc->last);          roff_node_delete(mdoc, mdoc->last);
 }  }
   
Line 2255  static void
Line 2336  static void
 post_bx(POST_ARGS)  post_bx(POST_ARGS)
 {  {
         struct roff_node        *n, *nch;          struct roff_node        *n, *nch;
           const char              *macro;
   
         n = mdoc->last;          n = mdoc->last;
         nch = n->child;          nch = n->child;
   
         if (nch != NULL) {          if (nch != NULL) {
                   macro = !strcmp(nch->string, "Open") ? "Ox" :
                       !strcmp(nch->string, "Net") ? "Nx" :
                       !strcmp(nch->string, "Free") ? "Fx" :
                       !strcmp(nch->string, "DragonFly") ? "Dx" : NULL;
                   if (macro != NULL)
                           mandoc_msg(MANDOCERR_BX, mdoc->parse,
                               n->line, n->pos, macro);
                 mdoc->last = nch;                  mdoc->last = nch;
                 nch = nch->next;                  nch = nch->next;
                 mdoc->next = ROFF_NEXT_SIBLING;                  mdoc->next = ROFF_NEXT_SIBLING;
Line 2326  post_os(POST_ARGS)
Line 2415  post_os(POST_ARGS)
         mdoc->meta.os = NULL;          mdoc->meta.os = NULL;
         deroff(&mdoc->meta.os, n);          deroff(&mdoc->meta.os, n);
         if (mdoc->meta.os)          if (mdoc->meta.os)
                 return;                  goto out;
   
         if (mdoc->defos) {          if (mdoc->defos) {
                 mdoc->meta.os = mandoc_strdup(mdoc->defos);                  mdoc->meta.os = mandoc_strdup(mdoc->defos);
                 return;                  goto out;
         }          }
   
 #ifdef OSNAME  #ifdef OSNAME
Line 2347  post_os(POST_ARGS)
Line 2436  post_os(POST_ARGS)
         }          }
         mdoc->meta.os = mandoc_strdup(defbuf);          mdoc->meta.os = mandoc_strdup(defbuf);
 #endif /*!OSNAME*/  #endif /*!OSNAME*/
   
   out:    mdoc->meta.os_e = strstr(mdoc->meta.os, "OpenBSD") != NULL ?
               MDOC_OS_OPENBSD : strstr(mdoc->meta.os, "NetBSD") != NULL ?
               MDOC_OS_NETBSD : MDOC_OS_OTHER;
 }  }
   
 enum roff_sec  enum roff_sec
Line 2362  mdoc_a2sec(const char *p)
Line 2455  mdoc_a2sec(const char *p)
 }  }
   
 static size_t  static size_t
 macro2len(int macro)  macro2len(enum roff_tok macro)
 {  {
   
         switch (macro) {          switch (macro) {

Legend:
Removed from v.1.319  
changed lines
  Added in v.1.331

CVSweb