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

Diff for /mandoc/html.c between version 1.96 and 1.97

version 1.96, 2010/02/17 19:48:33 version 1.97, 2010/04/03 12:46:35
Line 507  print_text(struct html *h, const char *p)
Line 507  print_text(struct html *h, const char *p)
                 case(')'):                  case(')'):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case(']'):                  case(']'):
                         /* FALLTHROUGH */  
                 case('}'):  
                         if ( ! (HTML_IGNDELIM & h->flags))                          if ( ! (HTML_IGNDELIM & h->flags))
                                 h->flags |= HTML_NOSPACE;                                  h->flags |= HTML_NOSPACE;
                         break;                          break;
Line 525  print_text(struct html *h, const char *p)
Line 523  print_text(struct html *h, const char *p)
   
         if (*p && 0 == *(p + 1))          if (*p && 0 == *(p + 1))
                 switch (*p) {                  switch (*p) {
                   case('|'):
                           /* FALLTHROUGH */
                 case('('):                  case('('):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case('['):                  case('['):
                         /* FALLTHROUGH */  
                 case('{'):  
                         h->flags |= HTML_NOSPACE;                          h->flags |= HTML_NOSPACE;
                         break;                          break;
                 default:                  default:

Legend:
Removed from v.1.96  
changed lines
  Added in v.1.97

CVSweb