From ed47a65afccbe7967f610b93df64bc9ff4a7323a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 26 Feb 2021 09:25:17 +0100 Subject: [PATCH] =?UTF-8?q?csi:=20remove=20extra=20=E2=80=98;=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- grid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grid.c b/grid.c index f1391bfa..b9dc37b1 100644 --- a/grid.c +++ b/grid.c @@ -39,7 +39,7 @@ grid_snapshot(const struct grid *grid) clone_row->cells = xmalloc(grid->num_cols * sizeof(clone_row->cells[0])); clone_row->linebreak = row->linebreak; - clone_row->dirty = row->dirty;; + clone_row->dirty = row->dirty; for (int c = 0; c < grid->num_cols; c++) { clone_row->cells[c] = row->cells[c];