[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.19 and 1.20

version 1.19, 2016/01/08 17:48:04 version 1.20, 2017/01/10 12:54:28
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 109 
Line 109 
 #define MAN_VALID         MDOC_VALID  #define MAN_VALID         MDOC_VALID
 #define MAN_EOS           MDOC_EOS  #define MAN_EOS           MDOC_EOS
 #define MAN_LINE          MDOC_LINE  #define MAN_LINE          MDOC_LINE
   #define NODE_NOSRC       (1 << 8)  /* Generated node, not in input file. */
   #define NODE_NOPRT       (1 << 9)  /* Shall not print anything. */
         int               prev_font; /* Before entering this node. */          int               prev_font; /* Before entering this node. */
         int               aux;     /* Decoded node data, type-dependent. */          int               aux;     /* Decoded node data, type-dependent. */
         enum roff_type    type;    /* AST node type. */          enum roff_type    type;    /* AST node type. */

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20