diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-27 14:57:32 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-27 14:57:32 +0000 |
commit | ee52552f1ff3c270adf0cdcb37d6c4ac579b407c (patch) | |
tree | 127ae5dc41773b0721e70aa0f29e2c5780210989 /sys/arch | |
parent | b4d2f7c9aea930ba5aff786dd5acd998c14208c5 (diff) |
arrgh! (sigh) (*sniffle*)
Fix insert char to erase more than one char in the newly created empty
space past the insertion point.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/wscons/wscons_emul.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/alpha/wscons/wscons_emul.c b/sys/arch/alpha/wscons/wscons_emul.c index aafe9fb3d4b..ad208c90700 100644 --- a/sys/arch/alpha/wscons/wscons_emul.c +++ b/sys/arch/alpha/wscons/wscons_emul.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wscons_emul.c,v 1.6 1997/07/10 23:12:19 kstailey Exp $ */ +/* $OpenBSD: wscons_emul.c,v 1.7 1997/07/27 14:57:31 kstailey Exp $ */ /* $NetBSD: wscons_emul.c,v 1.7 1996/11/19 05:23:13 cgd Exp $ */ /* @@ -364,9 +364,11 @@ wscons_emul_docontrol(we, c) (*we->ac_ef->wef_erasecols)(we->ac_efa, we->ac_crow, we->ac_ccol, - we->ac_ncol - (we->ac_ccol + copy_ncols)); + copy_ncols - we->ac_ccol); } break; + case 'm': /* video attributes */ + break; } } |