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

Diff for /mandoc/html.h between version 1.13 and 1.14

version 1.13, 2009/10/13 10:21:24 version 1.14, 2009/10/26 08:18:16
Line 62  enum htmlattr {
Line 62  enum htmlattr {
 };  };
   
 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;

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

CVSweb