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

Diff for /docbook2mdoc/node.h between version 1.14 and 1.16

version 1.14, 2019/04/09 01:39:09 version 1.16, 2019/04/11 04:23:22
Line 207  struct pattr {
Line 207  struct pattr {
 struct  pnode {  struct  pnode {
         enum nodeid      node;     /* Node type. */          enum nodeid      node;     /* Node type. */
         char            *b;        /* String value. */          char            *b;        /* String value. */
         char            *real;     /* Storage for "b". */  
         size_t           bsz;      /* strlen(b) */  
         int              spc;      /* Whitespace before this node. */          int              spc;      /* Whitespace before this node. */
         struct pnode    *parent;   /* Parent node or NULL. */          struct pnode    *parent;   /* Parent node or NULL. */
         struct pnodeq    childq;   /* Queue of children. */          struct pnodeq    childq;   /* Queue of children. */
Line 222  struct pnode {
Line 220  struct pnode {
 struct  ptree {  struct  ptree {
         struct pnode    *root;     /* The document element. */          struct pnode    *root;     /* The document element. */
         int              flags;          int              flags;
 #define TREE_FAIL        (1 << 0)  /* A fatal parse error occurred. */  #define TREE_ERROR       (1 << 0)  /* A parse error occurred. */
 #define TREE_EQN         (1 << 1)  /* The document needs inline eqn(7). */  #define TREE_WARN        (1 << 1)  /* A parser warning occurred. */
 #define TREE_CLOSED      (1 << 2)  /* The document element was closed. */  #define TREE_EQN         (1 << 2)  /* The document needs inline eqn(7). */
   #define TREE_CLOSED      (1 << 3)  /* The document element was closed. */
 };  };
   
   

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

CVSweb