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

Diff for /mandoc/roff.c between version 1.391 and 1.392

version 1.391, 2022/05/31 20:23:05 version 1.392, 2022/06/02 11:29:07
Line 1410  roff_expand(struct roff *r, struct buf *buf, int ln, i
Line 1410  roff_expand(struct roff *r, struct buf *buf, int ln, i
                  * it to backslashes and translate backslashes to \e.                   * it to backslashes and translate backslashes to \e.
                  */                   */
   
                 if (roff_escape(buf->buf, ln, pos,                  if (roff_escape(buf->buf, ln, pos, &iesc, &inam,
                     &iesc, &iarg, &iendarg, &iend) != ESCAPE_EXPAND) {                      &iarg, &iendarg, &iend) != ESCAPE_EXPAND) {
                         while (pos < iend) {                          while (pos < iend) {
                                 if (buf->buf[pos] == ec) {                                  if (buf->buf[pos] == ec) {
                                         buf->buf[pos] = '\\';                                          buf->buf[pos] = '\\';
Line 1427  roff_expand(struct roff *r, struct buf *buf, int ln, i
Line 1427  roff_expand(struct roff *r, struct buf *buf, int ln, i
                         }                          }
                         continue;                          continue;
                 }                  }
   
                 /*  
                  * Treat "\E" just like "\";  
                  * it only makes a difference in copy mode.  
                  */  
   
                 inam = iesc + 1;  
                 while (buf->buf[inam] == 'E')  
                         inam++;  
   
                 /* Handle expansion. */                  /* Handle expansion. */
   

Legend:
Removed from v.1.391  
changed lines
  Added in v.1.392

CVSweb