diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-26 20:16:19 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-26 20:16:19 +0000 |
commit | f49a8cad2373ddfb2fbdb438cbc35f37b6f4eabf (patch) | |
tree | c9395936f1fda05a9e0edaf1968c92e1a06218b7 /external | |
parent | Merge pull request #6024 (diff) | |
download | monero-f49a8cad2373ddfb2fbdb438cbc35f37b6f4eabf.tar.xz |
easylogging++: add screen.xterm-256color to the "allow colour" TERM list
Diffstat (limited to 'external')
-rw-r--r-- | external/easylogging++/easylogging++.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/easylogging++/easylogging++.cc b/external/easylogging++/easylogging++.cc index 5c756bcdf..8439bec0b 100644 --- a/external/easylogging++/easylogging++.cc +++ b/external/easylogging++/easylogging++.cc @@ -1243,7 +1243,7 @@ bool OS::termSupportsColor(void) { std::string term = getEnvironmentVariable("TERM", ""); return term == "xterm" || term == "xterm-color" || term == "xterm-256color" || term == "screen" || term == "linux" || term == "cygwin" - || term == "screen-256color"; + || term == "screen-256color" || term == "screen.xterm-256color"; } // DateTime |