Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/man/man3 Uppercase Dt argument, use \e for backslashes.



details:   https://anonhg.NetBSD.org/src/rev/4c0807ed52e8
branches:  trunk
changeset: 759883:4c0807ed52e8
user:      wiz <wiz%NetBSD.org@localhost>
date:      Sun Dec 19 08:56:17 2010 +0000

description:
Uppercase Dt argument, use \e for backslashes.

diffstat:

 share/man/man3/__alignof__.3 |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r f486005b89c4 -r 4c0807ed52e8 share/man/man3/__alignof__.3
--- a/share/man/man3/__alignof__.3      Sun Dec 19 08:32:33 2010 +0000
+++ b/share/man/man3/__alignof__.3      Sun Dec 19 08:56:17 2010 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: __alignof__.3,v 1.2 2010/12/19 08:14:03 jruoho Exp $
+.\" $NetBSD: __alignof__.3,v 1.3 2010/12/19 08:56:17 wiz Exp $
 .\"
 .\" Copyright (c) 2010 Jukka Ruohonen <jruohonen%iki.fi@localhost>
 .\" All rights reserved.
@@ -25,7 +25,7 @@
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
 .Dd December 19, 2010
-.Dt __alignof__ 3
+.Dt __ALIGNOF__ 3
 .Os
 .Sh NAME
 .Nm __alignof__
@@ -61,7 +61,7 @@
 If the architecture aligns integers along 32-bit address boundaries,
 the following should print the value 4.
 .Bd -literal -offset indent
-(void)printf(\*[q]%d\\n\*[q], __alignof__(int));
+(void)printf(\*[q]%d\en\*[q], __alignof__(int));
 .Ed
 .Pp
 On the other hand, the following example probably prints the value 1,
@@ -73,7 +73,7 @@
        char y;
 } a;
 
-(void)printf(\*[q]%d\\n\*[q], __alignof__(a.y));
+(void)printf(\*[q]%d\en\*[q], __alignof__(a.y));
 .Ed
 .Sh SEE ALSO
 .Xr gcc 1 ,



Home | Main Index | Thread Index | Old Index