aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-01-29 14:39:37 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-01-29 14:39:37 +0000
commit69a80825be62eeca6a77c1f0a38955d29e30cd03 (patch)
treed6252bf20e26e0bef981cd35a23b6060535f3f1d /man_html.c
parent68432d6ea9e0e1a89eb79e9b1e957ffd93b49b72 (diff)
downloadmandoc-69a80825be62eeca6a77c1f0a38955d29e30cd03.tar.gz
mandoc-69a80825be62eeca6a77c1f0a38955d29e30cd03.tar.zst
mandoc-69a80825be62eeca6a77c1f0a38955d29e30cd03.zip
Fixed Makefile for `make lint' dep. on config.h
Added -Txhtml for XHTML output (minimal increase to programme logic). Because groff has it and it bothers me that we don't.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/man_html.c b/man_html.c
index bebc0ac8..a9db1dfa 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.25 2010/01/01 17:14:28 kristaps Exp $ */
+/* $Id: man_html.c,v 1.26 2010/01/29 14:39:38 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -114,7 +114,7 @@ html_man(void *arg, const struct man *m)
h = (struct html *)arg;
- print_gen_doctype(h);
+ print_gen_decls(h);
t = print_otag(h, TAG_HTML, 0, NULL);
print_man(man_meta(m), man_node(m), h);