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

Diff for /mandoc/mdoc_html.c between version 1.60 and 1.61

version 1.60, 2010/04/07 07:49:38 version 1.61, 2010/04/08 08:17:55
Line 2222  mdoc__x_pre(MDOC_ARGS)
Line 2222  mdoc__x_pre(MDOC_ARGS)
                 break;                  break;
         case(MDOC__T):          case(MDOC__T):
                 PAIR_CLASS_INIT(&tag[0], "ref-title");                  PAIR_CLASS_INIT(&tag[0], "ref-title");
                 print_text(h, "\\(lq");  
                 h->flags |= HTML_NOSPACE;  
                 break;                  break;
         case(MDOC__U):          case(MDOC__U):
                 PAIR_CLASS_INIT(&tag[0], "link-ref");                  PAIR_CLASS_INIT(&tag[0], "link-ref");
Line 2252  static void
Line 2250  static void
 mdoc__x_post(MDOC_ARGS)  mdoc__x_post(MDOC_ARGS)
 {  {
   
           /* TODO: %U */
   
         h->flags |= HTML_NOSPACE;          h->flags |= HTML_NOSPACE;
         switch (n->tok) {  
         case (MDOC__T):  
                 print_text(h, "\\(rq");  
                 h->flags |= HTML_NOSPACE;  
                 break;  
         default:  
                 break;  
         }  
         print_text(h, n->next ? "," : ".");          print_text(h, n->next ? "," : ".");
 }  }

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61

CVSweb