From 75892aad7939b40354be7ea71bd55c651956b27c Mon Sep 17 00:00:00 2001 From: Randy Palamar Date: Sat, 4 Jan 2025 18:03:48 -0700 Subject: curses ui: fix default color detection closes: #1209 --- ui-terminal-vt100.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'ui-terminal-vt100.c') diff --git a/ui-terminal-vt100.c b/ui-terminal-vt100.c index 92e23eb..3c63c11 100644 --- a/ui-terminal-vt100.c +++ b/ui-terminal-vt100.c @@ -211,11 +211,3 @@ static void ui_term_backend_free(Ui *tui) { static bool is_default_color(CellColor c) { return c.index == ((CellColor) CELL_COLOR_DEFAULT).index; } - -static bool is_default_fg(CellColor c) { - return is_default_color(c); -} - -static bool is_default_bg(CellColor c) { - return is_default_color(c); -} -- cgit v1.2.3