From 81c30b5a75cb5ae9a5175321a5f8a6049f0ac4e3 Mon Sep 17 00:00:00 2001 From: Sean McKean Date: Thu, 17 Nov 2011 14:46:14 -0500 Subject: acme: fix arrow near end of text R=rsc CC=plan9port.codebot http://codereview.appspot.com/5399050 --- src/cmd/acme/text.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/cmd') diff --git a/src/cmd/acme/text.c b/src/cmd/acme/text.c index 57fd8212..3c08cd64 100644 --- a/src/cmd/acme/text.c +++ b/src/cmd/acme/text.c @@ -671,16 +671,14 @@ texttype(Text *t, Rune r) rp = &r; switch(r){ case Kleft: - if(t->q0 > 0){ - typecommit(t); + typecommit(t); + if(t->q0 > 0) textshow(t, t->q0-1, t->q0-1, TRUE); - } return; case Kright: - if(t->q1 < t->file->b.nc){ - typecommit(t); + typecommit(t); + if(t->q1 < t->file->b.nc) textshow(t, t->q1+1, t->q1+1, TRUE); - } return; case Kdown: if(t->what == Tag) -- cgit v1.2.3