summaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-05-29 02:10:10 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-05-29 02:10:10 +0000
commitd0c1ddfe7e86f4fcaa6d9e98355c6d85c96b7b46 (patch)
tree619f5150eb575b5626aae055760316a8fe672422 /html.c
parent33dfbe2c8901b3ef2e551abee6e31e92dd162fc3 (diff)
downloadmandoc-d0c1ddfe7e86f4fcaa6d9e98355c6d85c96b7b46.tar.gz
Delete support for the print_otag(sw) * and - modifiers,
which are no longer used because we write fewer style= attributes.
Diffstat (limited to 'html.c')
-rw-r--r--html.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/html.c b/html.c
index 8543a635..432b6d09 100644
--- a/html.c
+++ b/html.c
@@ -694,12 +694,6 @@ print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)
su = &mysu;
a2width(arg2, su);
}
- if (*fmt == '*') {
- if (su != NULL && su->unit == SCALE_EN &&
- su->scale > 5.9 && su->scale < 6.1)
- su = NULL;
- fmt++;
- }
if (*fmt == '+') {
if (su != NULL) {
/* Make even bold text fit. */
@@ -709,11 +703,6 @@ print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)
}
fmt++;
}
- if (*fmt == '-') {
- if (su != NULL)
- su->scale *= -1.0;
- fmt++;
- }
break;
default:
abort();