diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-05-29 02:10:10 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-05-29 02:10:10 +0000 |
commit | d0c1ddfe7e86f4fcaa6d9e98355c6d85c96b7b46 (patch) | |
tree | 619f5150eb575b5626aae055760316a8fe672422 /html.c | |
parent | 33dfbe2c8901b3ef2e551abee6e31e92dd162fc3 (diff) | |
download | mandoc-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.c | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -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(); |