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

Diff for /mandoc/chars.c between version 1.36 and 1.37

version 1.36, 2011/04/29 22:18:12 version 1.37, 2011/04/30 22:14:02
Line 55  struct ln {
Line 55  struct ln {
 #include "chars.in"  #include "chars.in"
   
 struct  mchars {  struct  mchars {
         enum mcharst      type;  
         struct ln       **htab;          struct ln       **htab;
 };  };
   
Line 72  mchars_free(struct mchars *arg)
Line 71  mchars_free(struct mchars *arg)
 }  }
   
 struct mchars *  struct mchars *
 mchars_init(enum mcharst type)  mchars_init(void)
 {  {
         struct mchars    *tab;          struct mchars    *tab;
         struct ln       **htab;          struct ln       **htab;
Line 103  mchars_init(enum mcharst type)
Line 102  mchars_init(enum mcharst type)
         }          }
   
         tab->htab = htab;          tab->htab = htab;
         tab->type = type;  
         return(tab);          return(tab);
 }  }
   

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37

CVSweb