File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change
1
+ Wed Sep 29 10:58:07 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
+
3
+ * enum.c (sort_by_i): internally used object must not be changed
4
+ outside. [ruby-dev:24368]
5
+
1
6
Wed Sep 22 13:38:12 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
2
7
3
8
* 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>
98
103
99
104
* ext/tk/lib/multi-tk.rb: support calling 'mainloop' on slave
100
105
interpreters (however, the 'real' eventloop must be run on the
101
- Default Master IP)
106
+ Default Master IP)
102
107
103
108
* ext/tk/lib/remote-tk.rb: follow the changes of ext/tk/lib/multi-tk.rb
104
109
@@ -179,7 +184,7 @@ Sun Sep 12 23:46:23 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
179
184
180
185
Sun Sep 12 02:41:58 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
181
186
182
- * ext/tcltklib/tcltklib.c: add TclTkIp#allow_ruby_exit? and
187
+ * ext/tcltklib/tcltklib.c: add TclTkIp#allow_ruby_exit? and
183
188
allow_ruby_exit=
184
189
185
190
@@ -215,7 +220,7 @@ Fri Sep 10 02:43:54 2004 Dave Thomas <dave@pragprog.com>
215
220
216
221
Thu Sep 9 13:58:56 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
217
222
218
- * ext/tcltklib/tcltklib.c (ip_init): change flag value for setting
223
+ * ext/tcltklib/tcltklib.c (ip_init): change flag value for setting
219
224
'argv' and 'argv0' variable
220
225
221
226
* ext/tk/lib/remote-tk.rb: follow changes of multi-tk.rb
Original file line number Diff line number Diff line change @@ -393,6 +393,7 @@ sort_by_i(i, ary)
393
393
394
394
v = rb_yield (i );
395
395
e = rb_assoc_new (v , i );
396
+ OBJ_FREEZE (e );
396
397
rb_ary_push (ary , e );
397
398
return Qnil ;
398
399
}
You can’t perform that action at this time.
0 commit comments