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

Diff for /mandoc/html.c between version 1.189 and 1.191

version 1.189, 2015/10/12 00:08:15 version 1.191, 2015/10/13 22:59:54
Line 130  static void  print_attr(struct html *, const char *, c
Line 130  static void  print_attr(struct html *, const char *, c
   
   
 void *  void *
 html_alloc(const struct mchars *mchars, const struct manoutput *outopts)  html_alloc(const struct manoutput *outopts)
 {  {
         struct html     *h;          struct html     *h;
   
         h = mandoc_calloc(1, sizeof(struct html));          h = mandoc_calloc(1, sizeof(struct html));
   
         h->tags.head = NULL;          h->tags.head = NULL;
         h->symtab = mchars;  
   
         h->style = outopts->style;          h->style = outopts->style;
         h->base_man = outopts->man;          h->base_man = outopts->man;
         h->base_includes = outopts->includes;          h->base_includes = outopts->includes;
Line 318  print_escape(char c)
Line 316  print_escape(char c)
                 printf(""");                  printf(""");
                 break;                  break;
         case ASCII_NBRSP:          case ASCII_NBRSP:
                 putchar('-');                  printf(" ");
                 break;                  break;
         case ASCII_HYPH:          case ASCII_HYPH:
                 putchar('-');                  putchar('-');
Line 398  print_encode(struct html *h, const char *p, int norecu
Line 396  print_encode(struct html *h, const char *p, int norecu
                                 continue;                                  continue;
                         break;                          break;
                 case ESCAPE_SPECIAL:                  case ESCAPE_SPECIAL:
                         c = mchars_spec2cp(h->symtab, seq, len);                          c = mchars_spec2cp(seq, len);
                         if (c <= 0)                          if (c <= 0)
                                 continue;                                  continue;
                         break;                          break;

Legend:
Removed from v.1.189  
changed lines
  Added in v.1.191

CVSweb