diff options
author | 2019-04-21 22:43:00 +0000 | |
---|---|---|
committer | 2019-04-21 22:43:00 +0000 | |
commit | 7dd0ff50ed2fd868e5053d0c9cfbb452aad527ff (patch) | |
tree | 7f2ebfab4e881a79f5bca8304cb122a4e0e08452 /share/man/man7 | |
parent | Add error checking to i2v_AUTHORITY_KEYID(), i2v_GENERAL_NAME() (diff) | |
download | wireguard-openbsd-7dd0ff50ed2fd868e5053d0c9cfbb452aad527ff.tar.xz wireguard-openbsd-7dd0ff50ed2fd868e5053d0c9cfbb452aad527ff.zip |
Implement the roff .break request (break out of a .while loop).
Jan Stary <hans at stare dot cz> found it in an ancient groffer(1)
manual page (version 1.19) on MacOS X Mojave.
Having .break not implemented wasn't a particularly bright idea
because obviously, it tended to cause infinite loops.
Diffstat (limited to 'share/man/man7')
-rw-r--r-- | share/man/man7/roff.7 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/share/man/man7/roff.7 b/share/man/man7/roff.7 index f6806d2bce8..c380510768d 100644 --- a/share/man/man7/roff.7 +++ b/share/man/man7/roff.7 @@ -1,4 +1,4 @@ -.\" $OpenBSD: roff.7,v 1.91 2019/01/01 03:44:48 schwarze Exp $ +.\" $OpenBSD: roff.7,v 1.92 2019/04/21 22:43:00 schwarze Exp $ .\" .\" Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv> .\" Copyright (c) 2010-2019 Ingo Schwarze <schwarze@openbsd.org> @@ -15,7 +15,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: January 1 2019 $ +.Dd $Mdocdate: April 21 2019 $ .Dt ROFF 7 .Os .Sh NAME @@ -503,10 +503,9 @@ This is a Heirloom extension and currently unsupported. .It Ic \&br Break the output line. .It Ic \&break -Break out of a +Break out of the innermost .Ic \&while loop. -Currently unsupported. .It Ic \&breakchar Ar char ... Optional line break characters. This is a Heirloom extension and currently ignored. |