[BACK]Return to html.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/html.h between version 1.10 and 1.11

version 1.10, 2010/12/22 00:33:25 version 1.11, 2010/12/25 13:23:03
Line 48 
Line 48 
         TAG_PRE,          TAG_PRE,
         TAG_B,          TAG_B,
         TAG_I,          TAG_I,
         TAG_U,          TAG_CODE,
           TAG_SMALL,
         TAG_MAX          TAG_MAX
 };  };
   
Line 122 
Line 123 
         char             *style;          char             *style;
         char              buf[BUFSIZ];          char              buf[BUFSIZ];
         size_t            buflen;          size_t            buflen;
         struct tag       *metaf;          struct tag       *metaf; /* current open font scope */
         enum htmlfont     metal;          enum htmlfont     metal; /* last used font */
         enum htmlfont     metac;          enum htmlfont     metac; /* current font mode */
         enum htmltype     type;          enum htmltype     type;
 };  };
   
Line 132 
Line 133 
   
 void              print_gen_decls(struct html *);  void              print_gen_decls(struct html *);
 void              print_gen_head(struct html *);  void              print_gen_head(struct html *);
 struct tag       *print_ofont(struct html *, enum htmlfont);  
 struct tag       *print_otag(struct html *, enum htmltag,  struct tag       *print_otag(struct html *, enum htmltag,
                                 int, const struct htmlpair *);                                  int, const struct htmlpair *);
 void              print_tagq(struct html *, const struct tag *);  void              print_tagq(struct html *, const struct tag *);

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11