[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.4 and 1.6

version 1.4, 2011/07/24 10:09:03 version 1.6, 2014/08/10 23:54:41
Line 14 
Line 14 
  * 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 <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 37  static const enum termfont fontmap[EQNFONT__MAX] = {
Line 37  static const enum termfont fontmap[EQNFONT__MAX] = {
   
 static void     eqn_box(struct termp *, const struct eqn_box *);  static void     eqn_box(struct termp *, const struct eqn_box *);
   
   
 void  void
 term_eqn(struct termp *p, const struct eqn *ep)  term_eqn(struct termp *p, const struct eqn *ep)
 {  {
Line 68  eqn_box(struct termp *p, const struct eqn_box *bp)
Line 69  eqn_box(struct termp *p, const struct eqn_box *bp)
                 term_word(p, ")");                  term_word(p, ")");
         if (bp->right)          if (bp->right)
                 term_word(p, bp->right);                  term_word(p, bp->right);
         if (EQNFONT_NONE != bp->font)          if (EQNFONT_NONE != bp->font)
                 term_fontpop(p);                  term_fontpop(p);
   
         if (bp->next)          if (bp->next)

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.6

CVSweb