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

Diff for /mandoc/html.h between version 1.12 and 1.15

version 1.12, 2009/10/07 12:35:23 version 1.15, 2009/10/27 04:50:14
Line 58  enum htmlattr {
Line 58  enum htmlattr {
         ATTR_VALIGN,          ATTR_VALIGN,
         ATTR_TARGET,          ATTR_TARGET,
         ATTR_ID,          ATTR_ID,
           ATTR_SUMMARY,
         ATTR_MAX          ATTR_MAX
 };  };
   
 struct  tag {  struct  tag {
           struct tag       *next;
         enum htmltag      tag;          enum htmltag      tag;
         SLIST_ENTRY(tag)  entry;  
 };  };
   
 struct  ord {  struct  ord {
         int               pos;          struct ord       *next;
         const void       *cookie;          const void       *cookie;
         SLIST_ENTRY(ord)  entry;          int               pos;
 };  };
   
 SLIST_HEAD(tagq, tag);  struct tagq {
 SLIST_HEAD(ordq, ord);          struct tag       *head;
   };
   struct ordq {
           struct ord       *head;
   };
   
 struct  htmlpair {  struct  htmlpair {
         enum htmlattr     key;          enum htmlattr     key;
         char             *val;          const char       *val;
 };  };
   
 #define PAIR_CLASS_INIT(p, v) \  #define PAIR_CLASS_INIT(p, v) \
Line 89  struct htmlpair {
Line 94  struct htmlpair {
 #define PAIR_STYLE_INIT(p, h) \  #define PAIR_STYLE_INIT(p, h) \
         do { (p)->key = ATTR_STYLE; \          do { (p)->key = ATTR_STYLE; \
         (p)->val = (h)->buf; } while (/* CONSTCOND */ 0)          (p)->val = (h)->buf; } while (/* CONSTCOND */ 0)
   #define PAIR_SUMMARY_INIT(p, v) \
           do { (p)->key = ATTR_SUMMARY; \
           (p)->val = (v); } while (/* CONSTCOND */ 0)
   
 struct  html {  struct  html {
         int               flags;          int               flags;

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.15

CVSweb