summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-29 01:58:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-29 01:58:43 +0000
commite8c1c4411fdd3f7df87666a84a32d10c148e4710 (patch)
treed9f0e16731f5859a4ca2e56bc7807f2ac9be18d0
parent819994a70257a8c713a0c7ea112fab64bd0ef032 (diff)
* enum.c (sort_by_i): internally used object must not be changed
outside. [ruby-dev:24368] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog11
-rw-r--r--enum.c1
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 047d51e6f7..bc64d6e3b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Sep 29 10:58:07 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * enum.c (sort_by_i): internally used object must not be changed
+ outside. [ruby-dev:24368]
+
Wed Sep 22 13:38:12 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* hash.c (rb_hash_rehash): add iteration check. [ruby-dev:24301]
@@ -98,7 +103,7 @@ Fri Sep 17 15:01:57 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/multi-tk.rb: support calling 'mainloop' on slave
interpreters (however, the 'real' eventloop must be run on the
- Default Master IP)
+ Default Master IP)
* ext/tk/lib/remote-tk.rb: follow the changes of ext/tk/lib/multi-tk.rb
@@ -179,7 +184,7 @@ Sun Sep 12 23:46:23 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
Sun Sep 12 02:41:58 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
- * ext/tcltklib/tcltklib.c: add TclTkIp#allow_ruby_exit? and
+ * ext/tcltklib/tcltklib.c: add TclTkIp#allow_ruby_exit? and
allow_ruby_exit=
@@ -215,7 +220,7 @@ Fri Sep 10 02:43:54 2004 Dave Thomas <dave@pragprog.com>
Thu Sep 9 13:58:56 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
- * ext/tcltklib/tcltklib.c (ip_init): change flag value for setting
+ * ext/tcltklib/tcltklib.c (ip_init): change flag value for setting
'argv' and 'argv0' variable
* ext/tk/lib/remote-tk.rb: follow changes of multi-tk.rb
diff --git a/enum.c b/enum.c
index fceed391f6..67d6ee8bf3 100644
--- a/enum.c
+++ b/enum.c
@@ -393,6 +393,7 @@ sort_by_i(i, ary)
v = rb_yield(i);
e = rb_assoc_new(v, i);
+ OBJ_FREEZE(e);
rb_ary_push(ary, e);
return Qnil;
}