Jelajahi Sumber

Looks like COLORTERM has gone out of fashion.

Mike Pall 9 tahun lalu
induk
melakukan
8ada57eb49
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  1. 2 1
      src/jit/dump.lua

+ 2 - 1
src/jit/dump.lua

@@ -644,7 +644,8 @@ end
 local function dumpon(opt, outfile)
   if active then dumpoff() end
 
-  local colormode = os.getenv("COLORTERM") and "A" or "T"
+  local term = os.getenv("TERM")
+  local colormode = (term and term:match("color") or os.getenv("COLORTERM")) and "A" or "T"
   if opt then
     opt = gsub(opt, "[TAH]", function(mode) colormode = mode; return ""; end)
   end