aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-05-17 11:19:45 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-05-17 11:19:45 +0000
commit200e43749bd89f28c28647ce1c2736de721d6de8 (patch)
tree8d3333e0d4d73c16a084a7c892e1ba7f4bd5b31f /man_html.c
parent889ec81be9fc9523bf29226bdb259eb9e5d5154f (diff)
downloadmandoc-200e43749bd89f28c28647ce1c2736de721d6de8.tar.gz
mandoc-200e43749bd89f28c28647ce1c2736de721d6de8.tar.zst
mandoc-200e43749bd89f28c28647ce1c2736de721d6de8.zip
Clean-ups in -T[x]html: inline print_num(), as it was just a single
conditional; same for print_xmltype() and print_doctype(), same reason; make bufncat() be static, as it was only being called from html.c; have bufcat() simply call through to strlcat(). Finally, assert() whenever we truncate. Also rename buffmt() -> bufcat_fmt() to differentiate from buffmt_man et al., which do not concatenate.
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 610e58fd..d9c2cd31 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.70 2011/03/07 01:35:51 schwarze Exp $ */
+/* $Id: man_html.c,v 1.71 2011/05/17 11:19:45 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -158,7 +158,7 @@ print_man_head(MAN_ARGS)
print_gen_head(h);
bufinit(h);
- buffmt(h, "%s(%s)", m->title, m->msec);
+ bufcat_fmt(h, "%s(%s)", m->title, m->msec);
print_otag(h, TAG_TITLE, 0, NULL);
print_text(h, h->buf);