summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* * lib/rss.rb, lib/rss/, test/rss/:kou2007-09-151-0/+6
| | | | | | | | - 0.1.9 -> 0.2.0. - supported Slash module. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13446 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/win32ole/win32ole.c (fev_unadvise): no needs to resetsuke2007-09-141-0/+5
| | | | | | | | event handlers. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13445 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_io.rb: tests which cause SEGV should not beko12007-09-141-0/+7
| | | | | | | | | added. * bootstraptest/test_knownbug.rb: add above test to known bug. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13444 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * insnhelper.ci (vm_expandarray): assignment should be placedko12007-09-141-0/+5
| | | | | | | | after creating new array. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bootstraptest/runner.rb: add a stress test (-s).ko12007-09-141-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13442 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm.h, eval_intern.h: move some macros to eval_intern.h.ko12007-09-141-0/+8
| | | | | | | | | * eval_jump.ci (rb_f_throw): fix to use NEW_THROW_OBJECT(). * eval.c (rb_f_loop): remove additional macro. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * insnhelper.ci (vm_expandarray): should be volatile value for GC.ko12007-09-141-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * compile.c (iseq_compile_each): inline cache entries are overwrittennobu2007-09-131-0/+5
| | | | | | | in iseq_build_body(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (brace_block): should use compstmt. patch submitted bynobu2007-09-131-0/+5
| | | | | | | Kirill A. Shutemov <k.shutemov AT gmail.com> [ruby-core:12154]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: fixed typo.nobu2007-09-131-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (rb_id2str): fixed typo.nobu2007-09-131-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13435 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (proc_options): -W should be allowed in RUBYOPTmatz2007-09-121-0/+5
| | | | | | environment variable. [ruby-core:12118] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (rb_io_s_sysopen): should not use alloca for unknowen sizenobu2007-09-121-0/+9
| | | | | | | | | | | input. [ruby-dev:31775] * parse.y (rb_id2str): ditto. * marshal.c (w_float): use snprintf instead of sprintf. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13430 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/tempfile.rb (Tempfile::make_tmpname): Allow to specify aknu2007-09-111-0/+9
| | | | | | | | | | | suffix for a temporary file name. * lib/tempfile.rb (Tempfile::make_tmpname): Make temporary file names less predictable by including a random string. [inspired by: akr] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13428 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/shellwords.rb: Add shellescape() and shelljoin().knu2007-09-111-0/+14
| | | | | | | | | | | | | | | * lib/shellwords.rb: Rename shellwords() to shellsplit() and make the former an alias to the latter. * lib/shellwords.rb: Add escape(), split(), join() as class methods, which are aliases to their respective long names prefixed with `shell'. * lib/shellwords.rb: Add String#shellescape(), String#shellsplit() and Array#shelljoin() for convenience. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * range.c (range_dumper): make uninitialized range dumpable.akr2007-09-101-1/+4
| | | | | | | (range_loader): make uninitialized range loadable. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * range.c: represent initialized state using EXCL instead of FL_USER3.akr2007-09-101-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13425 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c (rb_ary_cycle): avoid infinite loop for empty array.matz2007-09-101-0/+5
| | | | | | based on a patch from David Flanagan. [ruby-core:12085] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13424 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * marshal.c (r_object0): struct allocation first to check if amatz2007-09-091-0/+5
| | | | | | class is a struct. compatibility check should come next. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * range.c (range_step): fixed integer overflow. [ruby-dev:31763]matz2007-09-091-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/date/format.rb (_strptime): now also attaches an elementtadf2007-09-091-0/+5
| | | | | | | | which denotes leftover substring if exists. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13419 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * marshal.c (r_object0): check T_STRUCT type for structs.akr2007-09-081-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * marshal.c (r_object0): don't call user-defined initialize forakr2007-09-081-0/+9
| | | | | | | | | | | T_STRUCT objects. * include/ruby/intern.h (rb_struct_initialize): declared. * struct.c (rb_struct_initialize): export. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13416 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval_method.ci (rb_get_alloc_func): new function to get allocationakr2007-09-081-1/+29
| | | | | | | | | | | | | | | | | | | | | | | function. * include/ruby/intern.h (rb_alloc_func_t): declared. (rb_define_alloc_func): declared. (rb_marshal_define_compat): declared. * range.c: use T_STRUCT for Range. * inits.c: move Init_marshal() prior to Init_Range() because Init_Range calls rb_marshal_define_compat which needs marshal's compat_allocator_tbl initialized. * marshal.c: support marshal format compatibility layer designed for marshaling T_STRUCT Range using T_OBJECT format. (rb_marshal_define_compat): defined. [ruby-dev:31710] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* ChangeLog: conflict resolutionmatz2007-09-081-8/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13412 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * struct.c (rb_struct_s_members): check if __members__ is anmatz2007-09-081-0/+8
| | | | | | array to prevent segmentation fault. [ruby-dev:31759] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13410 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/date/format.rb (str[fp]time): now check specifications moretadf2007-09-081-0/+5
| | | | | | | | | | strictly. * and some trivial changes. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13408 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_fiber.rb (TestFiber::test_throw): uncaught throwmatz2007-09-071-0/+5
| | | | | | now raise ArgumentError exception. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13406 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * struct.c (rb_struct_s_members): should raise TypeError insteadmatz2007-09-071-0/+7
| | | | | | | | of call rb_bug(). [ruby-dev:31709] * marshal.c (r_object0): no nil check require any more. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13405 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * regenc.c, regenc.h (onigenc_single_byte_mbc_enc_len): should takeusa2007-09-071-0/+5
| | | | | | | | two arguments. [ruby-dev:31754] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13403 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk: fix typo.ko12007-09-061-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13353 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/stringio/stringio.c (strio_getc): rb_enc_mbclen() fix.matz2007-09-061-0/+4
| | | | | | * ext/stringio/stringio.c (strio_ungetc): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13352 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (rb_io_getc): forgot to commit rb_enc_mbclen() fix.matz2007-09-061-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13351 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/fileutils.rb (FileUtils::Entry_::copy): prevent self copy ofmatz2007-09-061-0/+9
| | | | | | | | | | directories. * lib/fileutils.rb (FileUtils::fu_each_src_dest0): use try_convert. * lib/fileutils.rb (FileUtils::fu_update_option): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13350 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add ChangeLog entriesmatz2007-09-061-0/+10
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c (rb_ary_cycle): typo in rdoc. a patch from Yuguimatz2007-09-061-0/+5
| | | | | | <yugui@yugui.sakura.ne.jp>. [ruby-dev:31748] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_succ, rb_str_chop_bang, rb_str_chop): m17n support.nobu2007-09-061-0/+5
| | | | | | | [ruby-dev:31734] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c (rb_ary_subseq): need integer overflow check.matz2007-09-051-0/+7
| | | | | | | | | | [ruby-dev:31736] * array.c (rb_ary_splice): ditto. [ruby-dev:31737] * array.c (rb_ary_fill): ditto. [ruby-dev:31738] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13346 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_splice): integer overflow for length.matz2007-09-051-0/+5
| | | | | | [ruby-dev:31739] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13342 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/win32ole/win32ole.c: add WIN32OLE_EVENT#unadvise.suke2007-09-041-0/+6
| | | | | | | * test/win32ole/test_win32ole_event.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13341 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk (vm.o): depends on st.h too.nobu2007-09-031-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13340 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * include/ruby/st.h (struct st_table): make num_entries bitfieldakr2007-09-021-0/+5
| | | | | | | instead of num_bins for speed. num_entries has less access. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* ChangeLog: typo fixedmatz2007-09-011-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13337 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/date/format.rb (_parse): improved parsing of ordinal dates.tadf2007-09-011-0/+7
| | | | | | | | | * lib/date/format.rb (_parse): use named character classes in some regular expressions. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval_jump.ci (rb_f_throw): wrap tag and TAG_THROW in a NODE_MEMOmatz2007-09-011-0/+5
| | | | | | node to make throw instruction to work well. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13333 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval_jump.ci (rb_f_catch): generate new tag object if no argument ismatz2007-09-011-0/+18
| | | | | | | | | | | | | | | | | | | given. backported from MatzRuby. [ruby-dev:31609] * eval_jump.ci (rb_catch): call #catch without arguments if tag string is NULL. * eval_jump.ci (rb_f_throw): allow throwing non-symbol object. * eval.c (rb_catch_obj): new function to wait throw with arbitrary object. * eval.c (rb_throw_obj): new function to throw arbitrary object. * variable.c (check_autoload_table): prevent multiple calls from RSTRING_PTR(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * include/ruby/ruby.h (struct RBignum): embed digits in RBignum forakr2007-09-011-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | small bignums. * bignum.c: RBignum embeded digits implemented. * include/ruby/intern.h: declare rb_big_resize. * gc.c: don't free embedded digits. * numeric.c: replace direct bignum field accessor by abstract field accessor such as RBIGNUM(val)->sign to RBIGNUM_SIGN(val). * sprintf.c: ditto. * compar.c: ditto. * marshal.c: ditto. * random.c: ditto. * .gdbinit: support embedded small bignums. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13330 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/win32ole/win32ole.c (ole_event_free): IConnectionPoint should besuke2007-09-011-0/+10
| | | | | | | | | | | | released. * ext/win32ole/win32ole.c (EVENTSINK_Destructor): ITypeInfo should be released. * ext/win32ole/win32ole.c (fev_initialize): refactoring. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13329 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/socket/test_tcp.rb (test_recvfrom): same as mswin32 on mswin64.usa2007-09-011-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * include/ruby/st.h (rb_index_t): use st_data_t for the platforms itnobu2007-09-011-3/+3
| | | | | | | is larger than int. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e