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

* string.c (scan_once): wrong condition to use mbclen2().

[ruby-dev:27535]

* time.c (time_sunday): added predicate methods for the days of the
  week.  [ruby-list:41340]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2005-10-27 08:18:38 +00:00
parent 563742204d
commit c6b9f16231
8 changed files with 591 additions and 79 deletions

View file

@ -246,7 +246,7 @@ class Matrix
# use to general users.
#
def initialize(init_method, *argv)
self.send(init_method, *argv)
self.funcall(init_method, *argv)
end
def init_rows(rows, copy)