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

Diff for /mandoc/roff.c between version 1.333 and 1.334

version 1.333, 2018/08/18 02:08:27 version 1.334, 2018/08/18 21:37:01
Line 1205  roff_res(struct roff *r, struct buf *buf, int ln, int 
Line 1205  roff_res(struct roff *r, struct buf *buf, int ln, int 
                         r->man->next = ROFF_NEXT_SIBLING;                          r->man->next = ROFF_NEXT_SIBLING;
                 }                  }
   
                 /* Discard comments. */                  /* Line continuation with comment. */
   
                   if (stesc[1] == '#') {
                           *stesc = '\0';
                           return ROFF_APPEND;
                   }
   
                   /* Discard normal comments. */
   
                 while (stesc > start && stesc[-1] == ' ')                  while (stesc > start && stesc[-1] == ' ')
                         stesc--;                          stesc--;

Legend:
Removed from v.1.333  
changed lines
  Added in v.1.334

CVSweb