From 609c9bd0ac8fd61a97b23b033a413f9ca71276a4 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 25 Jan 2021 17:23:17 -0500 Subject: Do not copy time to wrapped lines --- buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buffer.c b/buffer.c index 41a84cc..49943ba 100644 --- a/buffer.c +++ b/buffer.c @@ -178,7 +178,7 @@ static int flow(struct Lines *hard, int cols, const struct Line *soft) { flowed++; line = linesNext(hard); line->heat = soft->heat; - line->time = soft->time; + line->time = 0; size_t cap = StyleCap + align + strlen(&wrap[n]) + 1; line->str = malloc(cap); -- cgit 1.4.1