[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.151 and 1.152

version 1.151, 2011/02/06 21:44:36 version 1.152, 2011/02/06 23:02:31
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 806  mdoc_xx_pre(MDOC_ARGS)
Line 806  mdoc_xx_pre(MDOC_ARGS)
 {  {
         const char      *pp;          const char      *pp;
         struct htmlpair  tag;          struct htmlpair  tag;
           int              flags;
   
         switch (n->tok) {          switch (n->tok) {
         case (MDOC_Bsx):          case (MDOC_Bsx):
Line 835  mdoc_xx_pre(MDOC_ARGS)
Line 836  mdoc_xx_pre(MDOC_ARGS)
   
         print_text(h, pp);          print_text(h, pp);
         if (n->child) {          if (n->child) {
                   flags = h->flags;
                 h->flags |= HTML_KEEP;                  h->flags |= HTML_KEEP;
                 print_text(h, n->child->string);                  print_text(h, n->child->string);
                 h->flags &= ~HTML_KEEP;                  h->flags = flags;
         }          }
         return(0);          return(0);
 }  }

Legend:
Removed from v.1.151  
changed lines
  Added in v.1.152

CVSweb