From 405da5f84b072ea97b69359454899f45d92d24b6 Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Wed, 22 May 2024 00:00:29 +0200 Subject: WIP LSP client This contains the start of an LSP client. Nothing (except starting the LSP server) works at the moment and the feature is disabled by default. --- src/dged/text.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dged/text.h') diff --git a/src/dged/text.h b/src/dged/text.h index 28bd325..505c86a 100644 --- a/src/dged/text.h +++ b/src/dged/text.h @@ -66,10 +66,10 @@ struct text_property_colors { struct text_property { enum text_property_type type; - union { + union property_data { struct text_property_colors colors; void *userdata; - }; + } data; }; void text_add_property(struct text *text, uint32_t start_line, -- cgit v1.2.3