summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* * eval.c (rb_call0): defer calling of rb_frame_self() until itmatz2008-05-131-0/+7
| | | | | | | | become really necessary. * eval.c (rb_call): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16408 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_io_m17n.rb: remove a duplicative method.mame2008-05-131-0/+18
| | | | | | | | | | | | | | | | | | | * test/ruby/test_utf16.rb: rename a conflicting method name. * test/ruby/test_array.rb: ditto. * test/ruby/test_file_exhaustive.rb: ditto. * test/ruby/test_hash.rb: ditto. * test/ruby/test_env.rb: ditto. * test/ruby/test_fixnum.rb: ditto. * test/ruby/test_rational.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16406 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval_method.c (rb_add_method): fix check for warning whenmame2008-05-131-0/+5
| | | | | | | Object#initialize is redefined. (same as 1.8) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16405 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enum.c (enum_yield): use rb_yield_values2.nobu2008-05-131-0/+10
| | | | | | | | | | | * enum.c (DEFINE_ENUMFUNCS): macro to define enumerator and yielding functions. * enum.c (enum_all_func, enum_any_func, enum_one_func, enum_none_func): reduced duplicate code. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enumerator.c: Update rdoc.knu2008-05-131-0/+7
| | | | | | | | | (enumerator_initialize): Discourage the use. (enum_each_slice, enum_each_cons, enumerator_each) (enumerator_with_index): Add a note about a call without a block. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16402 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_cat): fixed buffer overrun reported bymatz2008-05-131-0/+5
| | | | | | Christopher Thompson <cthompson at nexopia.com> in [ruby-core:16746] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16399 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (rb_f_gets.): re-enable rdoc.akr2008-05-121-0/+6
| | | | | | | | (rb_f_readline): ditto. (rb_f_readlines): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16398 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm.c (collect_local_variables_in_env): remove unnecessary checkmame2008-05-121-0/+7
| | | | | | | | | which causes: x=1;proc{local_variables}.call #=> [] * test/ruby/test_variable.rb: add a test for above. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16397 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: small fixes.usa2008-05-121-2/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * process.c, include/ruby/intern.h (rb_run_exec_options): externed.usa2008-05-121-0/+20
| | | | | | | | | | | | | | | | | | | | | | * process.c (save_redirect_fd, save_env_i, save_env, run_exec_dup2, run_exec_open, run_exec_pgroup, run_exec_rlimit, rb_run_exec_options): save parent's process environments. !!!remark!!! these are not thread-safe. * process.c (rb_spawn_internal): remove calling run_exec_options() because cannot restore after spawn. we'll fix this later. * io.c (pipe_open): ditto. * test/ruby/test_process.rb (test_execopts_env): upcase environment variable name for case insensitive platforms. * win32/win32.c (init_env): set USER environment variable only when USERNAME is available. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/date.rb (once): use Object#object_id instead of Symbol#to_i.akr2008-05-121-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/envutil.rb (rubybin): return expanded rubyexe instead ofusa2008-05-121-0/+5
| | | | | | | | expanded ruby if available. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16393 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enum.c (grep_i): Be aware of multiple values;knu2008-05-121-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix [ruby-dev:34653]. (grep_iter_i): Ditto. (count_i): Ditto. (find_i): Ditto. (find_index_i): Ditto. (find_all_i): Ditto. (reject_i): Ditto. (inject_i): Ditto. (inject_op_i): Ditto. (partition_i): Ditto. (group_by_i): Ditto. (first_i): Ditto. (sort_by_i): Ditto. (all_i): Ditto. (all_iter_i): Ditto. (any_i): Ditto. (any_iter_i): Ditto. (one_i): Ditto. (one_iter_i): Ditto. (none_i): Ditto. (none_iter_i): Ditto. (min_i): Ditto. (min_ii): Ditto. (max_i): Ditto. (max_ii): Ditto. (minmax_i): Ditto. (minmax_ii): Ditto. (min_by_i): Ditto. (max_by_i): Ditto. (minmax_by_i): Ditto. (member_i): Ditto. (take_i): Ditto. (take_while_i): Ditto. (drop_i): Ditto. (drop_while_i): Ditto. (cycle_i): Ditto. * enum.c (each_with_index): Update rdoc. each_with_index() takes argments that are passed through to each(), and a hash preserves key order. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * process.c (rb_spawn_internal): remove calling run_exec_options()usa2008-05-121-0/+5
| | | | | | | | because cannot restore after spawn. we'll fix this later. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16390 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * process.c (rb_spawn_internal): need to call run_exec_options() beforeusa2008-05-121-0/+5
| | | | | | | | spawn if the platform doesn't have fork. [ruby-dev:34647] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16389 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gc.c (ruby_vm_xmalloc): increase malloc_increase only if mallocakr2008-05-121-0/+8
| | | | | | | | | | succeeds. failed malloc size can be huge. it may increase malloc_limit too big which cause less GC and memory full. (ruby_vm_xrealloc): ditto. (rb_objspace): make params.limit and params.increase size_t. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16388 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * re.c (rb_reg_prepare_re): made non static with small refactoring.matz2008-05-121-0/+7
| | | | | | | * ext/strscan/strscan.c (strscan_do_scan): should adjust encoding before regex searching. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16387 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (is_defined): add NODE_OP_ASGN_{OR,AND}. "defined?(a||=1)"matz2008-05-121-0/+5
| | | | | | should not operate assignment. [ruby-dev:34645] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bignum.c (bigzero_p): check from MSB to LSB. [ruby-dev:34649]akr2008-05-121-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk (RUBYOPT): affected BASERUBY too. [ruby-talk:301514]nobu2008-05-121-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16376 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gc.c (assign_heap_slot): fix condition for number of objects inakr2008-05-121-0/+5
| | | | | | | a heap. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16375 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (sym_to_i): really removed. [ruby-dev:34641]matz2008-05-121-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16374 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: changelog of the changeset 16372. It was:yugui2008-05-121-0/+4
| | | | | | | "gc.c (assign_heap_slot): put the binary-search routine in order." git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (ruby_init_gems), gem_prelude.rb: check if Gem is definednobu2008-05-121-1/+4
| | | | | | | instead of Gem::Enable. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gem_prelude.rb (load_full_rubygems_library, const_missing): preventnobu2008-05-121-0/+5
| | | | | | | infinite recursion. [ruby-dev:34539] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enum.c (all_iter_i, any_iter_i): reduced duplicated code.nobu2008-05-111-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bootstraptest/runner.rb (main): leave -I options for purelib.rbnobu2008-05-111-1/+4
| | | | | | | untouched. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16364 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bootstraptest/runner.rb (main): handle relative path -r options.nobu2008-05-111-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fix a typo.akr2008-05-111-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_thread.rb: kill and join temporal threads that aremame2008-05-111-0/+5
| | | | | | | created in each test. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16360 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fix typos.akr2008-05-111-19/+19
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16359 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/ruby/test_process.rb (TestProcess#with_stdin): defined.akr2008-05-111-0/+6
| | | | | | | | (TestProcess#test_argv0_noarg): don't use redirect_fds. [ruby-dev:34647] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (MINIRUBY): should not include extension library path.nobu2008-05-111-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * include/ruby/ruby.h (SIZET2NUM): new macro.akr2008-05-111-0/+18
| | | | | | | | | | | | | | | | | | | | | (NUM2SIZET): new macro. * gc.c (struct rb_objspace): use size_t for increment, length and used for 64bit. (allocate_heaps): ditto. (assign_heap_slot): ditto. (set_heaps_increment): ditto. (gc_mark_all): ditto. (is_pointer_to_heap): ditto. (free_unused_heaps): ditto. (gc_sweep): ditto. (os_obj_of): ditto. (rb_gc_call_finalizer_at_exit): ditto. (count_objects): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16356 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * thread.c (thread_cleanup_func_before_exec): extracted fromakr2008-05-111-0/+18
| | | | | | | | | | | | | | | | | | | | | thread_cleanup_func not to touch pthread data. pthread_cond_destroy in forked process may cause deadlock on Debian GNU/Linux Etch on x86, x86-64 and IA64. this doesn't cause resource leak because the process will exec soon. (terminate_atfork_before_exec_i): defined. (rb_thread_atfork_before_exec): defined. * include/ruby/intern.h (rb_thread_atfork_before_exec): declared. * process.c (rb_exec_atfork): call rb_thread_atfork_before_exec instead of rb_thread_atfork. * io.c (popen_exec): call rb_thread_atfork_before_exec instead of rb_thread_atfork. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16355 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add tests of UnboundMethod#{name,owner}kazu2008-05-111-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (tr_trans): should not turn on modify flag if nomatz2008-05-101-0/+3
| | | | | | modification happens. [ruby-dev:34631] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (tr_trans): should check src size, not str size.matz2008-05-101-0/+3
| | | | | | [ruby-dev:34637] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (tr_trans): single '^' does not mean negation.matz2008-05-101-0/+5
| | | | | | [ruby-dev:34632] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_each_line): zero length record separator shouldmatz2008-05-101-0/+7
| | | | | | | | split a string into paragraphs. [ruby-dev:34586] * string.c (rb_str_each_line): RDoc updated. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16345 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm.c (env_mark): mark env->block.self. prevent SEGV when GC occurakr2008-05-101-0/+6
| | | | | | | | in prepare_iseq_build with gcc version 3.4.6 [FreeBSD] 20060305 on FreeBSD/amd64. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* ChangeLog: address mangling.matz2008-05-091-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * thread.c (timeofday): use monotonic clock. based on a patchmatz2008-05-091-0/+5
| | | | | | from zimbatm <zimbatm@oree.ch> in [ruby-core:16627]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16338 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * cont.c (cont_restore_0): dynamic stack direction code should bematz2008-05-081-0/+5
| | | | | | consistent with static one. [ruby-talk:301152] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16337 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (arg): operator assignment "a += b rescue c" should bematz2008-05-081-0/+6
| | | | | | | parsed as "a += (b rescue c)" just like normal assignment. [ruby-talk:301000] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16336 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bignum.c (rb_big_and): bit-wise operation should not take floatmatz2008-05-081-0/+9
| | | | | | | | | | values. [ruby-dev:34612] * bignum.c (rb_big_or): ditto. * bignum.c (rb_big_xor): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk, ext/extmk.rb, lib/mkmf.rb: use absolute path for RUBYOPT.nobu2008-05-081-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16334 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * common.mk, ext/extmk.rb, lib/mkmf.rb: removed RUBYOPT.nobu2008-05-081-1/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16333 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * file.c (rb_find_file_ext): guard load_path from GC.akr2008-05-081-0/+7
| | | | | | | | | gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21) optimizes load_path by holding only RARRAY_LEN(load_path) and RARRAY_PTR(load_path) in registers on IA64 GNU/Linux Etch. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16332 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (MINIRUBY), common.mk (RUBYOPT): add purelib.rb.nobu2008-05-081-0/+5
| | | | | | | [ruby-core:16642] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e