diff options
author | June McEnroe <june@causal.agency> | 2021-01-25 17:23:17 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-25 17:23:17 -0500 |
commit | 609c9bd0ac8fd61a97b23b033a413f9ca71276a4 (patch) | |
tree | 65bb9760ee1828854f9f99c6d36070d4ef52a259 | |
parent | Add protocol coverage to non-features list (diff) | |
download | catgirl-609c9bd0ac8fd61a97b23b033a413f9ca71276a4.tar.gz catgirl-609c9bd0ac8fd61a97b23b033a413f9ca71276a4.zip |
Do not copy time to wrapped lines
-rw-r--r-- | buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |