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

Diff for /mandoc/roff.c between version 1.366 and 1.367

version 1.366, 2019/07/01 22:56:24 version 1.367, 2019/11/09 14:39:49
Line 771  void
Line 771  void
 roff_reset(struct roff *r)  roff_reset(struct roff *r)
 {  {
         roff_free1(r);          roff_free1(r);
           r->options |= MPARSE_COMMENT;
         r->format = r->options & (MPARSE_MDOC | MPARSE_MAN);          r->format = r->options & (MPARSE_MDOC | MPARSE_MAN);
         r->control = '\0';          r->control = '\0';
         r->escape = '\\';          r->escape = '\\';
Line 800  roff_alloc(int options)
Line 801  roff_alloc(int options)
   
         r = mandoc_calloc(1, sizeof(struct roff));          r = mandoc_calloc(1, sizeof(struct roff));
         r->reqtab = roffhash_alloc(0, ROFF_RENAMED);          r->reqtab = roffhash_alloc(0, ROFF_RENAMED);
         r->options = options;          r->options = options | MPARSE_COMMENT;
         r->format = options & (MPARSE_MDOC | MPARSE_MAN);          r->format = options & (MPARSE_MDOC | MPARSE_MAN);
         r->mstackpos = -1;          r->mstackpos = -1;
         r->rstackpos = -1;          r->rstackpos = -1;
Line 1246  roff_expand(struct roff *r, struct buf *buf, int ln, i
Line 1247  roff_expand(struct roff *r, struct buf *buf, int ln, i
                  * in the syntax tree.                   * in the syntax tree.
                  */                   */
   
                 if (newesc != ASCII_ESC && r->format == 0) {                  if (newesc != ASCII_ESC && r->options & MPARSE_COMMENT) {
                         while (*ep == ' ' || *ep == '\t')                          while (*ep == ' ' || *ep == '\t')
                                 ep--;                                  ep--;
                         ep[1] = '\0';                          ep[1] = '\0';
Line 1815  roff_parseln(struct roff *r, int ln, struct buf *buf, 
Line 1816  roff_parseln(struct roff *r, int ln, struct buf *buf, 
                 roff_addtbl(r->man, ln, r->tbl);                  roff_addtbl(r->man, ln, r->tbl);
                 return e;                  return e;
         }          }
         if ( ! ctl)          if ( ! ctl) {
                   r->options &= ~MPARSE_COMMENT;
                 return roff_parsetext(r, buf, pos, offs) | e;                  return roff_parsetext(r, buf, pos, offs) | e;
           }
   
         /* Skip empty request lines. */          /* Skip empty request lines. */
   
Line 1839  roff_parseln(struct roff *r, int ln, struct buf *buf, 
Line 1842  roff_parseln(struct roff *r, int ln, struct buf *buf, 
   
         /* No scope is open.  This is a new request or macro. */          /* No scope is open.  This is a new request or macro. */
   
           r->options &= ~MPARSE_COMMENT;
         spos = pos;          spos = pos;
         t = roff_parse(r, buf->buf, &pos, ln, ppos);          t = roff_parse(r, buf->buf, &pos, ln, ppos);
   

Legend:
Removed from v.1.366  
changed lines
  Added in v.1.367

CVSweb