[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.171 and 1.172

version 1.171, 2011/06/29 15:38:09 version 1.172, 2011/07/04 09:42:38
Line 610  mdoc_sh_pre(MDOC_ARGS)
Line 610  mdoc_sh_pre(MDOC_ARGS)
                 return(1);                  return(1);
   
         bufinit(h);          bufinit(h);
           bufcat(h, "x");
         for (n = n->child; n; n = n->next) {          for (n = n->child; n; n = n->next) {
                 bufcat_id(h, n->string);                  bufcat_id(h, n->string);
                 if (n->next)                  if (n->next)
Line 636  mdoc_ss_pre(MDOC_ARGS)
Line 637  mdoc_ss_pre(MDOC_ARGS)
                 return(1);                  return(1);
   
         bufinit(h);          bufinit(h);
           bufcat(h, "x");
         for (n = n->child; n; n = n->next) {          for (n = n->child; n; n = n->next) {
                 bufcat_id(h, n->string);                  bufcat_id(h, n->string);
                 if (n->next)                  if (n->next)

Legend:
Removed from v.1.171  
changed lines
  Added in v.1.172

CVSweb