summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/version.h2
-rw-r--r--man/1/calc4
-rw-r--r--man/10/ar4
-rw-r--r--man/2/bloomfilter2
-rw-r--r--man/2/dial8
-rw-r--r--man/2/itslib2
6 files changed, 11 insertions, 11 deletions
diff --git a/include/version.h b/include/version.h
index 54f3a53c..bbb59e2b 100644
--- a/include/version.h
+++ b/include/version.h
@@ -1 +1 @@
-#define VERSION "Fourth Edition (20090217)"
+#define VERSION "Fourth Edition (20090219)"
diff --git a/man/1/calc b/man/1/calc
index bbcd6f0e..04543195 100644
--- a/man/1/calc
+++ b/man/1/calc
@@ -261,8 +261,8 @@ fn ack(a, b)
for(i = 0; i < 4; i++)
for(j = 0; j < 4; j++){
n = 0
- print "ack(", i, ",", j, ")=", ack(i, j), "\n"
- print n, " calls", "\n"
+ print "ack(", i, ",", j, ")=", ack(i, j), "\en"
+ print n, " calls", "\en"
}
.EE
.SH SOURCE
diff --git a/man/10/ar b/man/10/ar
index 2c28f550..1ef1fa51 100644
--- a/man/10/ar
+++ b/man/10/ar
@@ -22,10 +22,10 @@ include file are:
.IP
.EX
.ec %
-#define ARMAG "!<arch>\n"
+#define ARMAG "!<arch>\en"
#define SARMAG 8
-#define ARFMAG "`\n"
+#define ARFMAG "`\en"
struct ar_hdr {
char name[16];
diff --git a/man/2/bloomfilter b/man/2/bloomfilter
index fe6046dd..8049fd63 100644
--- a/man/2/bloomfilter
+++ b/man/2/bloomfilter
@@ -81,7 +81,7 @@ the probability of a false positive would be
approximately 0.0063.
.EX
if(filter(array of byte s, 7, 6).X(A&~B, f).eq(None))
- sys->print("'%s' might be a member of f\\n", s);
+ sys->print("'%s' might be a member of f\en", s);
.EE
.SH SOURCE
.B /appl/lib/bloomfilter.b
diff --git a/man/2/dial b/man/2/dial
index b6c76e19..2398c17b 100644
--- a/man/2/dial
+++ b/man/2/dial
@@ -298,16 +298,16 @@ listener()
{
ac := dial->announce("tcp!*!9995");
if(ac == nil){
- sys->print("can't announce: %r\n");
+ sys->print("can't announce: %r\en");
exit;
}
for(;;){
lc := dial->listen(ac);
if(lc == nil){
- sys->print("listen: %r\n");
+ sys->print("listen: %r\en");
exit;
}
- sys->print("incoming: %s\n", hd ctext(lc));
+ sys->print("incoming: %s\en", hd ctext(lc));
spawn client(lc);
}
}
@@ -316,7 +316,7 @@ client(c: ref Connection)
{
dfd := dial->accept(c);
if(dfd == nil){
- sys->print("%s: can't accept: %r\n", c.dir);
+ sys->print("%s: can't accept: %r\en", c.dir);
exit;
}
buf := array[Sys->ATOMICIO] of byte;
diff --git a/man/2/itslib b/man/2/itslib
index 4b12bcd6..a1f62b49 100644
--- a/man/2/itslib
+++ b/man/2/itslib
@@ -92,7 +92,7 @@ init(ctxt: ref Draw->Context, argv: list of string)
report(sev: int, verb: int, msg: string)
{
if (tconf != nil) tconf.report(sev, verb, msg);
- else sys->print("%d:%s\n", sev, msg);
+ else sys->print("%d:%s\en", sev, msg);
}
.EE