Enforce history-limit option when clearing the screen, memory leak

spotted by R I Pienaar.
pull/1/head
Nicholas Marriott 2012-01-29 21:31:11 +00:00
parent 230d0fbc9e
commit 937173ff11
1 changed files with 3 additions and 1 deletions

View File

@ -94,8 +94,10 @@ grid_view_clear_history(struct grid *gd)
return;
/* Scroll the lines into the history. */
for (yy = 0; yy < last; yy++)
for (yy = 0; yy < last; yy++) {
grid_collect_history(gd);
grid_scroll_history(gd);
}
}
/* Clear area. */