diff options
author | 2010-02-18 13:13:39 +0000 | |
---|---|---|
committer | 2010-02-18 13:13:39 +0000 | |
commit | 91e463ba75a67dec356d142bd103105a7b5c4e8f (patch) | |
tree | 2715c62c28b610fc84aac88ab023dd9a57909f7a /lib/libc | |
parent | Each .Bk must be closed by .Ek. (diff) | |
download | wireguard-openbsd-91e463ba75a67dec356d142bd103105a7b5c4e8f.tar.xz wireguard-openbsd-91e463ba75a67dec356d142bd103105a7b5c4e8f.zip |
Every .Bl requires .It, even when using -column.
Found by and unbreaking the build with mandoc(1).
While here, properly escape blanks inside columns
and use "backslash" instead of "back slash".
OK jmc@
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/getcap.3 | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lib/libc/gen/getcap.3 b/lib/libc/gen/getcap.3 index 6640c994915..f113332fa0c 100644 --- a/lib/libc/gen/getcap.3 +++ b/lib/libc/gen/getcap.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getcap.3,v 1.31 2007/05/31 19:19:28 jmc Exp $ +.\" $OpenBSD: getcap.3,v 1.32 2010/02/18 13:13:39 schwarze Exp $ .\" .\" Copyright (c) 1992, 1993 .\" The Regents of the University of California. All rights reserved. @@ -30,7 +30,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: February 18 2010 $ .Dt GETCAP 3 .Os .Sh NAME @@ -471,17 +471,17 @@ Non-printable codes, new lines, and colons may be conveniently represented by the use of escape sequences: .Bl -column "\e\|X,X\e\|X" "(ASCII octal nnn)" -offset indent -^X ('\fIX\fP' & 037) control-\fIX\fP -\e\|b, \e\|B (ASCII 010) backspace -\e\|t, \e\|T (ASCII 011) tab -\e\|n, \e\|N (ASCII 012) line feed (newline) -\e\|f, \e\|F (ASCII 014) form feed -\e\|r, \e\|R (ASCII 015) carriage return -\e\|e, \e\|E (ASCII 027) escape -\e\|c, \e\|C (:) colon -\e\|\e (\e\|) back slash -\e\|^ (^) caret -\e\|\fInnn\fP (ASCII octal \fInnn\fP) +.It ^X ('\fIX\fP'\~&\~037) control-\fIX\fP +.It \e\|b,\~\e\|B (ASCII\~010) backspace +.It \e\|t,\~\e\|T (ASCII\~011) tab +.It \e\|n,\~\e\|N (ASCII\~012) line\~feed\~(newline) +.It \e\|f,\~\e\|F (ASCII\~014) form\~feed +.It \e\|r,\~\e\|R (ASCII\~015) carriage\~return +.It \e\|e,\~\e\|E (ASCII\~027) escape +.It \e\|c,\~\e\|C (:) colon +.It \e\|\e (\e\|) backslash +.It \e\|^ (^) caret +.It \e\|\fInnn\fP (ASCII\~octal\~\fInnn\fP) .El .Pp A |