Source-Changes-HG archive

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

[src/trunk]: src Remove \*[q] -- not necessary, just use plain double quotes ...



details:   https://anonhg.NetBSD.org/src/rev/9ccbd40bf7c2
branches:  trunk
changeset: 764763:9ccbd40bf7c2
user:      wiz <wiz%NetBSD.org@localhost>
date:      Tue May 03 09:36:24 2011 +0000

description:
Remove \*[q] -- not necessary, just use plain double quotes instead.

diffstat:

 lib/libc/stdlib/div.3 |   4 ++--
 share/man/man4/acpi.4 |  16 ++++++++--------
 2 files changed, 10 insertions(+), 10 deletions(-)

diffs (49 lines):

diff -r 2e031dcd320f -r 9ccbd40bf7c2 lib/libc/stdlib/div.3
--- a/lib/libc/stdlib/div.3     Tue May 03 09:15:20 2011 +0000
+++ b/lib/libc/stdlib/div.3     Tue May 03 09:36:24 2011 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: div.3,v 1.13 2011/04/13 07:12:52 jruoho Exp $
+.\"    $NetBSD: div.3,v 1.14 2011/05/03 09:36:24 wiz Exp $
 .\"
 .\" Copyright (c) 1990, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -76,7 +76,7 @@
 
 d = div(a, b);
 
-(void)printf(\*[q]%d %d\en\*[q], d.quot, d.rem);
+(void)printf("%d %d\en", d.quot, d.rem);
 .Ed
 .Sh SEE ALSO
 .Xr fast_divide32 3 ,
diff -r 2e031dcd320f -r 9ccbd40bf7c2 share/man/man4/acpi.4
--- a/share/man/man4/acpi.4     Tue May 03 09:15:20 2011 +0000
+++ b/share/man/man4/acpi.4     Tue May 03 09:36:24 2011 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: acpi.4,v 1.69 2011/01/17 21:56:38 jruoho Exp $
+.\" $NetBSD: acpi.4,v 1.70 2011/05/03 09:36:24 wiz Exp $
 .\"
 .\" Copyright (c) 2002, 2004, 2010 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -31,14 +31,14 @@
 .Nm acpi
 .Nd Advanced Configuration and Power Interface
 .Sh SYNOPSIS
-.Cd "acpi0     at mainbus0"
+.Cd acpi0      at mainbus0
 .Pp
-.Cd "options   ACPI_DEBUG"
-.Cd "options   ACPIVERBOSE"
-.Cd "options   ACPI_ACTIVATE_DEV"
-.Cd "options   ACPI_DSDT_OVERRIDE"
-.Cd "options   ACPI_DSDT_FILE=\*[q]\*[q]"
-.Cd "options   ACPI_BLACKLIST_YEAR=2000"
+.Cd options    ACPI_DEBUG
+.Cd options    ACPIVERBOSE
+.Cd options    ACPI_ACTIVATE_DEV
+.Cd options    ACPI_DSDT_OVERRIDE
+.Cd options    ACPI_DSDT_FILE=""
+.Cd options    ACPI_BLACKLIST_YEAR=2000
 .Sh DESCRIPTION
 .Nx
 provides machine-independent bus support for



Home | Main Index | Thread Index | Old Index