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

Diff for /mandoc/eqn_html.c between version 1.16 and 1.18

version 1.16, 2017/07/08 14:51:04 version 1.18, 2018/12/13 05:23:38
Line 26 
Line 26 
 #include <string.h>  #include <string.h>
   
 #include "mandoc.h"  #include "mandoc.h"
   #include "eqn.h"
 #include "out.h"  #include "out.h"
 #include "html.h"  #include "html.h"
   
Line 230  void
Line 231  void
 print_eqn(struct html *p, const struct eqn_box *bp)  print_eqn(struct html *p, const struct eqn_box *bp)
 {  {
         struct tag      *t;          struct tag      *t;
   
           if (bp->first == NULL)
                   return;
   
         t = print_otag(p, TAG_MATH, "c", "eqn");          t = print_otag(p, TAG_MATH, "c", "eqn");
   

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.18

CVSweb