| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-04-04 | Merge pull request #3579 from clayton-shopify/fix-time-alloc-usec | Yukihiro "Matz" Matsumoto | |
| Correctly handle large negative usec value. | |||
| 2017-04-03 | Correctly handle large negative usec value. | Clayton Smith | |
| 2017-04-03 | Merge pull request #3578 from bggd/appveyor_clone_depth | Yukihiro "Matz" Matsumoto | |
| Change AppVeyor's clone_depth | |||
| 2017-04-03 | Change AppVeyor's clone_depth | bggd | |
| 2017-04-03 | Revert "Adjust VM stack window size; fix #3547" | Yukihiro "Matz" Matsumoto | |
| This reverts commit 6dabb33635a149fc571cf285352ea4f89bdc52f0. | |||
| 2017-04-03 | Adjust VM stack window size; fix #3547 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Fixed out-of-bounds access of `ensure[]`; ref #3491 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Protect ensure clause lambdas from GC; fix #3491 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Merge pull request #3577 from okkez/fix-return-value-of-each-slice | Yukihiro "Matz" Matsumoto | |
| Change return value of Enumerable#each_slice | |||
| 2017-04-03 | Merge pull request #3576 from okkez/fix-return-value-of-each-cons | Yukihiro "Matz" Matsumoto | |
| Change return value of Enumberable#each_cons | |||
| 2017-04-03 | Insert ` mrb_field_write_barrier()` for GC; fix #3534 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Add `struct REnv` to union `RVALUE`; ref #3534 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Unify `else` clause style | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Remove spaces around parens | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Change return value of Enumerable#each_slice | Kenji Okimoto | |
| More compatibility to CRuby. | |||
| 2017-04-03 | Change return value of Enumberable#each_cons | Kenji Okimoto | |
| More compatibility to CRuby. | |||
| 2017-04-03 | Adjust exit point in `loop_pop()`; fix #3541 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | NODE_SPLAT to pass VAL/NOVAL; fix #3532 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Restrict recursion levels in method_missing(); fix #3556 | Yukihiro "Matz" Matsumoto | |
| Note this is a temporary fix. Error message generation (including `inspect`) should be deferred until its use. | |||
| 2017-04-03 | String#initialize to make a string empty; ref #3574 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Remove unnecessary indirection; ref #3557 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Check before generating special operators (e.g. OP_ADD); fix #3557 | Yukihiro "Matz" Matsumoto | |
| 2017-04-03 | Update callinfo->target_class in mrb_exec_irep(); fix #3543 | Yukihiro "Matz" Matsumoto | |
| 2017-04-02 | Merge pull request #3573 from ksss/parameters | Yukihiro "Matz" Matsumoto | |
| Fix parameters when noname rest | |||
| 2017-04-02 | Reduce object allocation | ksss | |
| 2017-04-02 | Fix parameters when noname rest | ksss | |
| 2017-04-02 | Fixed out of bounds access; fix #3572, ref #3553 | Yukihiro "Matz" Matsumoto | |
| 2017-04-01 | Add alias "append" to Array#push, and "prepend" to Array#unshift. | Yukihiro "Matz" Matsumoto | |
| According to CRuby [Feature#12746] | |||
| 2017-04-01 | Extend VM stack just in case; ref #3551 | Yukihiro "Matz" Matsumoto | |
| 2017-04-01 | Should not shrink VM stack; fix #3551 | Yukihiro "Matz" Matsumoto | |
| 2017-04-01 | Pacify signed warning; ref #3565 | Yukihiro "Matz" Matsumoto | |
| 2017-04-01 | NODE_ASGN arguments may be 127 (CALL_MAXARGS) accidentally; fix #3559 | Yukihiro "Matz" Matsumoto | |
| 2017-04-01 | Argument order of __case_eqq was wrong; fix #3567 | Yukihiro "Matz" Matsumoto | |
| 2017-04-01 | The stack may be reallocated in the func call; fix #3560 | Yukihiro "Matz" Matsumoto | |
| 2017-04-01 | Improve Time.new() performance using division; fix #3561 | Yukihiro "Matz" Matsumoto | |
| 2017-04-01 | Expand stack for method_missing; fix #3528 | Yukihiro "Matz" Matsumoto | |
| 2017-03-31 | Merge pull request #3571 from keizo042/fix_get_constant_of_module_from_sigleton | Yukihiro "Matz" Matsumoto | |
| Modify to get constant of parent module in singleton class; fix #3568 | |||
| 2017-03-31 | Modify to get constant of parent module in singleton class; fix #3568 | Kouichi Nakanishi | |
| 2017-03-31 | Avoid crash if hv.n is greater than kh_size(h); fix #3565 | Yukihiro "Matz" Matsumoto | |
| The resulting behavior is different from CRuby, but modifying hash key afterwards is undefined behavior in ISO spec. | |||
| 2017-03-30 | small cosmetic change; ref #3570 | Yukihiro "Matz" Matsumoto | |
| 2017-03-30 | Merge pull request #3570 from keizo042/fix_cv_definition_in_singleton | Yukihiro "Matz" Matsumoto | |
| Modify class variable definition in singleton class; fix #3539 | |||
| 2017-03-30 | Modify class variable definition in singleton class; fix #3539 | Kouichi Nakanishi | |
| 2017-03-30 | Merge pull request #3566 from okkez/fix-enumerator-each-with-index | Yukihiro "Matz" Matsumoto | |
| Fix Enumerator#each_with_index with block | |||
| 2017-03-30 | Fix Enumerator#each_with_index with block | Kenji Okimoto | |
| In previous version, ``` a = [3, 2, 1] e = a.each e.sort_by(&:to_i) # => [] ``` In this version, ``` a = [3, 2, 1] e = a.each e.sort_by(&:to_i) # => [1, 2, 3] ``` | |||
| 2017-03-29 | Merge pull request #3558 from ksss/domain | Yukihiro "Matz" Matsumoto | |
| Should raise FloatDomainError | |||
| 2017-03-29 | Should raise FloatDomainError | ksss | |
| 2017-03-29 | Merge pull request #3563 from clayton-shopify/dup-renumber-keys | Yukihiro "Matz" Matsumoto | |
| Renumber hash keys during dup since there may be duplicates. | |||
| 2017-03-29 | Merge pull request #3564 from okkez/set-proper-class-to-subclass-of-array | Yukihiro "Matz" Matsumoto | |
| Set proper class to subclass of Array | |||
| 2017-03-29 | Set proper class to subclass of Array | okkez | |
| More compatibility to CRuby. | |||
| 2017-03-28 | Renumber hash keys during dup since there may be duplicates. | Clayton Smith | |
