From 779c2daa196c0cc8ac6d59441eb47228c1d65aa5 Mon Sep 17 00:00:00 2001 From: Evin Yulo Date: Tue, 27 Sep 2022 22:04:58 +0000 Subject: [PATCH] Remove outdated comment --- lib/std/fs/file.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/std/fs/file.zig b/lib/std/fs/file.zig index 3792e1c1f2..0b5ba6de0b 100644 --- a/lib/std/fs/file.zig +++ b/lib/std/fs/file.zig @@ -230,7 +230,6 @@ pub const File = struct { } if (self.isTty()) { if (self.handle == os.STDOUT_FILENO or self.handle == os.STDERR_FILENO) { - // Use getenvC to workaround https://github.com/ziglang/zig/issues/3511 if (os.getenvZ("TERM")) |term| { if (std.mem.eql(u8, term, "dumb")) return false;