1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

term: remove enable_term_color_win()

This commit is contained in:
Alexander Medvednikov 2019-07-31 23:18:57 +02:00
parent 2c7e0c0257
commit 0243f9b0e9

View File

@ -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 { 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) return _format_rgb(r, g, b, msg, open, close)
} }