git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@642 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2000-03-15 09:09:28 +00:00
Родитель 0d3f4a92cf
Коммит d8f981b972
5 изменённых файлов: 17 добавлений и 28 удалений

Просмотреть файл

@ -1,5 +1,12 @@
Wed Mar 15 17:26:05 2000 Yukihiro Matsumoto <matz@netlab.co.jp>
* hash.c (rb_hash_s_create): unexpected recursive call removed.
this bug was found by Satoshi Nojo <nojo@t-samukawa.or.jp>.
Wed Mar 15 13:12:39 2000 Yukihiro Matsumoto <matz@netlab.co.jp>
* eval.c (Init_Thread): Thread.join removed finally.
* string.c (rb_str_chomp_bang): forgot to call rb_str_modify().
Mon Mar 13 16:12:13 2000 Yukihiro Matsumoto <matz@netlab.co.jp>

3
configure поставляемый
Просмотреть файл

@ -4941,10 +4941,9 @@ case "$target_os" in
# the main point is the '-v' flag of 'cc'.
case "`cc -v -I. -c main.c -o /tmp/main.o 2>&1`" in
*/gemc_cc*) # we have the new DEC GEM CC
CFLAGS="$CFLAGS -frpm d -ieee"
CFLAGS="$CFLAGS -oldc"
;;
*) # we have the old MIPS CC
CFLAGS="$CFLAGS -oldc"
;;
esac
# cleanup

Просмотреть файл

@ -782,10 +782,9 @@ case "$target_os" in
# the main point is the '-v' flag of 'cc'.
case "`cc -v -I. -c main.c -o /tmp/main.o 2>&1`" in
*/gemc_cc*) # we have the new DEC GEM CC
CFLAGS="$CFLAGS -frpm d -ieee"
CFLAGS="$CFLAGS -oldc"
;;
*) # we have the old MIPS CC
CFLAGS="$CFLAGS -oldc"
;;
esac
# cleanup

10
eval.c
Просмотреть файл

@ -6940,15 +6940,6 @@ rb_thread_join(thread)
return thread;
}
static VALUE
rb_thread_s_join(dmy, thread) /* will be removed in 1.4 */
VALUE dmy;
VALUE thread;
{
rb_warn("Thread::join is obsolete; use Thread#join instead");
return rb_thread_join(thread);
}
VALUE
rb_thread_current()
{
@ -7810,7 +7801,6 @@ Init_Thread()
rb_define_singleton_method(rb_cThread, "kill", rb_thread_s_kill, 1);
rb_define_singleton_method(rb_cThread, "exit", rb_thread_exit, 0);
rb_define_singleton_method(rb_cThread, "pass", rb_thread_pass, 0);
rb_define_singleton_method(rb_cThread, "join", rb_thread_s_join, 1);
rb_define_singleton_method(rb_cThread, "current", rb_thread_current, 0);
rb_define_singleton_method(rb_cThread, "main", rb_thread_main, 0);
rb_define_singleton_method(rb_cThread, "list", rb_thread_list, 0);

22
hash.c
Просмотреть файл

@ -223,22 +223,16 @@ rb_hash_s_create(argc, argv, klass)
VALUE hash;
int i;
if (argc == 1) {
if (TYPE(argv[0]) == T_HASH) {
NEWOBJ(hash, struct RHash);
OBJSETUP(hash, klass, T_HASH);
if (argc == 1 && TYPE(argv[0]) == T_HASH) {
NEWOBJ(hash, struct RHash);
OBJSETUP(hash, klass, T_HASH);
hash->iter_lev = 0;
hash->ifnone = Qnil;
hash->tbl = 0; /* avoid GC crashing */
hash->tbl = st_copy(RHASH(argv[0])->tbl);
hash->iter_lev = 0;
hash->ifnone = Qnil;
hash->tbl = 0; /* avoid GC crashing */
hash->tbl = st_copy(RHASH(argv[0])->tbl);
return (VALUE)hash;
}
else {
VALUE a = rb_Array(argv[0]);
return rb_hash_s_create(RARRAY(a)->len, RARRAY(a)->ptr, klass);
}
return (VALUE)hash;
}
if (argc % 2 != 0) {