[BACK]Return to html.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/html.c between version 1.28 and 1.29

version 1.28, 2011/07/08 17:47:54 version 1.29, 2011/10/09 17:59:56
Line 114 
Line 114 
 ml_alloc(char *outopts, enum htmltype type)  ml_alloc(char *outopts, enum htmltype type)
 {  {
         struct html     *h;          struct html     *h;
         const char      *toks[4];          const char      *toks[5];
         char            *v;          char            *v;
   
         toks[0] = "style";          toks[0] = "style";
         toks[1] = "man";          toks[1] = "man";
         toks[2] = "includes";          toks[2] = "includes";
         toks[3] = NULL;          toks[3] = "fragment";
           toks[4] = NULL;
   
         h = mandoc_calloc(1, sizeof(struct html));          h = mandoc_calloc(1, sizeof(struct html));
   
Line 138 
Line 139 
                         break;                          break;
                 case (2):                  case (2):
                         h->base_includes = v;                          h->base_includes = v;
                           break;
                   case (3):
                           h->oflags |= HTML_FRAGMENT;
                         break;                          break;
                 default:                  default:
                         break;                          break;

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29