From 0243f9b0e91ab3b120feb8b24f110747f4272feb Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 31 Jul 2019 23:18:57 +0200 Subject: [PATCH] term: remove enable_term_color_win() --- vlib/term/colors_win.v | 1 - 1 file changed, 1 deletion(-) diff --git a/vlib/term/colors_win.v b/vlib/term/colors_win.v index 4171c57604..85dcfd44e1 100644 --- a/vlib/term/colors_win.v +++ b/vlib/term/colors_win.v @@ -11,6 +11,5 @@ pub fn format(msg, open, close string) string { } pub fn format_rgb(r, g, b int, msg, open, close string) string { - enable_term_color_win() return _format_rgb(r, g, b, msg, open, close) }