xC/xP: pass timestamps with millisecond precision

Future-proofing the protocol.
This commit is contained in:
2022-09-06 14:38:09 +02:00
parent d2af6cf64c
commit 31e9c6d2d5
3 changed files with 3 additions and 3 deletions

2
xC.c
View File

@@ -3105,7 +3105,7 @@ relay_prepare_buffer_line (struct app_context *ctx, struct buffer *buffer,
e->is_unimportant = !!(line->flags & BUFFER_LINE_UNIMPORTANT);
e->is_highlight = !!(line->flags & BUFFER_LINE_HIGHLIGHT);
e->rendition = 1 + line->r;
e->when = line->when;
e->when = line->when * 1000;
size_t len = 0;
for (size_t i = 0; line->items[i].type; i++)