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

Diff for /mandoc/roff.c between version 1.361 and 1.365

version 1.361, 2019/01/05 09:10:32 version 1.365, 2019/04/21 23:51:21
Line 133  struct roff {
Line 133  struct roff {
         char             escape; /* escape character */          char             escape; /* escape character */
 };  };
   
   /*
    * A macro definition, condition, or ignored block.
    */
 struct  roffnode {  struct  roffnode {
         enum roff_tok    tok; /* type of node */          enum roff_tok    tok; /* type of node */
         struct roffnode *parent; /* up one in stack */          struct roffnode *parent; /* up one in stack */
         int              line; /* parse line */          int              line; /* parse line */
         int              col; /* parse col */          int              col; /* parse col */
         char            *name; /* node name, e.g. macro name */          char            *name; /* node name, e.g. macro name */
         char            *end; /* end-rules: custom token */          char            *end; /* custom end macro of the block */
         int              endspan; /* end-rules: next-line or infty */          int              endspan; /* scope to: 1=eol 2=next line -1=\} */
         int              rule; /* current evaluation rule */          int              rule; /* content is: 1=evaluated 0=skipped */
 };  };
   
 #define ROFF_ARGS        struct roff *r, /* parse ctx */ \  #define ROFF_ARGS        struct roff *r, /* parse ctx */ \
Line 181  static int   roff_als(ROFF_ARGS);
Line 184  static int   roff_als(ROFF_ARGS);
 static  int              roff_block(ROFF_ARGS);  static  int              roff_block(ROFF_ARGS);
 static  int              roff_block_text(ROFF_ARGS);  static  int              roff_block_text(ROFF_ARGS);
 static  int              roff_block_sub(ROFF_ARGS);  static  int              roff_block_sub(ROFF_ARGS);
   static  int              roff_break(ROFF_ARGS);
 static  int              roff_cblock(ROFF_ARGS);  static  int              roff_cblock(ROFF_ARGS);
 static  int              roff_cc(ROFF_ARGS);  static  int              roff_cc(ROFF_ARGS);
 static  int              roff_ccond(struct roff *, int, int);  static  int              roff_ccond(struct roff *, int, int);
Line 400  static struct roffmac  roffs[TOKEN_NONE] = {
Line 404  static struct roffmac  roffs[TOKEN_NONE] = {
         { roff_unsupp, NULL, NULL, 0 },  /* boxa */          { roff_unsupp, NULL, NULL, 0 },  /* boxa */
         { roff_line_ignore, NULL, NULL, 0 },  /* bp */          { roff_line_ignore, NULL, NULL, 0 },  /* bp */
         { roff_unsupp, NULL, NULL, 0 },  /* BP */          { roff_unsupp, NULL, NULL, 0 },  /* BP */
         { roff_unsupp, NULL, NULL, 0 },  /* break */          { roff_break, NULL, NULL, 0 },  /* break */
         { roff_line_ignore, NULL, NULL, 0 },  /* breakchar */          { roff_line_ignore, NULL, NULL, 0 },  /* breakchar */
         { roff_line_ignore, NULL, NULL, 0 },  /* brnl */          { roff_line_ignore, NULL, NULL, 0 },  /* brnl */
         { roff_noarg, NULL, NULL, 0 },  /* brp */          { roff_noarg, NULL, NULL, 0 },  /* brp */
Line 685  roffhash_find(struct ohash *htab, const char *name, si
Line 689  roffhash_find(struct ohash *htab, const char *name, si
   
 /*  /*
  * Pop the current node off of the stack of roff instructions currently   * Pop the current node off of the stack of roff instructions currently
  * pending.   * pending.  Return 1 if it is a loop or 0 otherwise.
  */   */
 static int  static int
 roffnode_pop(struct roff *r)  roffnode_pop(struct roff *r)
Line 2002  roff_cblock(ROFF_ARGS)
Line 2006  roff_cblock(ROFF_ARGS)
   
 }  }
   
   /*
    * Pop all nodes ending at the end of the current input line.
    * Return the number of loops ended.
    */
 static int  static int
 roffnode_cleanscope(struct roff *r)  roffnode_cleanscope(struct roff *r)
 {  {
Line 2016  roffnode_cleanscope(struct roff *r)
Line 2024  roffnode_cleanscope(struct roff *r)
         return inloop;          return inloop;
 }  }
   
   /*
    * Handle the closing \} of a conditional block.
    * Apart from generating warnings, this only pops nodes.
    * Return the number of loops ended.
    */
 static int  static int
 roff_ccond(struct roff *r, int ln, int ppos)  roff_ccond(struct roff *r, int ln, int ppos)
 {  {
Line 2235  roff_block_text(ROFF_ARGS)
Line 2248  roff_block_text(ROFF_ARGS)
 static int  static int
 roff_cond_sub(ROFF_ARGS)  roff_cond_sub(ROFF_ARGS)
 {  {
           struct roffnode *bl;
         char            *ep;          char            *ep;
         int              endloop, irc, rr;          int              endloop, irc, rr;
         enum roff_tok    t;          enum roff_tok    t;
Line 2282  roff_cond_sub(ROFF_ARGS)
Line 2296  roff_cond_sub(ROFF_ARGS)
          */           */
   
         t = roff_parse(r, buf->buf, &pos, ln, ppos);          t = roff_parse(r, buf->buf, &pos, ln, ppos);
         irc |= t != TOKEN_NONE && (rr || roffs[t].flags & ROFFMAC_STRUCT) ?          if (t == ROFF_break) {
             (*roffs[t].proc)(r, t, buf, ln, ppos, pos, offs) :                  if (irc & ROFF_LOOPMASK)
             rr ? ROFF_CONT : ROFF_IGN;                          irc = ROFF_IGN | ROFF_LOOPEXIT;
                   else if (rr) {
                           for (bl = r->last; bl != NULL; bl = bl->parent) {
                                   bl->rule = 0;
                                   if (bl->tok == ROFF_while)
                                           break;
                           }
                   }
           } else if (t != TOKEN_NONE &&
               (rr || roffs[t].flags & ROFFMAC_STRUCT))
                   irc |= (*roffs[t].proc)(r, t, buf, ln, ppos, pos, offs);
           else
                   irc |= rr ? ROFF_CONT : ROFF_IGN;
         return irc;          return irc;
 }  }
   
Line 2537  roff_evalcond(struct roff *r, int ln, char *v, int *po
Line 2563  roff_evalcond(struct roff *r, int ln, char *v, int *po
                         roff_getstrn(r, name, sz, &deftype);                          roff_getstrn(r, name, sz, &deftype);
                         istrue = !!deftype;                          istrue = !!deftype;
                 }                  }
                 *pos = cp - v;                  *pos = (name + sz) - v;
                 return istrue == wanttrue;                  return istrue == wanttrue;
         default:          default:
                 break;                  break;
Line 2683  roff_ds(ROFF_ARGS)
Line 2709  roff_ds(ROFF_ARGS)
                 return ROFF_IGN;                  return ROFF_IGN;
   
         namesz = roff_getname(r, &string, ln, pos);          namesz = roff_getname(r, &string, ln, pos);
         if (name[namesz] == '\\')          switch (name[namesz]) {
           case '\\':
                 return ROFF_IGN;                  return ROFF_IGN;
           case '\t':
                   string = buf->buf + pos + namesz;
                   break;
           default:
                   break;
           }
   
         /* Read past the initial double-quote, if any. */          /* Read past the initial double-quote, if any. */
         if (*string == '"')          if (*string == '"')
Line 3060  roff_nr(ROFF_ARGS)
Line 3093  roff_nr(ROFF_ARGS)
                 return ROFF_IGN;                  return ROFF_IGN;
   
         keysz = roff_getname(r, &val, ln, pos);          keysz = roff_getname(r, &val, ln, pos);
         if (key[keysz] == '\\')          if (key[keysz] == '\\' || key[keysz] == '\t')
                 return ROFF_IGN;                  return ROFF_IGN;
   
         sign = *val;          sign = *val;
Line 3124  roff_rm(ROFF_ARGS)
Line 3157  roff_rm(ROFF_ARGS)
                 namesz = roff_getname(r, &cp, ln, (int)(cp - buf->buf));                  namesz = roff_getname(r, &cp, ln, (int)(cp - buf->buf));
                 roff_setstrn(&r->strtab, name, namesz, NULL, 0, 0);                  roff_setstrn(&r->strtab, name, namesz, NULL, 0, 0);
                 roff_setstrn(&r->rentab, name, namesz, NULL, 0, 0);                  roff_setstrn(&r->rentab, name, namesz, NULL, 0, 0);
                 if (name[namesz] == '\\')                  if (name[namesz] == '\\' || name[namesz] == '\t')
                         break;                          break;
         }          }
         return ROFF_IGN;          return ROFF_IGN;
Line 3459  roff_als(ROFF_ARGS)
Line 3492  roff_als(ROFF_ARGS)
                 return ROFF_IGN;                  return ROFF_IGN;
   
         newsz = roff_getname(r, &oldn, ln, pos);          newsz = roff_getname(r, &oldn, ln, pos);
         if (newn[newsz] == '\\' || *oldn == '\0')          if (newn[newsz] == '\\' || newn[newsz] == '\t' || *oldn == '\0')
                 return ROFF_IGN;                  return ROFF_IGN;
   
         end = oldn;          end = oldn;
Line 3475  roff_als(ROFF_ARGS)
Line 3508  roff_als(ROFF_ARGS)
         return ROFF_IGN;          return ROFF_IGN;
 }  }
   
   /*
    * The .break request only makes sense inside conditionals,
    * and that case is already handled in roff_cond_sub().
    */
 static int  static int
   roff_break(ROFF_ARGS)
   {
           mandoc_msg(MANDOCERR_BLK_NOTOPEN, ln, pos, "break");
           return ROFF_IGN;
   }
   
   static int
 roff_cc(ROFF_ARGS)  roff_cc(ROFF_ARGS)
 {  {
         const char      *p;          const char      *p;
Line 3689  roff_rn(ROFF_ARGS)
Line 3733  roff_rn(ROFF_ARGS)
                 return ROFF_IGN;                  return ROFF_IGN;
   
         oldsz = roff_getname(r, &newn, ln, pos);          oldsz = roff_getname(r, &newn, ln, pos);
         if (oldn[oldsz] == '\\' || *newn == '\0')          if (oldn[oldsz] == '\\' || oldn[oldsz] == '\t' || *newn == '\0')
                 return ROFF_IGN;                  return ROFF_IGN;
   
         end = newn;          end = newn;
Line 3797  roff_userdef(ROFF_ARGS)
Line 3841  roff_userdef(ROFF_ARGS)
         char             *arg, *ap, *dst, *src;          char             *arg, *ap, *dst, *src;
         size_t            sz;          size_t            sz;
   
           /* If the macro is empty, ignore it altogether. */
   
           if (*r->current_string == '\0')
                   return ROFF_IGN;
   
         /* Initialize a new macro stack context. */          /* Initialize a new macro stack context. */
   
         if (++r->mstackpos == r->mstacksz) {          if (++r->mstackpos == r->mstacksz) {
Line 3844  roff_userdef(ROFF_ARGS)
Line 3893  roff_userdef(ROFF_ARGS)
         buf->sz = strlen(buf->buf) + 1;          buf->sz = strlen(buf->buf) + 1;
         *offs = 0;          *offs = 0;
   
         return buf->sz > 1 && buf->buf[buf->sz - 2] == '\n' ?          return buf->buf[buf->sz - 2] == '\n' ?
             ROFF_REPARSE | ROFF_USERCALL : ROFF_IGN | ROFF_APPEND;              ROFF_REPARSE | ROFF_USERCALL : ROFF_IGN | ROFF_APPEND;
 }  }
   
Line 3865  roff_renamed(ROFF_ARGS)
Line 3914  roff_renamed(ROFF_ARGS)
         return ROFF_CONT;          return ROFF_CONT;
 }  }
   
   /*
    * Measure the length in bytes of the roff identifier at *cpp
    * and advance the pointer to the next word.
    */
 static size_t  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)
 {  {
Line 3872  roff_getname(struct roff *r, char **cpp, int ln, int p
Line 3925  roff_getname(struct roff *r, char **cpp, int ln, int p
         size_t    namesz;          size_t    namesz;
   
         name = *cpp;          name = *cpp;
         if ('\0' == *name)          if (*name == '\0')
                 return 0;                  return 0;
   
         /* Read until end of name and terminate it with NUL. */          /* Advance cp to the byte after the end of the name. */
   
         for (cp = name; 1; cp++) {          for (cp = name; 1; cp++) {
                 if ('\0' == *cp || ' ' == *cp) {                  namesz = cp - name;
                         namesz = cp - name;                  if (*cp == '\0')
                         break;                          break;
                   if (*cp == ' ' || *cp == '\t') {
                           cp++;
                           break;
                 }                  }
                 if ('\\' != *cp)                  if (*cp != '\\')
                         continue;                          continue;
                 namesz = cp - name;                  if (cp[1] == '{' || cp[1] == '}')
                 if ('{' == cp[1] || '}' == cp[1])  
                         break;                          break;
                 cp++;                  if (*++cp == '\\')
                 if ('\\' == *cp)  
                         continue;                          continue;
                 mandoc_msg(MANDOCERR_NAMESC, ln, pos,                  mandoc_msg(MANDOCERR_NAMESC, ln, pos,
                     "%.*s", (int)(cp - name + 1), name);                      "%.*s", (int)(cp - name + 1), name);
Line 3896  roff_getname(struct roff *r, char **cpp, int ln, int p
Line 3951  roff_getname(struct roff *r, char **cpp, int ln, int p
         }          }
   
         /* Read past spaces. */          /* Read past spaces. */
         while (' ' == *cp)  
           while (*cp == ' ')
                 cp++;                  cp++;
   
         *cpp = cp;          *cpp = cp;

Legend:
Removed from v.1.361  
changed lines
  Added in v.1.365

CVSweb