aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-04-30 22:14:02 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-04-30 22:14:02 +0000
commit14dd68aa4e634a8d52f644c5a60a89711bc157f5 (patch)
tree171b0f68129813b776be83d9be3c6b7178454353 /html.c
parentcd17b00c20e30495d03c7e53adc3740d7be9b3cd (diff)
downloadmandoc-14dd68aa4e634a8d52f644c5a60a89711bc157f5.tar.gz
mandoc-14dd68aa4e634a8d52f644c5a60a89711bc157f5.tar.zst
mandoc-14dd68aa4e634a8d52f644c5a60a89711bc157f5.zip
Remove enum mcharst, which hasn't been used in quite some time.
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index 8f6005ad..f5f1e95e 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.134 2011/04/30 10:18:24 kristaps Exp $ */
+/* $Id: html.c,v 1.135 2011/04/30 22:14:02 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -122,7 +122,7 @@ ml_alloc(char *outopts, enum htmltype type)
h->type = type;
h->tags.head = NULL;
- h->symtab = mchars_init(MCHARS_HTML);
+ h->symtab = mchars_init();
while (outopts && *outopts)
switch (getsubopt(&outopts, UNCONST(toks), &v)) {