| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-29 | Merge pull request #2157 from cremno/remove-mrb_str_offset | Yukihiro "Matz" Matsumoto | |
| remove `mrb_str_offset` | |||
| 2014-04-29 | Merge pull request #2154 from cremno/dbl_dig | Yukihiro "Matz" Matsumoto | |
| remove `DBL_DIG` fallback definition | |||
| 2014-04-29 | remove `mrb_str_offset` | cremno | |
| 2014-04-29 | Merge pull request #2153 from kyab/fix_msvc_warning_symbol.c | Yukihiro "Matz" Matsumoto | |
| Fix MSVC warning for symbol.c | |||
| 2014-04-29 | remove `DBL_DIG` fallback definition | cremno | |
| 2014-04-29 | include the missing header for `DBL_DIG` | cremno | |
| 2014-04-29 | Fix MSVC warning for symbol.c | kyab | |
| 2014-04-29 | Merge pull request #2151 from carsonmcdonald/multilinecommentfix | Yukihiro "Matz" Matsumoto | |
| Fix multiline comments | |||
| 2014-04-29 | Merge pull request #2146 from utkarshkukreti/speed-up-select-bang | Yukihiro "Matz" Matsumoto | |
| Speed up Array#select! from O(n^2) to O(n). | |||
| 2014-04-29 | make cioff in struct REnv from int to ptrdiff_t; close #2149 | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | cast intptr_t to mrb_int to pacify compiler warning; close #2148 | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | clear all stack everytime to prevent GC crash; ref #2109 | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | stack may be uncleared | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | fiber context may be NULL | Yukihiro "Matz" Matsumoto | |
| 2014-04-29 | clear ci->proc to prevent GC crash | Yukihiro "Matz" Matsumoto | |
| 2014-04-28 | Add tests for multiline comment parsing | Carson McDonald | |
| 2014-04-28 | Accept =begin and =end with spaces after | Carson McDonald | |
| 2014-04-28 | make peek_n append p->pb to list | Carson McDonald | |
| 2014-04-28 | Speed up Array#select! from O(n^2) to O(n). | Utkarsh Kukreti | |
| 2014-04-28 | should care about the case that given arguments are less then mandatory ↵ | Yukihiro "Matz" Matsumoto | |
| formal arguments and optional arguments exist; close #2144 | |||
| 2014-04-28 | fix OP_BLKPUSH dump format | Yukihiro "Matz" Matsumoto | |
| 2014-04-28 | Merge pull request #2143 from mirichi/test | Yukihiro "Matz" Matsumoto | |
| add post mandatory argument test | |||
| 2014-04-28 | add post mandatory argument test | mirichi | |
| 2014-04-28 | prevent printf warning | Yukihiro "Matz" Matsumoto | |
| 2014-04-28 | enable bintest on TravisCI to see how it works | Yukihiro "Matz" Matsumoto | |
| 2014-04-28 | better codedump formatting | Yukihiro "Matz" Matsumoto | |
| 2014-04-28 | presreve local variables names in irep->lv | Yukihiro "Matz" Matsumoto | |
| 2014-04-28 | Merge pull request #2142 from cremno/rename-mrb_str_buf_append | Yukihiro "Matz" Matsumoto | |
| rename `mrb_str_buf_append` to `mrb_str_cat_str` | |||
| 2014-04-28 | Merge pull request #2141 from kyab/fix_msvc_warning_numeric.c | Yukihiro "Matz" Matsumoto | |
| Fix MSVC warnings for numeric.c | |||
| 2014-04-28 | Merge pull request #2139 from suzukaze/add-array.select_bang | Yukihiro "Matz" Matsumoto | |
| Add Array#select_bang | |||
| 2014-04-28 | Merge pull request #2138 from take-cheeze/struct_to_a | Yukihiro "Matz" Matsumoto | |
| Implement Struct#to_a and Struct#values . | |||
| 2014-04-27 | rename `mrb_str_buf_append` to `mrb_str_cat_str` | cremno | |
| The new name is better and less confusing, because: - `mrb_str_append` calls `mrb_str_to_str` and this function doesn't - `mrb_str_buf_append` _is_ `mrb_str_cat` for `mrb_value` strings | |||
| 2014-04-28 | Fix MSVC warnings for numeric.c | kyab | |
| 2014-04-27 | Add Array#select_bang | Jun Hiroe | |
| 2014-04-27 | Implement Struct#to_a and Struct#values . | take_cheeze | |
| 2014-04-27 | NODE_SUPER should preserve stack region for block; ref #2136 | Yukihiro "Matz" Matsumoto | |
| 2014-04-27 | NODE_DEF should preserve stack region for lambda; ref #2136 | Yukihiro "Matz" Matsumoto | |
| 2014-04-27 | Merge pull request #2136 from mirichi/bug-fix2 | Yukihiro "Matz" Matsumoto | |
| area of implicit nil is not enough to nregs | |||
| 2014-04-27 | add Hash#fetch; close #2134 | Yukihiro "Matz" Matsumoto | |
| 2014-04-27 | re-apply 3644f1b since we have fixed GC bug | Yukihiro "Matz" Matsumoto | |
| 2014-04-27 | forgot to remove abort() | Yukihiro "Matz" Matsumoto | |
| 2014-04-27 | mark may be missed when eval() is called | Yukihiro "Matz" Matsumoto | |
| 2014-04-27 | Merge pull request #2137 from take-cheeze/module_function_eval | Yukihiro "Matz" Matsumoto | |
| Define eval as module function. | |||
| 2014-04-27 | Merge pull request #2135 from mirichi/bug-fix | Yukihiro "Matz" Matsumoto | |
| correct to compare MRB_STACK_GROWTH. | |||
| 2014-04-26 | Class.constants to take optional argument; close #2133 | Yukihiro "Matz" Matsumoto | |
| 2014-04-26 | Define eval as module function. | take_cheeze | |
| 2014-04-26 | area of implicit nil is not enough to nregs | mirichi | |
| 2014-04-26 | The correct is to compare the MRB_STACK_GROWTH. | mirichi | |
| 2014-04-26 | bit more peephole optimization for NODE_LVAR | Yukihiro "Matz" Matsumoto | |
| 2014-04-26 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
