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

Diff for /mandoc/html.h between version 1.37 and 1.38

version 1.37, 2011/01/04 10:29:41 version 1.38, 2011/01/06 11:55:39
Line 115  struct html {
Line 115  struct html {
 #define HTML_KEEP        (1 << 2)  #define HTML_KEEP        (1 << 2)
 #define HTML_PREKEEP     (1 << 3)  #define HTML_PREKEEP     (1 << 3)
 #define HTML_NONOSPACE   (1 << 4)  #define HTML_NONOSPACE   (1 << 4)
         struct tagq       tags;          struct tagq       tags; /* stack of open tags */
         void             *symtab;          struct rofftbl    tbl; /* current table */
         char             *base;          void             *symtab; /* character-escapes */
         char             *base_man;          char             *base_man; /* base for manpage href */
         char             *base_includes;          char             *base_includes; /* base for include href */
         char             *style;          char             *style; /* style-sheet URI */
         char              buf[BUFSIZ];          char              buf[BUFSIZ]; /* see bufcat and friends */
         size_t            buflen;          size_t            buflen;
         struct tag       *metaf; /* current open font scope */          struct tag       *metaf; /* current open font scope */
         enum htmlfont     metal; /* last used font */          enum htmlfont     metal; /* last used font */
         enum htmlfont     metac; /* current font mode */          enum htmlfont     metac; /* current font mode */
         enum htmltype     type;          enum htmltype     type;
 };  };
   
 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 *);

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38

CVSweb