summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-06-12 03:50:11 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-06-12 03:50:11 +0000
commit4fb24fe6958a3be077dfb9d8c25c9d772c8eb6cf (patch)
tree2943832f112de5b52b072492e59fec95c70b5160 /sys/arch/mvme68k
parent276a58d2aab250fb358c21f43fbefc77fba654bf (diff)
cnputc() will take care of the necessary cr->cr/lf translation, so don't
do it in those consoles either.
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r--sys/arch/mvme68k/dev/bugtty.c4
-rw-r--r--sys/arch/mvme68k/dev/cl.c6
2 files changed, 2 insertions, 8 deletions
diff --git a/sys/arch/mvme68k/dev/bugtty.c b/sys/arch/mvme68k/dev/bugtty.c
index 89473d018c0..c5a4556ddb0 100644
--- a/sys/arch/mvme68k/dev/bugtty.c
+++ b/sys/arch/mvme68k/dev/bugtty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bugtty.c,v 1.7 2002/04/27 23:21:05 miod Exp $ */
+/* $OpenBSD: bugtty.c,v 1.8 2002/06/12 03:49:53 miod Exp $ */
/*
* Copyright (c) 1995 Dale Rahn.
@@ -497,7 +497,5 @@ bugttycnputc(dev, c)
dev_t dev;
char c;
{
- if (c == '\n')
- bug_outchr('\r');
bug_outchr(c);
}
diff --git a/sys/arch/mvme68k/dev/cl.c b/sys/arch/mvme68k/dev/cl.c
index cb08bdbab7e..af9c4de7c7c 100644
--- a/sys/arch/mvme68k/dev/cl.c
+++ b/sys/arch/mvme68k/dev/cl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cl.c,v 1.27 2002/06/11 05:13:39 miod Exp $ */
+/* $OpenBSD: cl.c,v 1.28 2002/06/12 03:49:54 miod Exp $ */
/*
* Copyright (c) 1995 Dale Rahn. All rights reserved.
@@ -1080,10 +1080,6 @@ clcnputc(dev, c)
dev_t dev;
u_char c;
{
- /* is this the correct location for the cr -> cr/lf tranlation? */
- if (c == '\n')
- clputc(0, 0, '\r');
-
clputc(0, 0, c);
}