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

Diff for /mandoc/Attic/libroff.h between version 1.29 and 1.30

version 1.29, 2014/04/20 16:46:04 version 1.30, 2014/10/16 01:11:20
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2014 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 43  struct tbl_node {
Line 44  struct tbl_node {
 };  };
   
 struct  eqn_node {  struct  eqn_node {
         struct eqn_def   *defs;          struct eqn        eqn;    /* syntax tree of this equation */
         size_t            defsz;          struct mparse    *parse;  /* main parser, for error reporting */
         char             *data;          struct eqn_node  *next;   /* singly linked list of equations */
         size_t            rew;          struct eqn_def   *defs;   /* array of definitions */
         size_t            cur;          char             *data;   /* source code of this equation */
         size_t            sz;          size_t            defsz;  /* number of definitions */
         int               gsize;          size_t            sz;     /* length of the source code */
         struct eqn        eqn;          size_t            cur;    /* parse point in the source code */
         struct mparse    *parse;          size_t            rew;    /* beginning of the current token */
         struct eqn_node  *next;          int               gsize;  /* default point size */
           int               delim;  /* in-line delimiters enabled */
           char              odelim; /* in-line opening delimiter */
           char              cdelim; /* in-line closing delimiter */
 };  };
   
 struct  eqn_def {  struct  eqn_def {

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30

CVSweb