Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/share/man/man3 Fix formatting error.
details: https://anonhg.NetBSD.org/src/rev/423a68414cd9
branches: trunk
changeset: 486726:423a68414cd9
user: mycroft <mycroft%NetBSD.org@localhost>
date: Sat May 27 22:29:03 2000 +0000
description:
Fix formatting error.
diffstat:
share/man/man3/queue.3 | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r 40acb5617c8b -r 423a68414cd9 share/man/man3/queue.3
--- a/share/man/man3/queue.3 Sat May 27 22:27:33 2000 +0000
+++ b/share/man/man3/queue.3 Sat May 27 22:29:03 2000 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: queue.3,v 1.12 2000/05/27 22:27:34 mycroft Exp $
+.\" $NetBSD: queue.3,v 1.13 2000/05/27 22:29:03 mycroft Exp $
.\"
.\" Copyright (c) 1993 The Regents of the University of California.
.\" All rights reserved.
@@ -369,7 +369,7 @@
LIST_REMOVE(LIST_FIRST(&head), entries);
/* Test for emptiness. */
if (LIST_EMPTY(&head))
- printf("nothing to do\n");
+ printf("nothing to do\\n");
.Ed
.Sh SIMPLE QUEUES
A simple queue is headed by a structure defined by the
@@ -491,7 +491,7 @@
SIMPLEQ_REMOVE_HEAD(&head, SIMPLEQ_FIRST(&head), entries);
/* Test for emptiness. */
if (SIMPLEQ_EMPTY(&head))
- printf("nothing to do\n");
+ printf("nothing to do\\n");
.Ed
.Sh TAIL QUEUES
A tail queue is headed by a structure defined by the
@@ -625,7 +625,7 @@
TAILQ_REMOVE(&head, TAILQ_FIRST(&head), entries);
/* Test for emptiness. */
if (TAILQ_EMPTY(&head))
- printf("nothing to do\n");
+ printf("nothing to do\\n");
.Ed
.Sh CIRCULAR QUEUES
A circular queue is headed by a structure defined by the
@@ -774,7 +774,7 @@
CIRCLEQ_REMOVE(&head, CIRCLEQ_HEAD(&head), entries);
/* Test for emptiness. */
if (CIRCLEQ_EMPTY(&head))
- printf("nothing to do\n");
+ printf("nothing to do\\n");
.Ed
.Sh HISTORY
The
Home |
Main Index |
Thread Index |
Old Index