We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4d729f commit 8224f45Copy full SHA for 8224f45
src/main/ruby/truffleruby/core/exception.rb
@@ -177,7 +177,7 @@ def location
177
def self.to_tty?
178
# Whether $stderr refers to the original STDERR and STDERR is a tty.
179
# When using polyglot stdio, we cannot know and assume false.
180
- false && $stderr.equal?(STDERR) && !STDERR.closed? &&
+ $stderr.equal?(STDERR) && !STDERR.closed? &&
181
(!Truffle::Boot.get_option('polyglot-stdio') && STDERR.tty?)
182
end
183
0 commit comments