aboutsummaryrefslogtreecommitdiffstats
path: root/lib/shell/command-processor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/shell/command-processor.rb')
-rw-r--r--lib/shell/command-processor.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/shell/command-processor.rb b/lib/shell/command-processor.rb
index b7b58bb618..900b31a22d 100644
--- a/lib/shell/command-processor.rb
+++ b/lib/shell/command-processor.rb
@@ -26,7 +26,7 @@ class Shell
#
m = [:initialize, :expand_path]
if Object.methods.first.kind_of?(String)
- NoDelegateMethods = m.collect{|m| m.id2name}
+ NoDelegateMethods = m.collect{|x| x.id2name}
else
NoDelegateMethods = m
end
@@ -124,7 +124,7 @@ class Shell
f = File.open(path, mode, perm)
File.chmod(perm & ~@shell.umask, path)
if block_given?
- f.each &b
+ f.each(&b)
end
f
else