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

Diff for /mandoc/html.c between version 1.79 and 1.80

version 1.79, 2009/11/01 15:34:44 version 1.80, 2009/11/02 06:22:44
Line 322  print_encode(struct html *h, const char *p)
Line 322  print_encode(struct html *h, const char *p)
                 sz = strcspn(p, "\\<>&");                  sz = strcspn(p, "\\<>&");
   
                 fwrite(p, 1, sz, stdout);                  fwrite(p, 1, sz, stdout);
                 p += (int)sz;                  p += /* LINTED */
                           sz;
   
                 if ('\\' == *p) {                  if ('\\' == *p) {
                         print_escape(h, &p);                          print_escape(h, &p);

Legend:
Removed from v.1.79  
changed lines
  Added in v.1.80

CVSweb