| Age | Commit message (Expand) | Author |
| 2012-07-03 | add context to parser, that would hold local variable info, filename, and lin... | Yukihiro Matsumoto |
| 2012-07-03 | modify compiler API; replace mrb_compie_xxx with mrb_load_xxx() that combines... | Yukihiro Matsumoto |
| 2012-07-03 | constify parser input strings | Yukihiro Matsumoto |
| 2012-07-03 | remove size_t from parser | Yukihiro Matsumoto |
| 2012-06-28 | do not undef config macro MRB_USE_FLOAT | Yukihiro Matsumoto |
| 2012-06-27 | do not undef config macros | Yukihiro Matsumoto |
| 2012-06-24 | Modify Kernel#clone and Kernel#dup. | Masamitsu MURASE |
| 2012-06-23 | check object type before retrieving instance variabls; close #311 | Yukihiro Matsumoto |
| 2012-06-21 | dislose mrb_hash_keys; close #304 | Yukihiro Matsumoto |
| 2012-06-21 | move KHASH_DECLARE to header files | Yukihiro Matsumoto |
| 2012-06-21 | Merge branch 'modify_khash' of https://github.com/crimsonwoods/mruby into cri... | Yukihiro Matsumoto |
| 2012-06-20 | remove RuntimeError from mrb_state | Yukihiro Matsumoto |
| 2012-06-19 | split declaration and definition for 'khash_xxx'. | crimsonwoods |
| 2012-06-17 | allow disabling Struct class | Yukihiro Matsumoto |
| 2012-06-15 | use ENABLE/DISABLE instead of INCLUDE for configuration macro names | Yukihiro Matsumoto |
| 2012-06-15 | Time class made optinal | Yukihiro Matsumoto |
| 2012-06-15 | remove unreference Error class macros | Yukihiro Matsumoto |
| 2012-06-15 | do not use fixed sized buffer in mrb_bug/mrb_warn; close #287 | Yukihiro Matsumoto |
| 2012-06-14 | Fix redundant declraration warnings by gcc. | Masaki Muranaka |
| 2012-06-14 | make Math module optional | Yukihiro Matsumoto |
| 2012-06-13 | stop using strtol (via readint) except in load.c; use custom readint_float | Yukihiro Matsumoto |
| 2012-06-13 | move RSHIFT from numeric.h to numeric.c | Yukihiro Matsumoto |
| 2012-06-13 | optimized OP_{ADD,SUB,MUL,DIV} to use numeric function for fixnums to handle ... | Yukihiro Matsumoto |
| 2012-06-12 | Make sprintf/format optional. | Masaki Muranaka |
| 2012-06-12 | remove khash#kh_debug | Yukihiro Matsumoto |
| 2012-06-08 | add auxiliary data pointer to mrb_state | Yuichiro MASUI |
| 2012-06-07 | memory leak in kh_resize_##name() | SatoshiOdawara |
| 2012-06-06 | Merge pull request #248 from monaka/pr-use-value-i-for-nil-false-check | Yukihiro "Matz" Matsumoto |
| 2012-06-07 | Use value.i for nil/false check. | Masaki Muranaka |
| 2012-06-07 | remove src/gc.h | Yukihiro Matsumoto |
| 2012-06-05 | mruby/array.h: rename buf to ptr | Yukihiro Matsumoto |
| 2012-06-05 | mruby/string.h: rename buf to ptr | Yukihiro Matsumoto |
| 2012-06-05 | Merge branch 'jf/parser-dump' of https://github.com/thecodeshop/mruby into th... | Yukihiro Matsumoto |
| 2012-06-05 | symbol can contain non printable characters | Yukihiro Matsumoto |
| 2012-06-03 | Refactor hardcoded PARSER_DUMP macro | Jon |
| 2012-06-03 | make arrays to share bodies | Yukihiro Matsumoto |
| 2012-06-03 | remove unused mrb_exec_recursive | Yukihiro Matsumoto |
| 2012-06-03 | should decref shared string body on gc_free | Yukihiro Matsumoto |
| 2012-06-03 | make shared string to reference-counted C structure to reduce GC pressure | Yukihiro Matsumoto |
| 2012-06-03 | remove unsafe macros in hash.h | Yukihiro Matsumoto |
| 2012-06-02 | make color in OBJECT_HEADER unsigned | Yukihiro Matsumoto |
| 2012-06-02 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto |
| 2012-06-02 | naming convention consistency for hash.h | Yukihiro Matsumoto |
| 2012-06-02 | refactoring around mrb_hash_new | Yukihiro Matsumoto |
| 2012-06-02 | remove unused st_hash_end/unit reference | Yukihiro Matsumoto |
| 2012-06-02 | remove unused mrb_mem_clear | Yukihiro Matsumoto |
| 2012-06-02 | unify long,size_t to int in array.[ch] | Yukihiro Matsumoto |
| 2012-06-02 | changed prototype mrb_ary_replace to (mrb_state*,mrb_value,mrb_value) | Yukihiro Matsumoto |
| 2012-06-02 | export exception handling | Frank Celler |
| 2012-06-02 | fixed prototype: g++ will complain about definition not being a prototype, sh... | Frank Celler |