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

Diff for /mandoc/html.h between version 1.34 and 1.35

version 1.34, 2010/12/22 11:15:16 version 1.35, 2010/12/24 00:46:49
Line 50  enum htmltag {
Line 50  enum htmltag {
         TAG_I,          TAG_I,
         TAG_U,          TAG_U,
         TAG_CODE,          TAG_CODE,
           TAG_SMALL,
         TAG_MAX          TAG_MAX
 };  };
   
Line 123  struct html {
Line 124  struct html {
         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 133  struct roffsu;
Line 134  struct roffsu;
   
 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.34  
changed lines
  Added in v.1.35

CVSweb