summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/mdoc_html.c
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2018-05-21 01:10:06 +0000
committerschwarze <schwarze@openbsd.org>2018-05-21 01:10:06 +0000
commitdd6ffdfc34db3eee94f927915c851f92c27c7129 (patch)
tree8620159f932a7375a3bd4c975ae94ff8e920dcd6 /usr.bin/mandoc/mdoc_html.c
parentUse <span> for .Ad rather than <i>; also suggested by John Gardner. (diff)
downloadwireguard-openbsd-dd6ffdfc34db3eee94f927915c851f92c27c7129.tar.xz
wireguard-openbsd-dd6ffdfc34db3eee94f927915c851f92c27c7129.zip
Use <span> for .Ms rather than <b>; discussed with John Gardner.
Diffstat (limited to 'usr.bin/mandoc/mdoc_html.c')
-rw-r--r--usr.bin/mandoc/mdoc_html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_html.c b/usr.bin/mandoc/mdoc_html.c
index 54c5cd92958..072dcb0df64 100644
--- a/usr.bin/mandoc/mdoc_html.c
+++ b/usr.bin/mandoc/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mdoc_html.c,v 1.177 2018/05/21 00:29:41 schwarze Exp $ */
+/* $OpenBSD: mdoc_html.c,v 1.178 2018/05/21 01:10:06 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -1461,7 +1461,7 @@ mdoc_ms_pre(MDOC_ARGS)
if ((id = cond_id(n)) != NULL)
print_otag(h, TAG_A, "chR", "permalink", id);
- print_otag(h, TAG_B, "cTi", "Ms", id);
+ print_otag(h, TAG_SPAN, "cTi", "Ms", id);
free(id);
return 1;
}