diff options
author | 2018-06-25 13:26:53 +0000 | |
---|---|---|
committer | 2018-06-25 13:26:53 +0000 | |
commit | d416c091c7d878d98b1709f1c169d898e9070d8f (patch) | |
tree | 66bf24283ad1be24d5361c4bec96e2782e512d33 | |
parent | For -man -Thtml, ignore author-specified .HP widths because they (diff) | |
download | wireguard-openbsd-d416c091c7d878d98b1709f1c169d898e9070d8f.tar.xz wireguard-openbsd-d416c091c7d878d98b1709f1c169d898e9070d8f.zip |
Delete support for the style=text-indent attribute, which is no longer used.
-rw-r--r-- | usr.bin/mandoc/html.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/mandoc/html.c b/usr.bin/mandoc/html.c index 7e80067c6b5..108d692dfe2 100644 --- a/usr.bin/mandoc/html.c +++ b/usr.bin/mandoc/html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: html.c,v 1.103 2018/06/18 01:49:12 schwarze Exp $ +/* $OpenBSD: html.c,v 1.104 2018/06/25 13:26:53 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2011-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org> @@ -712,9 +712,6 @@ print_otag(struct html *h, enum htmltag tag, const char *fmt, ...) case 'h': attr = "height"; break; - case 'i': - attr = "text-indent"; - break; case 'l': attr = "margin-left"; break; |