summaryrefslogtreecommitdiffstats
path: root/win32/mkexports.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-24 15:58:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-10-24 15:58:51 +0000
commit147f54c65a91d4e74b5410b7e3ebd2b01816c58e (patch)
tree676e32d826aaa834d6f7307d8f9b21515a771cab /win32/mkexports.rb
parentfa658ba9e74914df6ea5f1adfb5d19d72702d73c (diff)
downloadruby-147f54c65a91d4e74b5410b7e3ebd2b01816c58e.tar.gz
ruby-147f54c65a91d4e74b5410b7e3ebd2b01816c58e.tar.xz
ruby-147f54c65a91d4e74b5410b7e3ebd2b01816c58e.zip
* win32/mkexports.rb, win32/resource.rb: use unique variable names.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/mkexports.rb')
-rw-r--r--win32/mkexports.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/win32/mkexports.rb b/win32/mkexports.rb
index e92aae042..2fe867eb1 100644
--- a/win32/mkexports.rb
+++ b/win32/mkexports.rb
@@ -14,7 +14,7 @@ class Exports
def self.create(*args, &block)
platform = RUBY_PLATFORM
- pat, klass = @subclass.find {|pat, klass| pat =~ platform}
+ pat, klass = @subclass.find {|p, k| p =~ platform}
unless klass
raise ArgumentError, "unsupported platform: #{platform}"
end
@@ -36,7 +36,6 @@ class Exports
def initialize(objs)
syms = {}
winapis = {}
- internal = export = nil
each_export(objs) do |internal, export|
syms[internal] = export
winapis[$1] = internal if /^_?(rb_w32_\w+)(?:@\d+)?$/ =~ internal
@@ -62,7 +61,6 @@ class Exports
exports << "Library " + library
end
exports << "Description " + description.dump if description
- k = v = nil
exports << "EXPORTS" << symbols()
exports
end