Skip to content

Commit 73e0b8d

Browse files
committed
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@12960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 8550838 commit 73e0b8d

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+
Thu Aug 16 04:24:28 2007 NAKAMURA Usaku <usa@ruby-lang.org>
2+
3+
* ext/dl/lib/dl/win32.rb: seems that dl doesn't accept void argument.
4+
fixed [ruby-bugs:PR#5489].
5+
16
Thu Aug 16 04:23:44 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* lib/rdoc/parsers/parse_c.rb (RDoc::C_Parser): handle more

ext/dl/lib/dl/win32.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Win32API
66
DLL = {}
77

88
def initialize(dllname, func, import, export = "0")
9-
prototype = (export + import.to_s).tr("VPpNnLlIi", "0SSI")
9+
prototype = (export + import.to_s).tr("VPpNnLlIi", "0SSI").sub(/^(.)0*$/, '\1')
1010
handle = DLL[dllname] ||= DL::Handle.new(dllname)
1111
@sym = handle.sym(func, prototype)
1212
end

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2007-08-16"
33
#define RUBY_VERSION_CODE 185
44
#define RUBY_RELEASE_CODE 20070816
5-
#define RUBY_PATCHLEVEL 58
5+
#define RUBY_PATCHLEVEL 59
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)