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

Diff for /mandoc/eqn_term.c between version 1.7 and 1.8

version 1.7, 2014/10/12 14:49:39 version 1.8, 2015/01/01 15:36:08
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2014, 2015 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 79  eqn_box(struct termp *p, const struct eqn_box *bp)
Line 79  eqn_box(struct termp *p, const struct eqn_box *bp)
                      bp->pos == EQNPOS_TO) ? "^" : "_");                       bp->pos == EQNPOS_TO) ? "^" : "_");
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
                 child = child->next;                  child = child->next;
                 eqn_box(p, child);                  if (child != NULL) {
                 if (bp->pos == EQNPOS_FROMTO ||  
                     bp->pos == EQNPOS_SUBSUP) {  
                         p->flags |= TERMP_NOSPACE;  
                         term_word(p, "^");  
                         p->flags |= TERMP_NOSPACE;  
                         child = child->next;  
                         eqn_box(p, child);                          eqn_box(p, child);
                           if (bp->pos == EQNPOS_FROMTO ||
                               bp->pos == EQNPOS_SUBSUP) {
                                   p->flags |= TERMP_NOSPACE;
                                   term_word(p, "^");
                                   p->flags |= TERMP_NOSPACE;
                                   child = child->next;
                                   if (child != NULL)
                                           eqn_box(p, child);
                           }
                 }                  }
         } else {          } else {
                 child = bp->first;                  child = bp->first;

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

CVSweb