diff options
author | keiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-27 15:35:04 +0000 |
---|---|---|
committer | keiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-27 15:35:04 +0000 |
commit | 870d7cfec4b29a4b572a55e08c6179fab4cda879 (patch) | |
tree | ff56adadf7f83d0c7c77545ae118fceaa111a13b /lib/matrix.rb | |
parent | 7722a3476305341383563b0f26c0854c9314611b (diff) | |
download | ruby-870d7cfec4b29a4b572a55e08c6179fab4cda879.tar.gz ruby-870d7cfec4b29a4b572a55e08c6179fab4cda879.tar.xz ruby-870d7cfec4b29a4b572a55e08c6179fab4cda879.zip |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@1550 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/matrix.rb')
-rw-r--r-- | lib/matrix.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/matrix.rb b/lib/matrix.rb index 4821babab..cf2f63765 100644 --- a/lib/matrix.rb +++ b/lib/matrix.rb @@ -219,7 +219,6 @@ class Matrix row[j] = values[j] row } - self rows(rows, false) end @@ -897,7 +896,7 @@ class Vector # ARITHMETIC - def *(x) "is matrix or number" + def *(x) case x when Numeric els = @elements.collect{|e| e * x} |