| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-14 | Merge pull request #1377 from suzukaze/add-comments-in-variable.c | Yukihiro "Matz" Matsumoto | |
| Add comments in variable.c | |||
| 2013-07-14 | Merge pull request #1376 from suzukaze/replace-mrb_intern-in-random.c | Yukihiro "Matz" Matsumoto | |
| Replace mrb_intern() with mrb_intern2() in random.c | |||
| 2013-07-14 | Merge pull request #1375 from suzukaze/replace-mrb_intern | Yukihiro "Matz" Matsumoto | |
| Replace mrb_intern() with mrb_intern2() or mrb_intern_cstr(). | |||
| 2013-07-14 | Merge pull request #1374 from suzukaze/refactor-vm.c | Yukihiro "Matz" Matsumoto | |
| Replace 0 with NULL because NULL is used in struct pointer. | |||
| 2013-07-14 | Add comments in variable.c | Jun Hiroe | |
| 2013-07-14 | Replace mrb_intern() with mrb_intern2() in random.c | Jun Hiroe | |
| 2013-07-14 | Replace mrb_intern() with mrb_intern2() or mrb_intern_cstr(). | Jun Hiroe | |
| 2013-07-14 | Replace 0 with NULL because NULL is used in struct pointer. | Jun Hiroe | |
| 2013-07-13 | singleton class super initialize failed | Yukihiro "Matz" Matsumoto | |
| 2013-07-13 | make_metaclass should skip MRB_TT_ICLASS; close #1369 | Yukihiro "Matz" Matsumoto | |
| 2013-07-12 | Merge pull request #1368 from suzukaze/add-comments-in-opcode.h | Yukihiro "Matz" Matsumoto | |
| Add comments in opcode.h | |||
| 2013-07-12 | Merge pull request #1367 from suzukaze/fix-indent-opcode.h | Yukihiro "Matz" Matsumoto | |
| Fix indents in opcode.h. | |||
| 2013-07-13 | make_metaclass should skip MRB_TT_ICLASS; close #1369 | Yukihiro "Matz" Matsumoto | |
| 2013-07-12 | Fix comments in opcode.h | Jun Hiroe | |
| 2013-07-12 | Add comments in opcode.h | Jun Hiroe | |
| 2013-07-12 | Fix indents in opcode.h. | Jun Hiroe | |
| 2013-07-11 | Merge pull request #1366 from authorNari/patch-1 | Yukihiro "Matz" Matsumoto | |
| add the name 'Narihiro Nakamura' | |||
| 2013-07-12 | add the name 'Narihiro Nakamura' | Narihiro Nakamura | |
| 2013-07-11 | Merge pull request #1365 from suzukaze/refactor-using-REGEXP_CLASS | Yukihiro "Matz" Matsumoto | |
| Refactor codes using REGEXP_CLASS define. | |||
| 2013-07-11 | Merge pull request #1364 from suzukaze/refactor-in-mrb-intern | Yukihiro "Matz" Matsumoto | |
| Replace mrb_intern() func with mrb_intern2() or mrb_intern_cstr() func. | |||
| 2013-07-12 | 2.Replace mrb_intern() func with mrb_intern2() func or mrb_intern_cstr() func. | Jun Hiroe | |
| 2013-07-12 | Refactor codes using REGEXP_CLASS define. | Jun Hiroe | |
| 2013-07-12 | Replace mrb_intern() func with mrb_intern2() func or mrb_intern_cstr() func. | Jun Hiroe | |
| 2013-07-12 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-07-12 | mark stacks in final_marking; close #1359; close #1362 | Yukihiro "Matz" Matsumoto | |
| 2013-07-12 | factor out context stack marking | Yukihiro "Matz" Matsumoto | |
| 2013-07-11 | Merge pull request #1363 from suzukaze/refactor-class.c | Yukihiro "Matz" Matsumoto | |
| Replace mrb_intern() with mrb_intern_cstr(). | |||
| 2013-07-11 | Replace mrb_intern() with mrb_intern_cstr(). | Jun Hiroe | |
| 2013-07-11 | Merge branch 'kyab-toplevel_ext' | Yukihiro "Matz" Matsumoto | |
| 2013-07-11 | add mruby-toplevel-ext as default | Yukihiro "Matz" Matsumoto | |
| 2013-07-11 | add private/protected/public to main | Yukihiro "Matz" Matsumoto | |
| 2013-07-11 | Merge branch 'toplevel_ext' of https://github.com/kyab/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| kyab-toplevel_ext | |||
| 2013-07-11 | add dummy visibility methods (public/protected/private) that do nothing; ref ↵ | Yukihiro "Matz" Matsumoto | |
| #1357 | |||
| 2013-07-10 | Merge pull request #1360 from suzukaze/refactor-string.c | Yukihiro "Matz" Matsumoto | |
| Replace 0 with '\0' as nul terminated string. | |||
| 2013-07-11 | Replace 0 with '\0' as nul terminated string. | Jun Hiroe | |
| 2013-07-10 | put pointer tables before bitmap to avoid alignment issues; ref #1353 | Yukihiro "Matz" Matsumoto | |
| 2013-07-10 | mrb_bob_missing to use mrb_get_args("n") | Yukihiro "Matz" Matsumoto | |
| 2013-07-10 | mrb_mod_alias to use mrb_get_args("nn") | Yukihiro "Matz" Matsumoto | |
| 2013-07-08 | Merge pull request #1355 from suzukaze/refactor-object.c | Yukihiro "Matz" Matsumoto | |
| Refactor true_or() and false_and() in object.c. | |||
| 2013-07-08 | Merge pull request #1356 from CaptainJet/master | Yukihiro "Matz" Matsumoto | |
| Fix matching the host platform on the androideabi toolchain on windows. | |||
| 2013-07-08 | Fix the androideabi toolchain not matching host | Robert Rowe | |
| The included method of determining the host platform in the androideabi would not match to windows if RUBY_PLATFORM returned mingw, wince, or emx. As an added pre-caution, using a case statement with regexp matching will better determine the host platform since it won't be case sensitive and for windows is set to match more specifially than just "win". | |||
| 2013-07-08 | Refactor true_or() and false_and() in object.c. | Jun Hiroe | |
| 2013-07-07 | Merge pull request #1354 from wanabe/call-inherited | Yukihiro "Matz" Matsumoto | |
| call Class#inherited when Class.new(klass) | |||
| 2013-07-07 | Merge pull request #1353 from mirichi/khash | Yukihiro "Matz" Matsumoto | |
| khash.h optimizes more. | |||
| 2013-07-07 | call Class#inherited when Class.new(klass) | hoge | |
| 2013-07-07 | It optimizes more. | mirichi | |
| 2013-07-07 | Merge pull request #1352 from k-tsj/change-param-type-to-suppress-warnings | Yukihiro "Matz" Matsumoto | |
| Change parameter type to suppress -Wsign-compare warnings | |||
| 2013-07-07 | Merge pull request #1349 from mirichi/khash | Yukihiro "Matz" Matsumoto | |
| kh_resize_##name bug fixed. | |||
| 2013-07-07 | Change parameter type to suppress -Wsign-compare warnings | Kazuki Tsujimoto | |
| 2013-07-07 | kh_resize_##name bug fixed. | mirichi | |
