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

Diff for /mandoc/html.c between version 1.133 and 1.135

version 1.133, 2011/04/29 22:18:12 version 1.135, 2011/04/30 22:14:02
Line 122  ml_alloc(char *outopts, enum htmltype type)
Line 122  ml_alloc(char *outopts, enum htmltype type)
   
         h->type = type;          h->type = type;
         h->tags.head = NULL;          h->tags.head = NULL;
         h->symtab = mchars_init(MCHARS_HTML);          h->symtab = mchars_init();
   
         while (outopts && *outopts)          while (outopts && *outopts)
                 switch (getsubopt(&outopts, UNCONST(toks), &v)) {                  switch (getsubopt(&outopts, UNCONST(toks), &v)) {
Line 427  print_otag(struct html *h, enum htmltag tag, 
Line 427  print_otag(struct html *h, enum htmltag tag, 
                 print_attr(h, "lang", "en");                  print_attr(h, "lang", "en");
         }          }
   
         /* Accomodate for XML "well-formed" singleton escaping. */          /* Accommodate for XML "well-formed" singleton escaping. */
   
         if (HTML_AUTOCLOSE & htmltags[tag].flags)          if (HTML_AUTOCLOSE & htmltags[tag].flags)
                 switch (h->type) {                  switch (h->type) {

Legend:
Removed from v.1.133  
changed lines
  Added in v.1.135

CVSweb