ruby-changes:46026
From: usa <ko1@a...>
Date: Sun, 26 Mar 2017 01:15:39 +0900 (JST)
Subject: [ruby-changes:46026] usa:r58097 (ruby_2_2): merge revision(s) 57741: [Backport #13254]
usa 2017-03-26 01:15:34 +0900 (Sun, 26 Mar 2017) New Revision: 58097 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58097 Log: merge revision(s) 57741: [Backport #13254] disable critical-error-handler * win32/win32.c (rb_w32_sysinit): disable critical-error-handler message box even on mswin, regardless of runtime DLL version. [ruby-dev:49988] [Bug #13254] Modified directories: branches/ruby_2_2/ Modified files: branches/ruby_2_2/version.h branches/ruby_2_2/win32/win32.c Index: ruby_2_2/version.h =================================================================== --- ruby_2_2/version.h (revision 58096) +++ ruby_2_2/version.h (revision 58097) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_2/version.h#L1 #define RUBY_VERSION "2.2.7" #define RUBY_RELEASE_DATE "2017-03-26" -#define RUBY_PATCHLEVEL 429 +#define RUBY_PATCHLEVEL 430 #define RUBY_RELEASE_YEAR 2017 #define RUBY_RELEASE_MONTH 3 Index: ruby_2_2/win32/win32.c =================================================================== --- ruby_2_2/win32/win32.c (revision 58096) +++ ruby_2_2/win32/win32.c (revision 58097) @@ -759,9 +759,8 @@ rb_w32_sysinit(int *argc, char ***argv) https://github.com/ruby/ruby/blob/trunk/ruby_2_2/win32/win32.c#L759 _set_invalid_parameter_handler(invalid_parameter); _RTC_SetErrorFunc(rtc_error_handler); set_pioinfo_extra(); -#else - SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOGPFAULTERRORBOX); #endif + SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOGPFAULTERRORBOX); get_version(); Property changes on: ruby_2_2 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r57741 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/