diff options
author | 2011-04-17 11:54:54 +0000 | |
---|---|---|
committer | 2011-04-17 11:54:54 +0000 | |
commit | 9dc82a7f209088f3586d5be5c45f53b1a2937466 (patch) | |
tree | ad16c33c7e9daf270de2a990e85dd422601c7368 | |
parent | a structure describing an envelope should be called struct envelope, not (diff) | |
download | wireguard-openbsd-9dc82a7f209088f3586d5be5c45f53b1a2937466.tar.xz wireguard-openbsd-9dc82a7f209088f3586d5be5c45f53b1a2937466.zip |
The semantics of .Bk was described incorrectly
for the case of multiple sibling macros on a single input line.
Issue found investigating a question from sobrado@.
"I like this diff" kristaps@
-rw-r--r-- | share/man/man7/mdoc.7 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/share/man/man7/mdoc.7 b/share/man/man7/mdoc.7 index ded74931214..eda6f6ee15e 100644 --- a/share/man/man7/mdoc.7 +++ b/share/man/man7/mdoc.7 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mdoc.7,v 1.66 2011/03/07 01:35:33 schwarze Exp $ +.\" $OpenBSD: mdoc.7,v 1.67 2011/04/17 11:54:54 schwarze Exp $ .\" .\" Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> .\" Copyright (c) 2010 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: March 7 2011 $ +.Dd $Mdocdate: April 17 2011 $ .Dt MDOC 7 .Os .Sh NAME @@ -1152,8 +1152,9 @@ See also and .Sx \&Sy . .Ss \&Bk -Keep the output generated from each macro input line together -on one single output line. +For each macro, keep its output together on the same output line, +until the end of the macro or the end of the input line is reached, +whichever comes first. Line breaks in free-form text lines are unaffected. The syntax is as follows: .Pp |