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

Diff for /src/usr.bin/mandoc/mdoc.c between version 1.156 and 1.157

version 1.156, 2017/06/17 13:05:47 version 1.157, 2017/08/11 16:55:10
Line 295 
Line 295 
                 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.156  
changed lines
  Added in v.1.157