summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/dev/cl.c
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/dev/cl.c
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/dev/cl.c')
-rw-r--r--sys/arch/mvme68k/dev/cl.c6
1 files changed, 1 insertions, 5 deletions
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);
}