From 05f61f7e7ab314187ff5d28281a6d6d7facb17ae Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Thu, 19 Oct 2023 23:12:04 +0200 Subject: follow-up fixes after refactoring --- src/dged/buffer.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/dged/buffer.c') diff --git a/src/dged/buffer.c b/src/dged/buffer.c index 117fab5..c95da91 100644 --- a/src/dged/buffer.c +++ b/src/dged/buffer.c @@ -753,9 +753,10 @@ void render_line(struct text_chunk *line, void *userdata) { // calculate character properties uint32_t nproperties = 0; - text_get_properties(cmdbuf->buffer->text, - (struct location){.line = line->line, .col = coli + cmdbuf->origin.col}, - properties, 16, &nproperties); + text_get_properties( + cmdbuf->buffer->text, + (struct location){.line = line->line, .col = coli + cmdbuf->origin.col}, + properties, 16, &nproperties); // handle changes to properties uint32_t nnew_props = 0; -- cgit v1.2.3