diff options
author | Yukihiro Matsumoto <[email protected]> | 1997-11-18 13:59:59 +0900 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2019-08-17 22:09:33 +0900 |
commit | cfd31fa21b67c4992a0360d7c605de1c6add874e (patch) | |
tree | d34f234a51909b313ba3f1e7e4829caa65f1fca6 /gc.c | |
parent | 9b01ce69546380c57cb602e045be4fc012cd81b7 (diff) |
version 1.0-971118v1_0_971118
https://cache.ruby-lang.org/pub/ruby/1.0/ruby-1.0-971118.tar.gz
Tue Nov 18 13:59:59 1997 Yukihiro Matsumoto <[email protected]>
* version 1.0-971118
Tue Nov 18 10:13:08 1997 Yukihiro Matsumoto <[email protected]>
* regex.c (re_compile_pattern): insert initialize code for jump_n,
before entering loops.
Sat Nov 15 00:11:36 1997 WATANABE Hirofumi <[email protected]>
* io.c (io_s_popen): "rb" detection
Wed Nov 12 13:44:47 1997 Yukihiro Matsumoto <[email protected]>
* time.c: remove coerce from Time class.
Wed Nov 2 16:00:00 1997 WATANABE Hirofumi <[email protected]>
* string.c (str_sub_s): "".sub! "", "" => "\000"
Thu Oct 30 16:54:01 1997 WATANABE Hirofumi <[email protected]>
* string.c (str_chop_bang): "".chop caused SEGV.
* string.c (str_chomp_bang): method to chop out last newline.
Mon Oct 27 13:49:13 1997 Yukihiro Matsumoto <[email protected]>
* ext/extmk.rb.in: library may have pathname contains `.'
* eval.c (rb_rescue): should not protect SystemError.
Thu Oct 23 11:17:44 1997 Yukihiro Matsumoto <[email protected]>
* range.c (range_eqq): fixnum check for last needed too.
Wed Oct 22 12:52:30 1997 Yukihiro Matsumoto <[email protected]>
* array.c (ary_join): call ary_join() recursively for the 1st
array element.
Co-authored-by: WATANABE Hirofumi <[email protected]>
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -655,7 +655,6 @@ obj_free(obj) case T_DATA: if (obj->as.data.dfree && DATA_PTR(obj)) (*obj->as.data.dfree)(DATA_PTR(obj)); - if (DATA_PTR(obj)) free(DATA_PTR(obj)); break; case T_MATCH: re_free_registers(obj->as.match.regs); |