From 87845777777058fa45c93df15e67b65ad41708a7 Mon Sep 17 00:00:00 2001 From: pommicket Date: Tue, 15 Aug 2023 12:07:44 -0300 Subject: fix definitions selector --- tags.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tags.c') diff --git a/tags.c b/tags.c index 2851b17..436a615 100644 --- a/tags.c +++ b/tags.c @@ -382,7 +382,6 @@ SymbolInfo *tags_get_symbols(Ted *ted) { if (!file) return NULL; SymbolInfo *infos = NULL; - u32 color = ted_active_color(ted, COLOR_TEXT); if (file) { char line[1024]; while (fgets(line, sizeof line, file)) { @@ -390,7 +389,7 @@ SymbolInfo *tags_get_symbols(Ted *ted) { size_t len = strcspn(line, "\t"); SymbolInfo *info = arr_addp(infos); info->name = strn_dup(line, len); - info->color = color; + info->color = COLOR_TEXT; } } fclose(file); -- cgit v1.2.3