diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-06 03:23:41 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-06 03:23:41 +0000 |
| commit | 67e0062ecefc9e7e719ba39d8dab5931a66a59e5 (patch) | |
| tree | 59089917e5bea977d2b1d31b220e6f510bb21eae | |
| parent | 9023e7ff9b3a2261fb8a26d48fe8f8eff6c5a7f6 (diff) | |
| download | ruby-67e0062ecefc9e7e719ba39d8dab5931a66a59e5.tar.gz ruby-67e0062ecefc9e7e719ba39d8dab5931a66a59e5.tar.xz ruby-67e0062ecefc9e7e719ba39d8dab5931a66a59e5.zip | |
* bignum.c (rb_big2ulong_pack): One too many arguments are passed
to big2ulong().
* re.c (_reg_init_copy, rb_reg_initialize_m): One too many
arguments are passed to rb_reg_initialize().
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | bignum.c | 2 | ||||
| -rw-r--r-- | re.c | 4 |
3 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,11 @@ +Sun Feb 6 12:20:11 2005 Akinori MUSHA <knu@iDaemons.org> + + * bignum.c (rb_big2ulong_pack): One too many arguments are passed + to big2ulong(). + + * re.c (_reg_init_copy, rb_reg_initialize_m): One too many + arguments are passed to rb_reg_initialize(). + Sun Feb 6 03:24:20 2005 Tanaka Akira <akr@m17n.org> * lib/resolv.rb (Resolv::DNS::Resource::TXT): multiple strings was not @@ -751,7 +751,7 @@ unsigned long rb_big2ulong_pack(x) VALUE x; { - unsigned long num = big2ulong(x, "unsigned long", Qfalse); + unsigned long num = big2ulong(x, "unsigned long"); if (!RBIGNUM(x)->sign) { return -num; } @@ -1709,7 +1709,7 @@ rb_reg_initialize_m(argc, argv, self) s = StringValuePtr(argv[0]); len = RSTRING(argv[0])->len; } - rb_reg_initialize(self, s, len, flags, Qtrue); + rb_reg_initialize(self, s, len, flags); return self; } @@ -1983,7 +1983,7 @@ rb_reg_init_copy(copy, re) } rb_reg_check(re); rb_reg_initialize(copy, RREGEXP(re)->str, RREGEXP(re)->len, - rb_reg_options(re), Qfalse); + rb_reg_options(re)); return copy; } |
