diff options
author | 2017-05-08 15:33:43 +0000 | |
---|---|---|
committer | 2017-05-08 15:33:43 +0000 | |
commit | 11d70615da8995731d12d90b59e0f147f302755b (patch) | |
tree | ce355d0a11e5dcf49c0a0fb8616f35e326c5c6ac /usr.bin/mandoc/roff_html.c | |
parent | Fix exponential CPU use with repeated '*' operators by changing '*' (diff) | |
download | wireguard-openbsd-11d70615da8995731d12d90b59e0f147f302755b.tar.xz wireguard-openbsd-11d70615da8995731d12d90b59e0f147f302755b.zip |
Basic implementation of the roff(7) .ti (temporary indent) request.
Needed by about four dozen ports (thanks to naddy@ for the research).
Diffstat (limited to 'usr.bin/mandoc/roff_html.c')
-rw-r--r-- | usr.bin/mandoc/roff_html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/roff_html.c b/usr.bin/mandoc/roff_html.c index 7778d94c433..a031d98aeac 100644 --- a/usr.bin/mandoc/roff_html.c +++ b/usr.bin/mandoc/roff_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roff_html.c,v 1.4 2017/05/07 17:30:58 schwarze Exp $ */ +/* $OpenBSD: roff_html.c,v 1.5 2017/05/08 15:33:43 schwarze Exp $ */ /* * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -37,6 +37,7 @@ static const roff_html_pre_fp roff_html_pre_acts[ROFF_MAX] = { NULL, /* ll */ roff_html_pre_sp, /* sp */ NULL, /* ta */ + NULL, /* ti */ }; |