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

Diff for /docbook2mdoc/macro.h between version 1.7 and 1.8

version 1.7, 2019/05/01 17:20:47 version 1.8, 2019/05/20 20:08:26
Line 44  struct format {
Line 44  struct format {
         enum parastate   parastate;          enum parastate   parastate;
 };  };
   
 #define ARG_SPACE       1  /* Insert whitespace before this argument. */  #define ARG_SPACE       (1 << 0)  /* Insert whitespace before this argument. */
 #define ARG_SINGLE      2  /* Quote argument if it contains whitespace. */  #define ARG_SINGLE      (1 << 1)  /* Quote arg if it contains whitespace. */
 #define ARG_QUOTED      4  /* We are already in a quoted argument. */  #define ARG_QUOTED      (1 << 2)  /* We are already in a quoted argument. */
 #define ARG_UPPER       8  /* Covert argument to upper case. */  #define ARG_RAW         (1 << 3)  /* Skip macro and backslash escaping. */
   #define ARG_UPPER       (1 << 4)  /* Convert argument to upper case. */
   
   
 void     macro_open(struct format *, const char *);  void     macro_open(struct format *, const char *);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

CVSweb