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

Diff for /mandoc/mdoc_html.c between version 1.238 and 1.239

version 1.238, 2015/10/12 00:08:15 version 1.239, 2016/01/04 12:45:29
Line 542  mdoc_sh_pre(MDOC_ARGS)
Line 542  mdoc_sh_pre(MDOC_ARGS)
         }          }
   
         bufinit(h);          bufinit(h);
         bufcat(h, "x");  
   
         for (n = n->child; n != NULL && n->type == ROFFT_TEXT; ) {          for (n = n->child; n != NULL && n->type == ROFFT_TEXT; ) {
                 bufcat_id(h, n->string);                  bufcat_id(h, n->string);
Line 572  mdoc_ss_pre(MDOC_ARGS)
Line 571  mdoc_ss_pre(MDOC_ARGS)
                 return 1;                  return 1;
   
         bufinit(h);          bufinit(h);
         bufcat(h, "x");  
   
         for (n = n->child; n != NULL && n->type == ROFFT_TEXT; ) {          for (n = n->child; n != NULL && n->type == ROFFT_TEXT; ) {
                 bufcat_id(h, n->string);                  bufcat_id(h, n->string);
Line 1063  mdoc_sx_pre(MDOC_ARGS)
Line 1061  mdoc_sx_pre(MDOC_ARGS)
         struct htmlpair  tag[2];          struct htmlpair  tag[2];
   
         bufinit(h);          bufinit(h);
         bufcat(h, "#x");          bufcat(h, "#");
   
         for (n = n->child; n; ) {          for (n = n->child; n; ) {
                 bufcat_id(h, n->string);                  bufcat_id(h, n->string);

Legend:
Removed from v.1.238  
changed lines
  Added in v.1.239

CVSweb