[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.19

version 1.16, 2017/07/08 14:51:04 version 1.19, 2019/03/17 18:21:45
Line 26 
Line 26 
 #include <string.h>  #include <string.h>
   
 #include "mandoc.h"  #include "mandoc.h"
   #include "roff.h"
   #include "eqn.h"
 #include "out.h"  #include "out.h"
 #include "html.h"  #include "html.h"
   
Line 230  void
Line 232  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.19

CVSweb