[BACK]Return to read.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/read.c between version 1.191 and 1.192

version 1.191, 2021/06/27 17:57:13 version 1.192, 2022/05/19 14:47:47
Line 259 
Line 259 
                         lastln = thisln;                          lastln = thisln;
                 }                  }
   
                 /* XXX Ugly hack to mark the end of the input. */                  /*
                    * XXX Ugly hack to mark the end of the input,
                    * such that the function roff_parse_comment()
                    * doesn't attempt to append another line if the
                    * last input line ends with an escape character.
                    */
   
                 if (i == blk.sz || blk.buf[i] == '\0') {                  if (i == blk.sz || blk.buf[i] == '\0') {
                         if (pos + 2 > ln.sz)                          if (pos + 2 > ln.sz)

Legend:
Removed from v.1.191  
changed lines
  Added in v.1.192