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

Diff for /mandoc/roff.h between version 1.41 and 1.42

version 1.41, 2017/04/24 23:06:18 version 1.42, 2017/04/29 12:45:42
Line 16 
Line 16 
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   
   struct  ohash;
 struct  mdoc_arg;  struct  mdoc_arg;
 union   mdoc_data;  union   mdoc_data;
   
Line 538  struct roff_man {
Line 539  struct roff_man {
         struct roff_meta  meta;    /* Document meta-data. */          struct roff_meta  meta;    /* Document meta-data. */
         struct mparse    *parse;   /* Parse pointer. */          struct mparse    *parse;   /* Parse pointer. */
         struct roff      *roff;    /* Roff parser state data. */          struct roff      *roff;    /* Roff parser state data. */
           struct ohash     *mdocmac; /* Mdoc macro lookup table. */
           struct ohash     *manmac;  /* Man macro lookup table. */
         const char       *defos;   /* Default operating system. */          const char       *defos;   /* Default operating system. */
         struct roff_node *first;   /* The first node parsed. */          struct roff_node *first;   /* The first node parsed. */
         struct roff_node *last;    /* The last node parsed. */          struct roff_node *last;    /* The last node parsed. */
Line 569  struct roff_man {
Line 572  struct roff_man {
   
 extern  const char *const *roff_name;  extern  const char *const *roff_name;
   
   
 void             deroff(char **, const struct roff_node *);  void             deroff(char **, const struct roff_node *);
   struct ohash    *roffhash_alloc(enum roff_tok, enum roff_tok);
   enum roff_tok    roffhash_find(struct ohash *, const char *, size_t);
   void             roffhash_free(struct ohash *);

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42

CVSweb