[BACK]Return to roff.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/roff.h between version 1.13 and 1.14

version 1.13, 2015/04/18 16:04:40 version 1.14, 2015/04/18 16:34:03
Line 19 
Line 19 
 struct  mdoc_arg;  struct  mdoc_arg;
 union   mdoc_data;  union   mdoc_data;
   
   enum    roff_macroset {
           MACROSET_NONE = 0,
           MACROSET_MDOC,
           MACROSET_MAN
   };
   
 enum    roff_sec {  enum    roff_sec {
         SEC_NONE = 0,          SEC_NONE = 0,
         SEC_NAME,          SEC_NAME,
Line 145 
Line 151 
 #define MAN_BLINE        (1 << 12) /* Next-line block scope. */  #define MAN_BLINE        (1 << 12) /* Next-line block scope. */
 #define MAN_LITERAL       MDOC_LITERAL  #define MAN_LITERAL       MDOC_LITERAL
 #define MAN_NEWLINE       MDOC_NEWLINE  #define MAN_NEWLINE       MDOC_NEWLINE
           enum roff_macroset macroset; /* Kind of high-level macros used. */
         enum roff_sec     lastsec; /* Last section seen. */          enum roff_sec     lastsec; /* Last section seen. */
         enum roff_sec     lastnamed; /* Last standard section seen. */          enum roff_sec     lastnamed; /* Last standard section seen. */
         enum roff_next    next;    /* Where to put the next node. */          enum roff_next    next;    /* Where to put the next node. */

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