plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 25e0e4f334bd645f8d97de1ed5a77016797939dc
parent 2308413372f06b00b4561eae30ce1192402603ce
Author: rsc <devnull@localhost>
Date:   Fri, 26 Mar 2004 17:15:57 +0000

.

Diffstat:
MCHANGES | 8++++++++
Msrc/cmd/acme/text.c | 2+-
2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/CHANGES b/CHANGES @@ -1,3 +1,11 @@ +March 26, 2004 + + Fix 9term chording paste bug reported by Sam. + + Fix libdraw resize bug reported by Axel Belinfante. + + + March 25, 2004 diff --git a/src/cmd/acme/text.c b/src/cmd/acme/text.c @@ -84,7 +84,7 @@ textresize(Text *t, Rectangle r) t->lastsr = nullrect; r.min.x += Scrollwid+Scrollgap; frclear(&t->fr, 0); - textredraw(t, r, t->fr.font, t->fr.b, odx); + textredraw(t, r, t->fr.font, screen, odx); return r.max.y; }