mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
win32.c: for non-standard console
* win32/win32.c (constat_reset): do nothing on non-standard console emurators. [ruby-core:66471] [Bug #10546] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0eadc632c1
commit
2e7ed8032d
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Nov 26 19:54:31 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* win32/win32.c (constat_reset): do nothing on non-standard
|
||||
console emurators. [ruby-core:66471] [Bug #10546]
|
||||
|
||||
Wed Nov 26 19:44:13 2014 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* lib/tsort.rb: Returns an enumerator if no block is given.
|
||||
|
|
|
@ -5952,7 +5952,7 @@ constat_reset(HANDLE h)
|
|||
{
|
||||
st_data_t data;
|
||||
struct constat *p;
|
||||
if (!conlist) return;
|
||||
if (!conlist || conlist == conlist_disabled) return;
|
||||
if (!st_lookup(conlist, (st_data_t)h, &data)) return;
|
||||
p = (struct constat *)data;
|
||||
p->vt100.state = constat_init;
|
||||
|
|
Loading…
Add table
Reference in a new issue