diff options
author | murphy <murphy@rubychan.de> | 2011-07-08 16:30:07 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2011-07-08 16:30:07 +0000 |
commit | 277db0fcac531d9f4776bafd05f8630a45520cac (patch) | |
tree | 47c79910ef8bf5c03aa7b98bacd48461657e18f1 /lib/coderay/helpers/plugin.rb | |
parent | 0b46fc84bdbd80004eef0fb7e4aa25c4a073c37f (diff) | |
download | coderay-277db0fcac531d9f4776bafd05f8630a45520cac.tar.gz |
minor support fixes for some Ruby engines and versions
Diffstat (limited to 'lib/coderay/helpers/plugin.rb')
-rw-r--r-- | lib/coderay/helpers/plugin.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/helpers/plugin.rb b/lib/coderay/helpers/plugin.rb index b0dda0c..8a8e149 100644 --- a/lib/coderay/helpers/plugin.rb +++ b/lib/coderay/helpers/plugin.rb @@ -271,7 +271,7 @@ module CodeRay def aliases plugin_host.load_plugin_map - plugin_host.plugin_hash.inject [] do |aliases, (key, value)| + plugin_host.plugin_hash.inject [] do |aliases, (key, _)| aliases << key if plugin_host[key] == self aliases end |