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

* lib/matrix.rb: resolve 'ruby -w' warnings.

* lib/irb/locale.rb: resolve 'ruby -w' warnings.
* lib/irb/multi-irb.rb: resolve 'ruby -w' warnings.
* lib/irb/ruby-lex.rb: fix problem for "\\M-\\..." and "\\C-\\..."
  and resolve 'ruby -w' warnings.
* lib/irb/ruby-token.rb: fix typo
* lib/shell/command-processor.rb: resolve 'ruby -w' warnings.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
keiju 2001-06-27 15:46:05 +00:00
parent d2d8cb7072
commit 5655368467
7 changed files with 27 additions and 13 deletions

View file

@ -62,7 +62,7 @@ module IRB
def print(*opts)
ary = opts.collect{|opt| String(opt)}
super *ary
super(*ary)
end
def printf(*opts)
@ -72,7 +72,7 @@ module IRB
def puts(*opts)
ary = opts.collect{|opt| String(opts)}
super *ary
super(*ary)
end
def require(file, priv = nil)