From fdbfc7e3498e1cdd04e8df58aa1a937ee4d79caa Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 18 Jan 2013 02:16:21 +0000 Subject: Rather than having two grids for each pane, one for ASCII and one for UTF-8, collapse the two together. Simplifies the code at the expense of more memory (which can probably be reduced again later). --- format.c | 1 - 1 file changed, 1 deletion(-) (limited to 'format.c') diff --git a/format.c b/format.c index 0eeb622d..72c65c28 100644 --- a/format.c +++ b/format.c @@ -370,7 +370,6 @@ format_window_pane(struct format_tree *ft, struct window_pane *wp) for (i = 0; i < gd->hsize; i++) { gl = &gd->linedata[i]; size += gl->cellsize * sizeof *gl->celldata; - size += gl->utf8size * sizeof *gl->utf8data; } size += gd->hsize * sizeof *gd->linedata; -- cgit v1.2.3