Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Mon Jun 4 15:39:33 2012 Nobuyoshi Nakada <[email protected]>

* win32/win32.c (constat_apply): apply VT100 functions.
[ruby-core:44958] [Feature #6418]

* win32/win32.c (constat_parse): parse some VT100 escape sequence.

Mon Jun 4 14:06:12 2012 NAKAMURA Usaku <[email protected]>

* process.c (rb_exec_err): should preserve errno.
Expand Down
1 change: 0 additions & 1 deletion bootstraptest/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ def main
case @color
when nil
@color = @tty && /dumb/ !~ ENV["TERM"]
@color &= /mswin|mingw/ !~ RUBY_PLATFORM
when true
@tty = true
end
Expand Down
1 change: 0 additions & 1 deletion lib/test/unit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,6 @@ def _prepare_run(suites, type)
color = true
when :auto, nil
color = @options[:job_status] == :replace && /dumb/ !~ ENV["TERM"]
color &&= /mswin|mingw/ !~ RUBY_PLATFORM
else
color = false
end
Expand Down
1 change: 0 additions & 1 deletion sample/test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
@rotator = %w[- \\ | /]
@bs = "\b" * @rotator[0].size
@tty = STDERR.tty? && /dumb/ !~ ENV["TERM"]
@tty &&= /mswin|mingw/ !~ RUBY_PLATFORM
case @color
when nil
@color = @tty
Expand Down
Loading