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

Diff for /mandoc/roff.c between version 1.211 and 1.224

version 1.211, 2014/06/29 21:20:31 version 1.224, 2014/08/01 17:27:44
Line 106  struct roffreg {
Line 106  struct roffreg {
   
 struct  roff {  struct  roff {
         struct mparse   *parse; /* parse point */          struct mparse   *parse; /* parse point */
         int              options; /* parse options */  
         struct roffnode *last; /* leaf of stack */          struct roffnode *last; /* leaf of stack */
         int              rstack[RSTACK_MAX]; /* stack of !`ie' rules */          int             *rstack; /* stack of inverted `ie' values */
         char             control; /* control character */  
         int              rstackpos; /* position in rstack */  
         struct roffreg  *regtab; /* number registers */          struct roffreg  *regtab; /* number registers */
         struct roffkv   *strtab; /* user-defined strings & macros */          struct roffkv   *strtab; /* user-defined strings & macros */
         struct roffkv   *xmbtab; /* multi-byte trans table (`tr') */          struct roffkv   *xmbtab; /* multi-byte trans table (`tr') */
Line 122  struct roff {
Line 119  struct roff {
         struct eqn_node *last_eqn; /* last equation parsed */          struct eqn_node *last_eqn; /* last equation parsed */
         struct eqn_node *first_eqn; /* first equation parsed */          struct eqn_node *first_eqn; /* first equation parsed */
         struct eqn_node *eqn; /* current equation being parsed */          struct eqn_node *eqn; /* current equation being parsed */
           int              options; /* parse options */
           int              rstacksz; /* current size limit of rstack */
           int              rstackpos; /* position in rstack */
           char             control; /* control character */
 };  };
   
 struct  roffnode {  struct  roffnode {
Line 187  static int   roff_evalstrcond(const char *, int *);
Line 188  static int   roff_evalstrcond(const char *, int *);
 static  void             roff_free1(struct roff *);  static  void             roff_free1(struct roff *);
 static  void             roff_freereg(struct roffreg *);  static  void             roff_freereg(struct roffreg *);
 static  void             roff_freestr(struct roffkv *);  static  void             roff_freestr(struct roffkv *);
 static  char            *roff_getname(struct roff *, char **, int, int);  static  size_t           roff_getname(struct roff *, char **, int, int);
 static  int              roff_getnum(const char *, int *, int *);  static  int              roff_getnum(const char *, int *, int *);
 static  int              roff_getop(const char *, int *, char *);  static  int              roff_getop(const char *, int *, char *);
 static  int              roff_getregn(const struct roff *,  static  int              roff_getregn(const struct roff *,
Line 200  static enum rofferr  roff_line_ignore(ROFF_ARGS);
Line 201  static enum rofferr  roff_line_ignore(ROFF_ARGS);
 static  enum rofferr     roff_nr(ROFF_ARGS);  static  enum rofferr     roff_nr(ROFF_ARGS);
 static  void             roff_openeqn(struct roff *, const char *,  static  void             roff_openeqn(struct roff *, const char *,
                                 int, int, const char *);                                  int, int, const char *);
 static  enum rofft       roff_parse(struct roff *, const char *, int *);  static  enum rofft       roff_parse(struct roff *, char *, int *,
                                   int, int);
 static  enum rofferr     roff_parsetext(char **, size_t *, int, int *);  static  enum rofferr     roff_parsetext(char **, size_t *, int, int *);
 static  enum rofferr     roff_res(struct roff *,  static  enum rofferr     roff_res(struct roff *,
                                 char **, size_t *, int, int);                                  char **, size_t *, int, int);
Line 419  roff_free1(struct roff *r)
Line 421  roff_free1(struct roff *r)
                 r->first_tbl = tbl->next;                  r->first_tbl = tbl->next;
                 tbl_free(tbl);                  tbl_free(tbl);
         }          }
   
         r->first_tbl = r->last_tbl = r->tbl = NULL;          r->first_tbl = r->last_tbl = r->tbl = NULL;
   
         while (NULL != (e = r->first_eqn)) {          while (NULL != (e = r->first_eqn)) {
                 r->first_eqn = e->next;                  r->first_eqn = e->next;
                 eqn_free(e);                  eqn_free(e);
         }          }
   
         r->first_eqn = r->last_eqn = r->eqn = NULL;          r->first_eqn = r->last_eqn = r->eqn = NULL;
   
         while (r->last)          while (r->last)
                 roffnode_pop(r);                  roffnode_pop(r);
   
         roff_freestr(r->strtab);          free (r->rstack);
         roff_freestr(r->xmbtab);          r->rstack = NULL;
           r->rstacksz = 0;
           r->rstackpos = -1;
   
         r->strtab = r->xmbtab = NULL;  
   
         roff_freereg(r->regtab);          roff_freereg(r->regtab);
   
         r->regtab = NULL;          r->regtab = NULL;
   
           roff_freestr(r->strtab);
           roff_freestr(r->xmbtab);
           r->strtab = r->xmbtab = NULL;
   
         if (r->xtab)          if (r->xtab)
                 for (i = 0; i < 128; i++)                  for (i = 0; i < 128; i++)
                         free(r->xtab[i].p);                          free(r->xtab[i].p);
   
         free(r->xtab);          free(r->xtab);
         r->xtab = NULL;          r->xtab = NULL;
 }  }
Line 499  roff_res(struct roff *r, char **bufp, size_t *szp, int
Line 501  roff_res(struct roff *r, char **bufp, size_t *szp, int
         size_t           naml;  /* actual length of the escape name */          size_t           naml;  /* actual length of the escape name */
         int              expand_count;  /* to avoid infinite loops */          int              expand_count;  /* to avoid infinite loops */
         int              npos;  /* position in numeric expression */          int              npos;  /* position in numeric expression */
         int              irc;   /* return code from roff_evalnum() */          int              arg_complete; /* argument not interrupted by eol */
         char             term;  /* character terminating the escape */          char             term;  /* character terminating the escape */
   
         expand_count = 0;          expand_count = 0;
Line 541  roff_res(struct roff *r, char **bufp, size_t *szp, int
Line 543  roff_res(struct roff *r, char **bufp, size_t *szp, int
                         break;                          break;
                 default:                  default:
                         if (ESCAPE_ERROR == mandoc_escape(&cp, NULL, NULL))                          if (ESCAPE_ERROR == mandoc_escape(&cp, NULL, NULL))
                                 mandoc_msg(MANDOCERR_BADESCAPE, r->parse,                                  mandoc_vmsg(MANDOCERR_ESC_BAD,
                                     ln, (int)(stesc - *bufp), NULL);                                      r->parse, ln, (int)(stesc - *bufp),
                                       "%.*s", (int)(cp - stesc), stesc);
                         continue;                          continue;
                 }                  }
   
Line 584  roff_res(struct roff *r, char **bufp, size_t *szp, int
Line 587  roff_res(struct roff *r, char **bufp, size_t *szp, int
   
                 /* Advance to the end of the name. */                  /* Advance to the end of the name. */
   
                   arg_complete = 1;
                 for (naml = 0; 0 == maxl || naml < maxl; naml++, cp++) {                  for (naml = 0; 0 == maxl || naml < maxl; naml++, cp++) {
                         if ('\0' == *cp) {                          if ('\0' == *cp) {
                                 mandoc_msg(MANDOCERR_BADESCAPE, r->parse,                                  mandoc_msg(MANDOCERR_ESC_BAD, r->parse,
                                     ln, (int)(stesc - *bufp), NULL);                                      ln, (int)(stesc - *bufp), stesc);
                                   arg_complete = 0;
                                 break;                                  break;
                         }                          }
                         if (0 == maxl && *cp == term) {                          if (0 == maxl && *cp == term) {
Line 603  roff_res(struct roff *r, char **bufp, size_t *szp, int
Line 608  roff_res(struct roff *r, char **bufp, size_t *szp, int
   
                 switch (stesc[1]) {                  switch (stesc[1]) {
                 case '*':                  case '*':
                         res = roff_getstrn(r, stnam, naml);                          if (arg_complete)
                                   res = roff_getstrn(r, stnam, naml);
                         break;                          break;
                 case 'B':                  case 'B':
                         npos = 0;                          npos = 0;
                         irc = roff_evalnum(stnam, &npos, NULL, 0);                          ubuf[0] = arg_complete &&
                         ubuf[0] = irc && stnam + npos + 1 == cp                              roff_evalnum(stnam, &npos, NULL, 0) &&
                             ? '1' : '0';                              stnam + npos + 1 == cp ? '1' : '0';
                         ubuf[1] = '\0';                          ubuf[1] = '\0';
                         break;                          break;
                 case 'n':                  case 'n':
                         (void)snprintf(ubuf, sizeof(ubuf), "%d",                          if (arg_complete)
                             roff_getregn(r, stnam, naml));                                  (void)snprintf(ubuf, sizeof(ubuf), "%d",
                                       roff_getregn(r, stnam, naml));
                           else
                                   ubuf[0] = '\0';
                         break;                          break;
                 case 'w':                  case 'w':
                           /* use even incomplete args */
                         (void)snprintf(ubuf, sizeof(ubuf), "%d",                          (void)snprintf(ubuf, sizeof(ubuf), "%d",
                             24 * (int)naml);                              24 * (int)naml);
                         break;                          break;
                 }                  }
   
                 if (NULL == res) {                  if (NULL == res) {
                         mandoc_msg(MANDOCERR_BADESCAPE, r->parse,                          mandoc_vmsg(MANDOCERR_STR_UNDEF,
                             ln, (int)(stesc - *bufp), NULL);                              r->parse, ln, (int)(stesc - *bufp),
                               "%.*s", (int)naml, stnam);
                         res = "";                          res = "";
                 }                  }
   
Line 764  roff_parseln(struct roff *r, int ln, char **bufp,
Line 775  roff_parseln(struct roff *r, int ln, char **bufp,
          * the compilers handle it.           * the compilers handle it.
          */           */
   
         if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos)))          if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos, ln, ppos)))
                 return(ROFF_CONT);                  return(ROFF_CONT);
   
         assert(roffs[t].proc);          assert(roffs[t].proc);
Line 776  roff_endparse(struct roff *r)
Line 787  roff_endparse(struct roff *r)
 {  {
   
         if (r->last)          if (r->last)
                 mandoc_msg(MANDOCERR_SCOPEEXIT, r->parse,                  mandoc_msg(MANDOCERR_BLK_NOEND, r->parse,
                     r->last->line, r->last->col, NULL);                      r->last->line, r->last->col,
                       roffs[r->last->tok].name);
   
         if (r->eqn) {          if (r->eqn) {
                 mandoc_msg(MANDOCERR_SCOPEEXIT, r->parse,                  mandoc_msg(MANDOCERR_BLK_NOEND, r->parse,
                     r->eqn->eqn.ln, r->eqn->eqn.pos, NULL);                      r->eqn->eqn.ln, r->eqn->eqn.pos, "EQ");
                 eqn_end(&r->eqn);                  eqn_end(&r->eqn);
         }          }
   
         if (r->tbl) {          if (r->tbl) {
                 mandoc_msg(MANDOCERR_SCOPEEXIT, r->parse,                  mandoc_msg(MANDOCERR_BLK_NOEND, r->parse,
                     r->tbl->line, r->tbl->pos, NULL);                      r->tbl->line, r->tbl->pos, "TS");
                 tbl_end(&r->tbl);                  tbl_end(&r->tbl);
         }          }
 }  }
Line 797  roff_endparse(struct roff *r)
Line 809  roff_endparse(struct roff *r)
  * form of ".foo xxx" in the usual way.   * form of ".foo xxx" in the usual way.
  */   */
 static enum rofft  static enum rofft
 roff_parse(struct roff *r, const char *buf, int *pos)  roff_parse(struct roff *r, char *buf, int *pos, int ln, int ppos)
 {  {
           char            *cp;
         const char      *mac;          const char      *mac;
         size_t           maclen;          size_t           maclen;
         enum rofft       t;          enum rofft       t;
   
         if ('\0' == buf[*pos] || '"' == buf[*pos] ||          cp = buf + *pos;
             '\t' == buf[*pos] || ' ' == buf[*pos])  
           if ('\0' == *cp || '"' == *cp || '\t' == *cp || ' ' == *cp)
                 return(ROFF_MAX);                  return(ROFF_MAX);
   
         /* We stop the macro parse at an escape, tab, space, or nil. */          mac = cp;
           maclen = roff_getname(r, &cp, ln, ppos);
   
         mac = buf + *pos;  
         maclen = strcspn(mac, " \\\t\0");  
   
         t = (r->current_string = roff_getstrn(r, mac, maclen))          t = (r->current_string = roff_getstrn(r, mac, maclen))
             ? ROFF_USERDEF : roffhash_find(mac, maclen);              ? ROFF_USERDEF : roffhash_find(mac, maclen);
   
         *pos += (int)maclen;          if (ROFF_MAX != t)
                   *pos = cp - buf;
   
         while (buf[*pos] && ' ' == buf[*pos])  
                 (*pos)++;  
   
         return(t);          return(t);
 }  }
   
Line 833  roff_cblock(ROFF_ARGS)
Line 843  roff_cblock(ROFF_ARGS)
          */           */
   
         if (NULL == r->last) {          if (NULL == r->last) {
                 mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_BLK_NOTOPEN, r->parse,
                       ln, ppos, "..");
                 return(ROFF_IGN);                  return(ROFF_IGN);
         }          }
   
         switch (r->last->tok) {          switch (r->last->tok) {
         case ROFF_am:          case ROFF_am:
                   /* ROFF_am1 is remapped to ROFF_am in roff_block(). */
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ROFF_ami:          case ROFF_ami:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ROFF_am1:  
                 /* FALLTHROUGH */  
         case ROFF_de:          case ROFF_de:
                 /* ROFF_de1 is remapped to ROFF_de in roff_block(). */                  /* ROFF_de1 is remapped to ROFF_de in roff_block(). */
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
Line 852  roff_cblock(ROFF_ARGS)
Line 862  roff_cblock(ROFF_ARGS)
         case ROFF_ig:          case ROFF_ig:
                 break;                  break;
         default:          default:
                 mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_BLK_NOTOPEN, r->parse,
                       ln, ppos, "..");
                 return(ROFF_IGN);                  return(ROFF_IGN);
         }          }
   
         if ((*bufp)[pos])          if ((*bufp)[pos])
                 mandoc_msg(MANDOCERR_ARGSLOST, r->parse, ln, pos, NULL);                  mandoc_vmsg(MANDOCERR_ARG_SKIP, r->parse, ln, pos,
                       ".. %s", *bufp + pos);
   
         roffnode_pop(r);          roffnode_pop(r);
         roffnode_cleanscope(r);          roffnode_cleanscope(r);
Line 881  roff_ccond(struct roff *r, int ln, int ppos)
Line 893  roff_ccond(struct roff *r, int ln, int ppos)
 {  {
   
         if (NULL == r->last) {          if (NULL == r->last) {
                 mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_BLK_NOTOPEN, r->parse,
                       ln, ppos, "\\}");
                 return;                  return;
         }          }
   
Line 893  roff_ccond(struct roff *r, int ln, int ppos)
Line 906  roff_ccond(struct roff *r, int ln, int ppos)
         case ROFF_if:          case ROFF_if:
                 break;                  break;
         default:          default:
                 mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_BLK_NOTOPEN, r->parse,
                       ln, ppos, "\\}");
                 return;                  return;
         }          }
   
         if (r->last->endspan > -1) {          if (r->last->endspan > -1) {
                 mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_BLK_NOTOPEN, r->parse,
                       ln, ppos, "\\}");
                 return;                  return;
         }          }
   
Line 910  roff_ccond(struct roff *r, int ln, int ppos)
Line 925  roff_ccond(struct roff *r, int ln, int ppos)
 static enum rofferr  static enum rofferr
 roff_block(ROFF_ARGS)  roff_block(ROFF_ARGS)
 {  {
         int             sv;          const char      *name;
         size_t          sz;          char            *iname, *cp;
         char            *name;          size_t           namesz;
   
         name = NULL;          /* Ignore groff compatibility mode for now. */
   
         if (ROFF_ig != tok) {          if (ROFF_de1 == tok)
                 if ('\0' == (*bufp)[pos]) {                  tok = ROFF_de;
                         mandoc_msg(MANDOCERR_NOARGS, r->parse, ln, ppos, NULL);          else if (ROFF_am1 == tok)
                         return(ROFF_IGN);                  tok = ROFF_am;
                 }  
   
                 /*          /* Parse the macro name argument. */
                  * Re-write `de1', since we don't really care about  
                  * groff's strange compatibility mode, into `de'.  
                  */  
   
                 if (ROFF_de1 == tok)          cp = *bufp + pos;
                         tok = ROFF_de;          if (ROFF_ig == tok) {
                 if (ROFF_de == tok)                  iname = NULL;
                         name = *bufp + pos;                  namesz = 0;
                 else          } else {
                         mandoc_msg(MANDOCERR_REQUEST, r->parse, ln, ppos,                  iname = cp;
                             roffs[tok].name);                  namesz = roff_getname(r, &cp, ln, ppos);
                   iname[namesz] = '\0';
           }
   
                 while ((*bufp)[pos] && ! isspace((unsigned char)(*bufp)[pos]))          /* Resolve the macro name argument if it is indirect. */
                         pos++;  
   
                 while (isspace((unsigned char)(*bufp)[pos]))          if (namesz && (ROFF_dei == tok || ROFF_ami == tok)) {
                         (*bufp)[pos++] = '\0';                  if (NULL == (name = roff_getstrn(r, iname, namesz))) {
                           mandoc_vmsg(MANDOCERR_STR_UNDEF,
                               r->parse, ln, (int)(iname - *bufp),
                               "%.*s", (int)namesz, iname);
                           namesz = 0;
                   } else
                           namesz = strlen(name);
           } else
                   name = iname;
   
           if (0 == namesz && ROFF_ig != tok) {
                   mandoc_msg(MANDOCERR_REQ_EMPTY, r->parse,
                       ln, ppos, roffs[tok].name);
                   return(ROFF_IGN);
         }          }
   
         roffnode_push(r, tok, name, ln, ppos);          roffnode_push(r, tok, name, ln, ppos);
Line 950  roff_block(ROFF_ARGS)
Line 975  roff_block(ROFF_ARGS)
          * appended from roff_block_text() in multiline mode.           * appended from roff_block_text() in multiline mode.
          */           */
   
         if (ROFF_de == tok)          if (ROFF_de == tok || ROFF_dei == tok)
                 roff_setstr(r, name, "", 0);                  roff_setstrn(&r->strtab, name, namesz, "", 0, 0);
   
         if ('\0' == (*bufp)[pos])          if ('\0' == *cp)
                 return(ROFF_IGN);                  return(ROFF_IGN);
   
         /* If present, process the custom end-of-line marker. */          /* Get the custom end marker. */
   
         sv = pos;          iname = cp;
         while ((*bufp)[pos] && ! isspace((unsigned char)(*bufp)[pos]))          namesz = roff_getname(r, &cp, ln, ppos);
                 pos++;  
   
         /*          /* Resolve the end marker if it is indirect. */
          * Note: groff does NOT like escape characters in the input.  
          * Instead of detecting this, we're just going to let it fly and  
          * to hell with it.  
          */  
   
         assert(pos > sv);          if (namesz && (ROFF_dei == tok || ROFF_ami == tok)) {
         sz = (size_t)(pos - sv);                  if (NULL == (name = roff_getstrn(r, iname, namesz))) {
                           mandoc_vmsg(MANDOCERR_STR_UNDEF,
                               r->parse, ln, (int)(iname - *bufp),
                               "%.*s", (int)namesz, iname);
                           namesz = 0;
                   } else
                           namesz = strlen(name);
           } else
                   name = iname;
   
         if (1 == sz && '.' == (*bufp)[sv])          if (namesz)
                 return(ROFF_IGN);                  r->last->end = mandoc_strndup(name, namesz);
   
         r->last->end = mandoc_malloc(sz + 1);          if ('\0' != *cp)
                   mandoc_vmsg(MANDOCERR_ARG_EXCESS, r->parse,
                       ln, pos, ".%s ... %s", roffs[tok].name, cp);
   
         memcpy(r->last->end, *bufp + sv, sz);  
         r->last->end[(int)sz] = '\0';  
   
         if ((*bufp)[pos])  
                 mandoc_msg(MANDOCERR_ARGSLOST, r->parse, ln, pos, NULL);  
   
         return(ROFF_IGN);          return(ROFF_IGN);
 }  }
   
Line 1016  roff_block_sub(ROFF_ARGS)
Line 1040  roff_block_sub(ROFF_ARGS)
                                 i++;                                  i++;
   
                         pos = i;                          pos = i;
                         if (ROFF_MAX != roff_parse(r, *bufp, &pos))                          if (ROFF_MAX != roff_parse(r, *bufp, &pos, ln, ppos))
                                 return(ROFF_RERUN);                                  return(ROFF_RERUN);
                         return(ROFF_IGN);                          return(ROFF_IGN);
                 }                  }
Line 1027  roff_block_sub(ROFF_ARGS)
Line 1051  roff_block_sub(ROFF_ARGS)
          * pulling it out of the hashtable.           * pulling it out of the hashtable.
          */           */
   
         t = roff_parse(r, *bufp, &pos);          t = roff_parse(r, *bufp, &pos, ln, ppos);
   
         /*  
          * Macros other than block-end are only significant  
          * in `de' blocks; elsewhere, simply throw them away.  
          */  
         if (ROFF_cblock != t) {          if (ROFF_cblock != t) {
                 if (ROFF_de == tok)                  if (ROFF_ig != tok)
                         roff_setstr(r, r->last->name, *bufp + ppos, 2);                          roff_setstr(r, r->last->name, *bufp + ppos, 2);
                 return(ROFF_IGN);                  return(ROFF_IGN);
         }          }
Line 1047  static enum rofferr
Line 1067  static enum rofferr
 roff_block_text(ROFF_ARGS)  roff_block_text(ROFF_ARGS)
 {  {
   
         if (ROFF_de == tok)          if (ROFF_ig != tok)
                 roff_setstr(r, r->last->name, *bufp + pos, 2);                  roff_setstr(r, r->last->name, *bufp + pos, 2);
   
         return(ROFF_IGN);          return(ROFF_IGN);
Line 1062  roff_cond_sub(ROFF_ARGS)
Line 1082  roff_cond_sub(ROFF_ARGS)
   
         rr = r->last->rule;          rr = r->last->rule;
         roffnode_cleanscope(r);          roffnode_cleanscope(r);
         t = roff_parse(r, *bufp, &pos);          t = roff_parse(r, *bufp, &pos, ln, ppos);
   
         /*          /*
          * Fully handle known macros when they are structurally           * Fully handle known macros when they are structurally
Line 1264  roff_cond(ROFF_ARGS)
Line 1284  roff_cond(ROFF_ARGS)
          */           */
   
         if (ROFF_ie == tok) {          if (ROFF_ie == tok) {
                 if (r->rstackpos == RSTACK_MAX - 1) {                  if (r->rstackpos + 1 == r->rstacksz) {
                         mandoc_msg(MANDOCERR_MEM,                          r->rstacksz += 16;
                             r->parse, ln, ppos, NULL);                          r->rstack = mandoc_reallocarray(r->rstack,
                         return(ROFF_ERR);                              r->rstacksz, sizeof(int));
                 }                  }
                 r->rstack[++r->rstackpos] = !r->last->rule;                  r->rstack[++r->rstackpos] = !r->last->rule;
         }          }
Line 1306  roff_cond(ROFF_ARGS)
Line 1326  roff_cond(ROFF_ARGS)
          */           */
   
         if ('\0' == (*bufp)[pos])          if ('\0' == (*bufp)[pos])
                 mandoc_msg(MANDOCERR_NOARGS, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_COND_EMPTY, r->parse,
                       ln, ppos, roffs[tok].name);
   
         r->last->endspan = 1;          r->last->endspan = 1;
   
Line 1318  out:
Line 1339  out:
 static enum rofferr  static enum rofferr
 roff_ds(ROFF_ARGS)  roff_ds(ROFF_ARGS)
 {  {
         char            *name, *string;          char            *string;
           const char      *name;
           size_t           namesz;
   
         /*          /*
          * A symbol is named by the first word following the macro           * The first word is the name of the string.
          * invocation up to a space.  Its value is anything after the           * If it is empty or terminated by an escape sequence,
          * name's trailing whitespace and optional double-quote.  Thus,           * abort the `ds' request without defining anything.
          *  
          *  [.ds foo "bar  "     ]  
          *  
          * will have `bar  "     ' as its value.  
          */           */
   
         string = *bufp + pos;          name = string = *bufp + pos;
         name = roff_getname(r, &string, ln, pos);  
         if ('\0' == *name)          if ('\0' == *name)
                 return(ROFF_IGN);                  return(ROFF_IGN);
   
         /* Read past initial double-quote. */          namesz = roff_getname(r, &string, ln, pos);
           if ('\\' == name[namesz])
                   return(ROFF_IGN);
   
           /* Read past the initial double-quote, if any. */
         if ('"' == *string)          if ('"' == *string)
                 string++;                  string++;
   
         /* The rest is the value. */          /* The rest is the value. */
         roff_setstr(r, name, string, ROFF_as == tok);          roff_setstrn(&r->strtab, name, namesz, string, strlen(string),
               ROFF_as == tok);
         return(ROFF_IGN);          return(ROFF_IGN);
 }  }
   
Line 1654  roff_freereg(struct roffreg *reg)
Line 1677  roff_freereg(struct roffreg *reg)
 static enum rofferr  static enum rofferr
 roff_nr(ROFF_ARGS)  roff_nr(ROFF_ARGS)
 {  {
         const char      *key;          char            *key, *val;
         char            *val;          size_t           keysz;
         int              iv;          int              iv;
         char             sign;          char             sign;
   
         val = *bufp + pos;          key = val = *bufp + pos;
         key = roff_getname(r, &val, ln, pos);          if ('\0' == *key)
                   return(ROFF_IGN);
   
           keysz = roff_getname(r, &val, ln, pos);
           if ('\\' == key[keysz])
                   return(ROFF_IGN);
           key[keysz] = '\0';
   
         sign = *val;          sign = *val;
         if ('+' == sign || '-' == sign)          if ('+' == sign || '-' == sign)
                 val++;                  val++;
Line 1676  static enum rofferr
Line 1705  static enum rofferr
 roff_rr(ROFF_ARGS)  roff_rr(ROFF_ARGS)
 {  {
         struct roffreg  *reg, **prev;          struct roffreg  *reg, **prev;
         const char      *name;          char            *name, *cp;
         char            *cp;          size_t           namesz;
   
         cp = *bufp + pos;          name = cp = *bufp + pos;
         name = roff_getname(r, &cp, ln, pos);          if ('\0' == *name)
                   return(ROFF_IGN);
           namesz = roff_getname(r, &cp, ln, pos);
           name[namesz] = '\0';
   
         prev = &r->regtab;          prev = &r->regtab;
         while (1) {          while (1) {
Line 1702  roff_rm(ROFF_ARGS)
Line 1734  roff_rm(ROFF_ARGS)
 {  {
         const char       *name;          const char       *name;
         char             *cp;          char             *cp;
           size_t            namesz;
   
         cp = *bufp + pos;          cp = *bufp + pos;
         while ('\0' != *cp) {          while ('\0' != *cp) {
                 name = roff_getname(r, &cp, ln, (int)(cp - *bufp));                  name = cp;
                 if ('\0' != *name)                  namesz = roff_getname(r, &cp, ln, (int)(cp - *bufp));
                         roff_setstr(r, name, NULL, 0);                  roff_setstrn(&r->strtab, name, namesz, NULL, 0, 0);
                   if ('\\' == name[namesz])
                           break;
         }          }
         return(ROFF_IGN);          return(ROFF_IGN);
 }  }
Line 1724  roff_it(ROFF_ARGS)
Line 1759  roff_it(ROFF_ARGS)
         len = strcspn(cp, " \t");          len = strcspn(cp, " \t");
         cp[len] = '\0';          cp[len] = '\0';
         if ((iv = mandoc_strntoi(cp, len, 10)) <= 0) {          if ((iv = mandoc_strntoi(cp, len, 10)) <= 0) {
                 mandoc_msg(MANDOCERR_NUMERIC, r->parse,                  mandoc_msg(MANDOCERR_IT_NONUM, r->parse,
                     ln, ppos, *bufp + 1);                      ln, ppos, *bufp + 1);
                 return(ROFF_IGN);                  return(ROFF_IGN);
         }          }
Line 1765  roff_TE(ROFF_ARGS)
Line 1800  roff_TE(ROFF_ARGS)
 {  {
   
         if (NULL == r->tbl)          if (NULL == r->tbl)
                 mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_BLK_NOTOPEN, r->parse,
                       ln, ppos, "TE");
         else          else
                 tbl_end(&r->tbl);                  tbl_end(&r->tbl);
   
Line 1777  roff_T_(ROFF_ARGS)
Line 1813  roff_T_(ROFF_ARGS)
 {  {
   
         if (NULL == r->tbl)          if (NULL == r->tbl)
                 mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_BLK_NOTOPEN, r->parse,
                       ln, ppos, "T&");
         else          else
                 tbl_restart(ppos, ln, r->tbl);                  tbl_restart(ppos, ln, r->tbl);
   
Line 1828  static enum rofferr
Line 1865  static enum rofferr
 roff_EN(ROFF_ARGS)  roff_EN(ROFF_ARGS)
 {  {
   
         mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL);          mandoc_msg(MANDOCERR_BLK_NOTOPEN, r->parse, ln, ppos, "EN");
         return(ROFF_IGN);          return(ROFF_IGN);
 }  }
   
Line 1838  roff_TS(ROFF_ARGS)
Line 1875  roff_TS(ROFF_ARGS)
         struct tbl_node *tbl;          struct tbl_node *tbl;
   
         if (r->tbl) {          if (r->tbl) {
                 mandoc_msg(MANDOCERR_SCOPEBROKEN, r->parse, ln, ppos, NULL);                  mandoc_msg(MANDOCERR_BLK_BROKEN, r->parse,
                       ln, ppos, "TS breaks TS");
                 tbl_end(&r->tbl);                  tbl_end(&r->tbl);
         }          }
   
Line 1890  roff_tr(ROFF_ARGS)
Line 1928  roff_tr(ROFF_ARGS)
                 if ('\\' == *first) {                  if ('\\' == *first) {
                         esc = mandoc_escape(&p, NULL, NULL);                          esc = mandoc_escape(&p, NULL, NULL);
                         if (ESCAPE_ERROR == esc) {                          if (ESCAPE_ERROR == esc) {
                                 mandoc_msg(MANDOCERR_BADESCAPE,                                  mandoc_msg(MANDOCERR_ESC_BAD, r->parse,
                                     r->parse, ln,                                      ln, (int)(p - *bufp), first);
                                     (int)(p - *bufp), NULL);  
                                 return(ROFF_IGN);                                  return(ROFF_IGN);
                         }                          }
                         fsz = (size_t)(p - first);                          fsz = (size_t)(p - first);
Line 1902  roff_tr(ROFF_ARGS)
Line 1939  roff_tr(ROFF_ARGS)
                 if ('\\' == *second) {                  if ('\\' == *second) {
                         esc = mandoc_escape(&p, NULL, NULL);                          esc = mandoc_escape(&p, NULL, NULL);
                         if (ESCAPE_ERROR == esc) {                          if (ESCAPE_ERROR == esc) {
                                 mandoc_msg(MANDOCERR_BADESCAPE,                                  mandoc_msg(MANDOCERR_ESC_BAD, r->parse,
                                     r->parse, ln,                                      ln, (int)(p - *bufp), second);
                                     (int)(p - *bufp), NULL);  
                                 return(ROFF_IGN);                                  return(ROFF_IGN);
                         }                          }
                         ssz = (size_t)(p - second);                          ssz = (size_t)(p - second);
Line 1939  roff_so(ROFF_ARGS)
Line 1975  roff_so(ROFF_ARGS)
         char *name;          char *name;
   
         name = *bufp + pos;          name = *bufp + pos;
         mandoc_vmsg(MANDOCERR_SO, r->parse, ln, ppos, ".so %s", name);          mandoc_vmsg(MANDOCERR_SO, r->parse, ln, ppos, "so %s", name);
   
         /*          /*
          * Handle `so'.  Be EXTREMELY careful, as we shouldn't be           * Handle `so'.  Be EXTREMELY careful, as we shouldn't be
Line 2007  roff_userdef(ROFF_ARGS)
Line 2043  roff_userdef(ROFF_ARGS)
            ROFF_REPARSE : ROFF_APPEND);             ROFF_REPARSE : ROFF_APPEND);
 }  }
   
 static char *  static size_t
 roff_getname(struct roff *r, char **cpp, int ln, int pos)  roff_getname(struct roff *r, char **cpp, int ln, int pos)
 {  {
         char     *name, *cp;          char     *name, *cp;
           size_t    namesz;
   
         name = *cpp;          name = *cpp;
         if ('\0' == *name)          if ('\0' == *name)
                 return(name);                  return(0);
   
         /* Read until end of name. */          /* Read until end of name and terminate it with NUL. */
         for (cp = name; '\0' != *cp && ' ' != *cp; cp++) {          for (cp = name; 1; cp++) {
                   if ('\0' == *cp || ' ' == *cp) {
                           namesz = cp - name;
                           break;
                   }
                 if ('\\' != *cp)                  if ('\\' != *cp)
                         continue;                          continue;
                   namesz = cp - name;
                   if ('{' == cp[1] || '}' == cp[1])
                           break;
                 cp++;                  cp++;
                 if ('\\' == *cp)                  if ('\\' == *cp)
                         continue;                          continue;
                 mandoc_msg(MANDOCERR_NAMESC, r->parse, ln, pos, NULL);                  mandoc_vmsg(MANDOCERR_NAMESC, r->parse, ln, pos,
                 *cp = '\0';                      "%.*s", (int)(cp - name + 1), name);
                 name = cp;                  mandoc_escape((const char **)&cp, NULL, NULL);
                   break;
         }          }
   
         /* Nil-terminate name. */  
         if ('\0' != *cp)  
                 *(cp++) = '\0';  
   
         /* Read past spaces. */          /* Read past spaces. */
         while (' ' == *cp)          while (' ' == *cp)
                 cp++;                  cp++;
   
         *cpp = cp;          *cpp = cp;
         return(name);          return(namesz);
 }  }
   
 /*  /*

Legend:
Removed from v.1.211  
changed lines
  Added in v.1.224

CVSweb