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

Diff for /mandoc/tree.c between version 1.53 and 1.55

version 1.53, 2014/07/02 07:10:38 version 1.55, 2014/09/28 11:32:33
Line 15 
Line 15 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
 #ifdef HAVE_CONFIG_H  
 #include "config.h"  #include "config.h"
 #endif  
   
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <limits.h>  #include <limits.h>
 #include <stdio.h>  #include <stdio.h>
Line 290  print_box(const struct eqn_box *ep, int indent)
Line 290  print_box(const struct eqn_box *ep, int indent)
         }          }
   
         assert(t);          assert(t);
         printf("%s(%d, %d, %d, %d, %d, \"%s\", \"%s\") %s\n",          printf("%s(size=%d, pos=%d, font=%d, mark=%d, pile=%d, l=\"%s\", r=\"%s\") %s\n",
             t, EQN_DEFSIZE == ep->size ? 0 : ep->size,              t, EQN_DEFSIZE == ep->size ? 0 : ep->size,
             ep->pos + 1, ep->font, ep->mark, ep->pile,              ep->pos, ep->font, ep->mark, ep->pile,
             ep->left ? ep->left : "",              ep->left ? ep->left : "",
             ep->right ? ep->right : "",              ep->right ? ep->right : "",
             ep->text ? ep->text : "");              ep->text ? ep->text : "");

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.55

CVSweb