diff options
author | 2018-05-20 23:54:15 +0000 | |
---|---|---|
committer | 2018-05-20 23:54:15 +0000 | |
commit | d4430aa5667fe4300dae737dfadd8cecf8dee2f9 (patch) | |
tree | 8e229604573f8a09e33bd14862401f2d8953e641 /usr.bin/mandoc/mdoc_html.c | |
parent | various minor improvements (diff) | |
download | wireguard-openbsd-d4430aa5667fe4300dae737dfadd8cecf8dee2f9.tar.xz wireguard-openbsd-d4430aa5667fe4300dae737dfadd8cecf8dee2f9.zip |
Use <span> rather than abusing <i> for .Pa;
suggested by John Gardner <gardnerjohng at gmail dot com>.
Diffstat (limited to 'usr.bin/mandoc/mdoc_html.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_html.c b/usr.bin/mandoc/mdoc_html.c index fada6019855..fec15a143d6 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.175 2018/05/09 00:45:33 schwarze Exp $ */ +/* $OpenBSD: mdoc_html.c,v 1.176 2018/05/20 23:54:15 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org> @@ -977,7 +977,7 @@ mdoc_bd_pre(MDOC_ARGS) static int mdoc_pa_pre(MDOC_ARGS) { - print_otag(h, TAG_I, "cT", "Pa"); + print_otag(h, TAG_SPAN, "cT", "Pa"); return 1; } |