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/vax | |
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/vax')
-rw-r--r-- | sys/arch/vax/qbus/qd.c | 5 | ||||
-rw-r--r-- | sys/arch/vax/uba/qv.c | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/sys/arch/vax/qbus/qd.c b/sys/arch/vax/qbus/qd.c index 515e516f926..5e9ec1cd481 100644 --- a/sys/arch/vax/qbus/qd.c +++ b/sys/arch/vax/qbus/qd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qd.c,v 1.5 2002/06/10 21:56:08 miod Exp $ */ +/* $OpenBSD: qd.c,v 1.6 2002/06/12 03:50:05 miod Exp $ */ /* $NetBSD: qd.c,v 1.17 2000/01/24 02:40:29 matt Exp $ */ /*- @@ -2924,9 +2924,6 @@ qdcnputc(dev, chr) return; blitc(0, (u_char)(chr & 0xff)); - if ((chr & 0177) == '\n') - blitc(0, '\r'); - } /* qdputc */ /* diff --git a/sys/arch/vax/uba/qv.c b/sys/arch/vax/uba/qv.c index 563d40c8b04..75fcc6f95e1 100644 --- a/sys/arch/vax/uba/qv.c +++ b/sys/arch/vax/uba/qv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qv.c,v 1.4 2000/11/10 15:33:09 provos Exp $ */ +/* $OpenBSD: qv.c,v 1.5 2002/06/12 03:50:10 miod Exp $ */ /* $NetBSD: qv.c,v 1.2 1996/09/02 06:44:28 mycroft Exp $ */ /*- @@ -981,8 +981,6 @@ qvputc(c) char c; { qvputchar(c); - if (c == '\n') - qvputchar('\r'); } /* |