diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-06-12 03:50:11 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-06-12 03:50:11 +0000 |
commit | 4fb24fe6958a3be077dfb9d8c25c9d772c8eb6cf (patch) | |
tree | 2943832f112de5b52b072492e59fec95c70b5160 /sys/arch/mvme88k/dev/cl.c | |
parent | 276a58d2aab250fb358c21f43fbefc77fba654bf (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/mvme88k/dev/cl.c')
-rw-r--r-- | sys/arch/mvme88k/dev/cl.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/mvme88k/dev/cl.c b/sys/arch/mvme88k/dev/cl.c index 38fd995aa74..0d15542f16e 100644 --- a/sys/arch/mvme88k/dev/cl.c +++ b/sys/arch/mvme88k/dev/cl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cl.c,v 1.25 2002/06/11 05:13:39 miod Exp $ */ +/* $OpenBSD: cl.c,v 1.26 2002/06/12 03:49:56 miod Exp $ */ /* * Copyright (c) 1995 Dale Rahn. All rights reserved. @@ -1064,10 +1064,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); } |