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

Diff for /mandoc/man_html.c between version 1.16 and 1.19

version 1.16, 2009/10/28 08:00:18 version 1.19, 2009/11/14 11:58:36
Line 18 
Line 18 
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <err.h>  
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
Line 189  print_man_node(MAN_ARGS)
Line 188  print_man_node(MAN_ARGS)
                 break;                  break;
         case (MAN_TEXT):          case (MAN_TEXT):
                 print_text(h, n->string);                  print_text(h, n->string);
                 break;                  return;
         default:          default:
                 if (mans[n->tok].pre)                  if (mans[n->tok].pre)
                         child = (*mans[n->tok].pre)(m, n, h);                          child = (*mans[n->tok].pre)(m, n, h);

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

CVSweb