1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/shell/command-processor.rb: fix typo by Sho Hashimoto.

reported and patched at [ruby-dev:40058] [Bug #2599]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26309 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-01-12 15:35:08 +00:00
parent 06dfb68d54
commit 19f6839c0c
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Wed Jan 13 00:33:09 2010 NARUSE, Yui <naruse@ruby-lang.org>
* lib/shell/command-processor.rb: fix typo by Sho Hashimoto.
reported and patched at [ruby-dev:40058] [Bug #2599]
Tue Jan 12 23:48:29 2010 Kouhei Sutou <kou@cozmixng.org>
* lib/rss/maker/base.rb, test/rss/test_maker_0.9.rb:

View file

@ -520,7 +520,7 @@ class Shell
id = id.intern if id.kind_of?(String)
name = id.id2name
if Shell.method_defined?(id)
Shell.notify "warn: override definnition of Shell##{name}."
Shell.notify "warn: override definition of Shell##{name}."
Shell.notify "warn: alias Shell##{name} to Shell##{name}_org.\n"
Shell.module_eval "alias #{name}_org #{name}"
end
@ -536,7 +536,7 @@ class Shell
end], __FILE__, __LINE__)
if Shell::Filter.method_defined?(id)
Shell.notify "warn: override definnition of Shell::Filter##{name}."
Shell.notify "warn: override definition of Shell::Filter##{name}."
Shell.notify "warn: alias Shell##{name} to Shell::Filter##{name}_org."
Filter.module_eval "alias #{name}_org #{name}"
end