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

Diff for /mandoc/html.c between version 1.85 and 1.86

version 1.85, 2009/11/14 11:58:36 version 1.86, 2009/11/14 12:00:24
Line 372  print_text(struct html *h, const char *p)
Line 372  print_text(struct html *h, const char *p)
         if ( ! (h->flags & HTML_NOSPACE))          if ( ! (h->flags & HTML_NOSPACE))
                 putchar(' ');                  putchar(' ');
   
         h->flags &= ~HTML_NOSPACE;  
         h->flags &= ~HTML_NEWLINE;          h->flags &= ~HTML_NEWLINE;
   
         if (p)          assert(p);
                 print_encode(h, p);          if ( ! print_encode(h, p))
                   h->flags &= ~HTML_NOSPACE;
   
         if (*p && 0 == *(p + 1))          if (*p && 0 == *(p + 1))
                 switch (*p) {                  switch (*p) {

Legend:
Removed from v.1.85  
changed lines
  Added in v.1.86

CVSweb