diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-12-12 13:40:09 -0600 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-12-12 13:40:09 -0600 |
commit | 425da2381dfc6be1cefb9b7a7b3d9c9a6d8e3ddd (patch) | |
tree | 84440976c530c1492dd3016095c89b4ac1c67290 /external | |
parent | Merge pull request #6027 (diff) | |
parent | easylogging++: add screen.xterm-256color to the "allow colour" TERM list (diff) | |
download | monero-425da2381dfc6be1cefb9b7a7b3d9c9a6d8e3ddd.tar.xz |
Merge pull request #6037
f49a8ca easylogging++: add screen.xterm-256color to the 'allow colour' TERM list (moneromooo-monero)
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 |