[前][次][番号順一覧][スレッド一覧]

ruby-changes:46110

From: nagachika <ko1@a...>
Date: Tue, 28 Mar 2017 01:58:45 +0900 (JST)
Subject: [ruby-changes:46110] nagachika:r58181 (ruby_2_3): merge revision(s) 57741: [Backport #13254]

nagachika	2017-03-28 01:58:42 +0900 (Tue, 28 Mar 2017)

  New Revision: 58181

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58181

  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_3/
  Modified files:
    branches/ruby_2_3/version.h
    branches/ruby_2_3/win32/win32.c
Index: ruby_2_3/version.h
===================================================================
--- ruby_2_3/version.h	(revision 58180)
+++ ruby_2_3/version.h	(revision 58181)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/version.h#L1
 #define RUBY_VERSION "2.3.3"
 #define RUBY_RELEASE_DATE "2017-03-28"
-#define RUBY_PATCHLEVEL 290
+#define RUBY_PATCHLEVEL 291
 
 #define RUBY_RELEASE_YEAR 2017
 #define RUBY_RELEASE_MONTH 3
Index: ruby_2_3/win32/win32.c
===================================================================
--- ruby_2_3/win32/win32.c	(revision 58180)
+++ ruby_2_3/win32/win32.c	(revision 58181)
@@ -770,9 +770,8 @@ rb_w32_sysinit(int *argc, char ***argv) https://github.com/ruby/ruby/blob/trunk/ruby_2_3/win32/win32.c#L770
     _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_3
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r57741


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]