summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-15 20:56:22 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-15 20:56:22 +0000
commitaffa5bcff983094bb71ab2b9abe6e85a7c4b20af (patch)
tree1cbff423bbd11963bc0eea9d7633c0db5389f5e5
parent59e55b2b8e43ed773f5b5ad58b4d53a8b673b93f (diff)
parent0c79675f354eb43df9e5079831b42e88885db56d (diff)
sorry. I made wrong tags.v1_8_5_58
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_5_58@13006 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/dl/lib/dl/win32.rb2
-rw-r--r--version.h2
3 files changed, 2 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 82a6cd5af2..c5991afbcc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,3 @@
-Thu Aug 16 04:24:28 2007 NAKAMURA Usaku <usa@ruby-lang.org>
-
- * ext/dl/lib/dl/win32.rb: seems that dl doesn't accept void argument.
- fixed [ruby-bugs:PR#5489].
-
Thu Aug 16 04:23:44 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/rdoc/parsers/parse_c.rb (RDoc::C_Parser): handle more
diff --git a/ext/dl/lib/dl/win32.rb b/ext/dl/lib/dl/win32.rb
index 0fed47c324..92f473d392 100644
--- a/ext/dl/lib/dl/win32.rb
+++ b/ext/dl/lib/dl/win32.rb
@@ -6,7 +6,7 @@ class Win32API
DLL = {}
def initialize(dllname, func, import, export = "0")
- prototype = (export + import.to_s).tr("VPpNnLlIi", "0SSI").sub(/^(.)0*$/, '\1')
+ prototype = (export + import.to_s).tr("VPpNnLlIi", "0SSI")
handle = DLL[dllname] ||= DL::Handle.new(dllname)
@sym = handle.sym(func, prototype)
end
diff --git a/version.h b/version.h
index 5170ec7ba3..bfdba9db58 100644
--- a/version.h
+++ b/version.h
@@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2007-08-16"
#define RUBY_VERSION_CODE 185
#define RUBY_RELEASE_CODE 20070816
-#define RUBY_PATCHLEVEL 59
+#define RUBY_PATCHLEVEL 58
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8