From 63853aa06999bf26dd9590b864989f4f3008e694 Mon Sep 17 00:00:00 2001 From: rsc Date: Sun, 17 Oct 2004 00:12:14 +0000 Subject: bug fix in Zerox arrow handling from rob --- src/cmd/acme/text.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cmd/acme') diff --git a/src/cmd/acme/text.c b/src/cmd/acme/text.c index 84e489f9..8aac0ac0 100644 --- a/src/cmd/acme/text.c +++ b/src/cmd/acme/text.c @@ -645,13 +645,13 @@ texttype(Text *t, Rune r) switch(r){ case Kleft: if(t->q0 > 0){ - textcommit(t, TRUE); + wincommit(t->w, t); textshow(t, t->q0-1, t->q0-1, TRUE); } return; case Kright: if(t->q1 < t->file->b.nc){ - textcommit(t, TRUE); + wincommit(t->w, t); textshow(t, t->q1+1, t->q1+1, TRUE); } return; -- cgit v1.2.3