diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-10-01 08:14:03 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-10-01 08:14:03 +0000 |
| commit | 992a1f12eec0411ba46a2547abd8a90d4caf6015 (patch) | |
| tree | ddd2d3b22eb2b7a9295d29d1c67b38dfddd92d2b | |
| parent | d0d672fabe2b451d1adcca0ec1b659cbc2895b5a (diff) | |
| download | ruby-992a1f12eec0411ba46a2547abd8a90d4caf6015.tar.gz ruby-992a1f12eec0411ba46a2547abd8a90d4caf6015.tar.xz ruby-992a1f12eec0411ba46a2547abd8a90d4caf6015.zip | |
* range.c (range_check): need no Fixnum check.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2913 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | class.c | 2 | ||||
| -rw-r--r-- | ext/Setup.atheos | 27 |
2 files changed, 28 insertions, 1 deletions
@@ -156,7 +156,7 @@ rb_make_metaclass(obj, super) /* metaclass of a superclass may be NULL at boot time */ if (metasuper) { - RBASIC(klass)->klass; + RBASIC(klass)->klass = metasuper; } } diff --git a/ext/Setup.atheos b/ext/Setup.atheos new file mode 100644 index 000000000..8f04f06a4 --- /dev/null +++ b/ext/Setup.atheos @@ -0,0 +1,27 @@ +option nodynamic + +curses +dbm +digest +digest/md5 +digest/rmd160 +digest/sha1 +digest/sha2 +dl +etc +fcntl +gdbm +iconv +marshal +nkf +pty +racc/parse +readline +sdbm +socket +stringio +strscan +syslog +#tk +#tcltklib +#gtk |
