From 784cbea637efc301b2dfb6bf93b3a522d450cfed Mon Sep 17 00:00:00 2001 From: nick black Date: Tue, 26 Nov 2019 03:00:54 -0500 Subject: [PATCH] kill obsolete FIXME --- src/lib/notcurses.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/notcurses.c b/src/lib/notcurses.c index ac8f9ba41..e9d01bbc6 100644 --- a/src/lib/notcurses.c +++ b/src/lib/notcurses.c @@ -889,8 +889,6 @@ int ncplane_box(ncplane* n, const cell* ul, const cell* ur, } void ncplane_erase(ncplane* n){ - // FIXME if we've been shrunk since creation, and haven't explicitly resized, - // what happens here...? memset(n->fb, 0, sizeof(*n->fb) * n->lenx * n->leny); egcpool_dump(&n->pool); egcpool_init(&n->pool);