diff options
author | 2017-01-21 01:20:29 +0000 | |
---|---|---|
committer | 2017-01-21 01:20:29 +0000 | |
commit | 0a282dff6b3692ed7afec3dbcb1b359e95930464 (patch) | |
tree | 4b62ed87352fec0a388e952d0c45942118866596 /usr.bin/mandoc/man_html.c | |
parent | _dl_exit() is __dead, so it should return void. (diff) | |
download | wireguard-openbsd-0a282dff6b3692ed7afec3dbcb1b359e95930464.tar.xz wireguard-openbsd-0a282dff6b3692ed7afec3dbcb1b359e95930464.zip |
clean up the remaining class attributes
Diffstat (limited to 'usr.bin/mandoc/man_html.c')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index 9837e787b2f..180bb96a382 100644 --- a/usr.bin/mandoc/man_html.c +++ b/usr.bin/mandoc/man_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_html.c,v 1.81 2017/01/20 23:50:59 schwarze Exp $ */ +/* $OpenBSD: man_html.c,v 1.82 2017/01/21 01:20:29 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -453,16 +453,16 @@ man_IP_pre(MAN_ARGS) const struct roff_node *nn; if (n->type == ROFFT_BODY) { - print_otag(h, TAG_DD, ""); + print_otag(h, TAG_DD, "c", "It-tag"); return 1; } else if (n->type != ROFFT_HEAD) { - print_otag(h, TAG_DL, ""); + print_otag(h, TAG_DL, "c", "Bl-tag"); return 1; } /* FIXME: width specification. */ - print_otag(h, TAG_DT, ""); + print_otag(h, TAG_DT, "c", "It-tag"); /* For IP, only print the first header element. */ |