diff options
author | Anthony J. Bentley <bentley@cvs.openbsd.org> | 2015-02-28 21:51:58 +0000 |
---|---|---|
committer | Anthony J. Bentley <bentley@cvs.openbsd.org> | 2015-02-28 21:51:58 +0000 |
commit | eff3ed99ef2bccae897c58214bda6e54d4ce0d3b (patch) | |
tree | 70f6f5748253b248a299b246ff1440902144ff2a /lib/libc/sys/socket.2 | |
parent | b1c3f450e8d0a18f3dac514bec9232ba1d0392b3 (diff) |
Reduce usage of predefined strings in manpages.
Predefined strings are not very portable across troff implementations,
and they make the source much harder to read. Usually the intended
character can be written directly.
No output changes, except for two instances where the incorrect escape
was used in the first place.
tweaks + ok schwarze@
Diffstat (limited to 'lib/libc/sys/socket.2')
-rw-r--r-- | lib/libc/sys/socket.2 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/sys/socket.2 b/lib/libc/sys/socket.2 index 10f48fe68a7..cb62cb4c5f6 100644 --- a/lib/libc/sys/socket.2 +++ b/lib/libc/sys/socket.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: socket.2,v 1.38 2014/08/31 01:42:36 guenther Exp $ +.\" $OpenBSD: socket.2,v 1.39 2015/02/28 21:51:57 bentley Exp $ .\" $NetBSD: socket.2,v 1.5 1995/02/27 12:37:53 cgd Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)socket.2 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: August 31 2014 $ +.Dd $Mdocdate: February 28 2015 $ .Dt SOCKET 2 .Os .Sh NAME @@ -114,7 +114,8 @@ Normally only a single protocol exists to support a particular socket type within a given protocol family. However, it is possible that many protocols may exist, in which case a particular protocol must be specified in this manner. -The protocol number to use is particular to the \*(lqcommunication domain\*(rq +The protocol number to use is particular to the +.Dq communication domain in which communication is to take place; see .Xr protocols 5 . A value of 0 for |