summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Expand)Author
2008-03-06* include/ruby/missing.h (cbrt): add declaration.akr
2008-03-06* misc/ruby-mode.el (ruby-add-log-current-method): use ruby stylenobu
2008-03-06* sprintf.c (rb_str_format): no need of loop.nobu
2008-03-06* object.c (rb_mod_freeze): call rb_class_name() directly.matz
2008-03-05* string.c (count_utf8_lead_bytes_with_ulong): fix shift size.naruse
2008-03-05* sprintf.c (rb_str_format): size_t returned from strlen() can benobu
2008-03-05* struct.c (make_struct): preserve encoding of struct name.nobu
2008-03-05* string.c (is_utf8_lead_byte, count_utf8_lead_bytes_with_ulong):naruse
2008-03-05* file.c (rb_file_flock): returns false on EAGAIN if non-blocking.nobu
2008-03-05Web Mar 5 17:43:43 2008 Martin Duerst <duerst@it.aoyama.ac.jp>duerst
2008-03-05* numeric.c (fix_to_s): avoid rb_scan_args() when no argumentmatz
2008-03-05* lib/debug.rb: require 'continuation' to implement "restart"matz
2008-03-04* lib/irb.rb (IRB::Irb::eval_input): SyntaxError should not bematz
2008-03-04* hash.c (hash_equal): two hash tables are different when internalmatz
2008-03-04* hash.c (rb_hash_aset): should not copy key string whenmatz
2008-03-04* parse.y (parser_yylex): disallow non digits '0o' expression.matz
2008-03-04* io.c (open_key_args): use rb_io_open_with_args instead of rb_f_open.naruse
2008-03-04* gc.c (add_heap): fix previous change. [ruby-dev:33988]akr
2008-03-04* gc.c (add_heap): use binary search to find the place to insert thenobu
2008-03-03* io.c (open_key_args): use rb_io_open instead of rb_f_open.naruse
2008-03-03* lib/webrick/httpservlet/filehandler.rb: should normalize pathgotoyuzo
2008-03-03* gc.c (add_heap): sort heaps array in ascending order to usematz
2008-03-03* re.c (rb_reg_regsub): remove too strict encoding check.matz
2008-03-03* hash.c (rb_any_hash): shrinks all results in Fixnum range.nobu
2008-03-02* io.c (rb_io_ungetc): reduce redundant call.nobu
2008-03-02* ruby.c (load_file): parse shebang in us-ascii. a patch fromnobu
2008-03-01* object.c (rb_cstr_to_dbl): check for successive underscores.nobu
2008-03-01* io.c (struct argf): packed ARGF stuffs.nobu
2008-03-01* lib/test/unit/collector/dir.rb (recursive_collect): do not alwaysnobu
2008-03-01* development snapshot 1.9.0-1 released.matz
2008-03-01* tool/make-snapshot: make prereq uses MINIRUBY.matz
2008-03-01* test/ruby/allpairs.rb: new file for all pairs method.akr
2008-03-01* string.c (sym_inspect): use rb_str_inspect() instead ofmatz
2008-03-01* eval_method.c (rb_get_method_body): ent->method may be freed bymatz
2008-03-01ChangeLog: typo fixedmatz
2008-03-01* io.c (read_all, rb_io_getline_fast): encoding is rb_input_encoding.naruse
2008-03-01* string.c (tr_setup_table, rb_str_split_m, rb_str_chomp_bang):nobu
2008-03-01* string.c (rb_str_coderange_scan_restartable): should not returnmatz
2008-03-01* sprintf.c (rb_str_format): "%#.0o" should keep prefix wherematz
2008-02-29* bignum.c (big2str_find_n1): check integer overflow.nobu
2008-02-29* encoding.c (rb_enc_dummy_p): bootstrap encodings can not be dummy.nobu
2008-02-29* test/ruby/test_m17n_comb.rb (TestM17NComb::test_str_chomp): testmatz
2008-02-29* test/ruby/test_iterator.rb (TestIterator::test_enumerator):matz
2008-02-29* string.c (rb_str_chomp_bang): now works on UTF-16.matz
2008-02-29* time.c (time_strftime): format should be ascii compatible.matz
2008-02-29* string.c (rb_str_rpartition): calculation was done in byte indexing.matz
2008-02-29* parse.y (opt_block_param): command can start just after block paramnobu
2008-02-28* test/ruby/test_time.rb (test_readers): fix typo.naruse
2008-02-28* string.c (str_new): remove encoding assumption of empty string.naruse
2008-02-28* ext/tk/lib/tk.rb: forgot to update RELEASE_DATEnagai