Skip to content

Commit 7cd92ce

Browse files
committed
merge revision(s) r48585,r48587: [Backport ruby#10546]
* win32/win32.c (constat_reset): do nothing on non-standard console emurators. [ruby-core:66471] [Bug ruby#10546] console emulators. [ruby-core:66471] [Bug ruby#10546] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@49996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 5852873 commit 7cd92ce

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Wed Mar 18 02:40:18 2015 Nobuyoshi Nakada <[email protected]>
2+
3+
* win32/win32.c (constat_reset): do nothing on non-standard
4+
console emulators. [ruby-core:66471] [Bug #10546]
5+
16
Wed Mar 18 02:03:02 2015 Kazuki Tsujimoto <[email protected]>
27

38
* vm_insnhelper.c (rb_vm_rewrite_cref_stack): copy nd_refinements

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.1.5"
22
#define RUBY_RELEASE_DATE "2015-03-18"
3-
#define RUBY_PATCHLEVEL 317
3+
#define RUBY_PATCHLEVEL 318
44

55
#define RUBY_RELEASE_YEAR 2015
66
#define RUBY_RELEASE_MONTH 3

win32/win32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5924,7 +5924,7 @@ constat_reset(HANDLE h)
59245924
{
59255925
st_data_t data;
59265926
struct constat *p;
5927-
if (!conlist) return;
5927+
if (!conlist || conlist == conlist_disabled) return;
59285928
if (!st_lookup(conlist, (st_data_t)h, &data)) return;
59295929
p = (struct constat *)data;
59305930
p->vt100.state = constat_init;

0 commit comments

Comments
 (0)