diff options
author | mpp <mpp@FreeBSD.org> | 1997-01-31 01:06:39 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 1997-01-31 01:06:39 +0000 |
commit | e4bf464ad37d9f2de46a26e880e9ea87e0864485 (patch) | |
tree | 5e5eaff7cbd921f7d83aa13f874592a54fcdc8e2 /lib | |
parent | 6732dc36758c1777dfcb97ff7fc7aefc09c12c45 (diff) | |
download | FreeBSD-src-e4bf464ad37d9f2de46a26e880e9ea87e0864485.zip FreeBSD-src-e4bf464ad37d9f2de46a26e880e9ea87e0864485.tar.gz |
Don't use hardcoded *roff font change requests.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/getcap.3 | 4 | ||||
-rw-r--r-- | lib/libc/sys/fcntl.2 | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/libc/gen/getcap.3 b/lib/libc/gen/getcap.3 index 7e5cdb1..c9d86ae 100644 --- a/lib/libc/gen/getcap.3 +++ b/lib/libc/gen/getcap.3 @@ -445,7 +445,7 @@ String capability values may contain any character. 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)" -^X ('\fIX\fP' & 037) control-\fIX\fP +^X ('X' & 037) control-X \e\|b, \e\|B (ASCII 010) backspace \e\|t, \e\|T (ASCII 011) tab \e\|n, \e\|N (ASCII 012) line feed (newline) @@ -455,7 +455,7 @@ of escape sequences: \e\|c, \e\|C (:) colon \e\|\e (\e\|) back slash \e\|^ (^) caret -\e\|\fInnn\fP (ASCII octal \fInnn\fP) +\e\|nnn (ASCII octal nnn) .El .Pp A `\|\e' may be followed by up to three octal digits directly specifies diff --git a/lib/libc/sys/fcntl.2 b/lib/libc/sys/fcntl.2 index b43494d..877e830 100644 --- a/lib/libc/sys/fcntl.2 +++ b/lib/libc/sys/fcntl.2 @@ -290,7 +290,9 @@ locks conflicts with the type specified in the request. This interface follows the completely stupid semantics of System V and .St -p1003.1-88 that require that all locks associated with a file for a given process are -removed when \fIany\fP file descriptor for that file is closed by that process. +removed when +.Em any +file descriptor for that file is closed by that process. This semantic means that applications must be aware of any files that a subroutine library may access. For example if an application for updating the password file locks the |