diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-30 22:14:02 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-04-30 22:14:02 +0000 |
commit | 81b57ab7ff9feb505ae3ae1ed097ad8b36b24fe7 (patch) | |
tree | f505cc28d75a8543952f44f5e7ade70be419729e /chars.c | |
parent | 9d7aa895cbfd8afba87de99ca42b9188c0d3f606 (diff) | |
download | mandoc-81b57ab7ff9feb505ae3ae1ed097ad8b36b24fe7.tar.gz |
Remove enum mcharst, which hasn't been used in quite some time.
Diffstat (limited to 'chars.c')
-rw-r--r-- | chars.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -55,7 +55,6 @@ struct ln { #include "chars.in" struct mchars { - enum mcharst type; struct ln **htab; }; @@ -72,7 +71,7 @@ mchars_free(struct mchars *arg) } struct mchars * -mchars_init(enum mcharst type) +mchars_init(void) { struct mchars *tab; struct ln **htab; @@ -103,7 +102,6 @@ mchars_init(enum mcharst type) } tab->htab = htab; - tab->type = type; return(tab); } |