1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merge revision(s) 54529: [Backport #12264]

* ext/win32/lib/win32/registry.rb (DeleteValue, DeleteKey): fix
	  API names.  [ruby-core:74863] [Bug #12264]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@54636 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-04-18 08:54:57 +00:00
parent 4989a07135
commit 79e826d7f1
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Mon Apr 18 17:54:40 2016 Joe Swatosh <joe.swatosh@gmail.com>
* ext/win32/lib/win32/registry.rb (DeleteValue, DeleteKey): fix
API names. [ruby-core:74863] [Bug #12264]
Mon Apr 18 17:27:30 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* compile.c (iseq_peephole_optimize): should not replace the

View file

@ -333,11 +333,11 @@ For detail, see the MSDN[http://msdn.microsoft.com/library/en-us/sysinfo/base/pr
end
def DeleteValue(hkey, name)
check RegDeleteValue.call(hkey, make_wstr(name))
check RegDeleteValueW.call(hkey, make_wstr(name))
end
def DeleteKey(hkey, name)
check RegDeleteKey.call(hkey, make_wstr(name))
check RegDeleteKeyW.call(hkey, make_wstr(name))
end
def FlushKey(hkey)

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.3.0"
#define RUBY_RELEASE_DATE "2016-04-18"
#define RUBY_PATCHLEVEL 91
#define RUBY_PATCHLEVEL 92
#define RUBY_RELEASE_YEAR 2016
#define RUBY_RELEASE_MONTH 4