[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.110 and 1.111

version 1.110, 2010/10/01 21:51:13 version 1.111, 2010/10/10 09:59:48
Line 1323  mdoc_bd_pre(MDOC_ARGS)
Line 1323  mdoc_bd_pre(MDOC_ARGS)
                  * anyway, so don't sweat it.                   * anyway, so don't sweat it.
                  */                   */
                 switch (nn->tok) {                  switch (nn->tok) {
                   case (MDOC_Sm):
                           /* FALLTHROUGH */
                 case (MDOC_br):                  case (MDOC_br):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (MDOC_sp):                  case (MDOC_sp):
Line 1603  mdoc_sm_pre(MDOC_ARGS)
Line 1605  mdoc_sm_pre(MDOC_ARGS)
   
         assert(n->child && MDOC_TEXT == n->child->type);          assert(n->child && MDOC_TEXT == n->child->type);
         if (0 == strcmp("on", n->child->string)) {          if (0 == strcmp("on", n->child->string)) {
                 /* FIXME: no p->col to check... */                  /*
                    * FIXME: no p->col to check.  Thus, if we have
                    *  .Bd -literal
                    *  .Sm off
                    *  1 2
                    *  .Sm on
                    *  3
                    *  .Ed
                    * the "3" is preceded by a space.
                    */
                 h->flags &= ~HTML_NOSPACE;                  h->flags &= ~HTML_NOSPACE;
                 h->flags &= ~HTML_NONOSPACE;                  h->flags &= ~HTML_NONOSPACE;
         } else          } else

Legend:
Removed from v.1.110  
changed lines
  Added in v.1.111

CVSweb