tsm: screen: remove obsolete comment

We correctly free all new space and this is really needed due to rotations
in the active screen and scrollback buffer.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
David Herrmann 2012-10-11 12:22:53 +02:00
parent 3c85ac9541
commit 77002ebf8b

View File

@ -618,11 +618,6 @@ int tsm_screen_resize(struct tsm_screen *con, unsigned int x,
}
}
/* When resizing, we need to reset all the new cells, otherwise, the old
* data that was written there will reoccur on the screen.
* TODO: we overwrite way to much here; most of it should already be
* cleaned. Maybe it does more sense cleaning when _allocating_ or when
* _shrinking_, then we never clean twice (for performance reasons). */
for (j = 0; j < con->line_num; ++j) {
if (j >= con->size_y)
i = 0;