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

Diff for /mandoc/mdoc.c between version 1.267 and 1.268

version 1.267, 2017/06/17 13:06:16 version 1.268, 2017/08/11 16:56:21
Line 297  mdoc_ptext(struct roff_man *mdoc, int line, char *buf,
Line 297  mdoc_ptext(struct roff_man *mdoc, int line, char *buf,
                 if (end - c < 3)                  if (end - c < 3)
                         break;                          break;
                 if (c[1] != ' ' ||                  if (c[1] != ' ' ||
                     isalpha((unsigned char)c[-2]) == 0 ||                      isalnum((unsigned char)c[-2]) == 0 ||
                     isalpha((unsigned char)c[-1]) == 0 ||                      isalnum((unsigned char)c[-1]) == 0 ||
                     (c[-2] == 'n' && c[-1] == 'c') ||                      (c[-2] == 'n' && c[-1] == 'c') ||
                     (c[-2] == 'v' && c[-1] == 's'))                      (c[-2] == 'v' && c[-1] == 's'))
                         continue;                          continue;

Legend:
Removed from v.1.267  
changed lines
  Added in v.1.268

CVSweb