| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-06-27 | use return value from sprintf/snprintf | Yukihiro Matsumoto | |
| 2012-06-27 | raise NotImplementedError in case of sprintf is missing | Daniel Bovensiepen | |
| 2012-06-26 | Merge pull request #330 from ↵ | Yukihiro "Matz" Matsumoto | |
| monaka/pr-fix-parser-y-to-supress-warning-array-subscript Supress "warning: array subscript has type ‘char’" | |||
| 2012-06-26 | Merge pull request #329 from monaka/pr-reduce-magic-number-in-snprintf | Yukihiro "Matz" Matsumoto | |
| Use sizeof to get char array sizes. | |||
| 2012-06-27 | Supress "warning: array subscript has type ‘char’" | Masaki Muranaka | |
| 2012-06-27 | Use sizeof to get char array sizes. | Masaki Muranaka | |
| 2012-06-27 | Use sizeof to get char array sizes. | Masaki Muranaka | |
| 2012-06-26 | Merge pull request #326 from masamitsu-murase/modify_str_format_len | Yukihiro "Matz" Matsumoto | |
| Fix str_format_len. | |||
| 2012-06-26 | Merge pull request #328 from bovi/kernel-tests | Yukihiro "Matz" Matsumoto | |
| Add more kernel tests | |||
| 2012-06-27 | Fix kernel test descriptions | Daniel Bovensiepen | |
| 2012-06-27 | Add more kernel tests | Daniel Bovensiepen | |
| 2012-06-27 | do not undef config macros | Yukihiro Matsumoto | |
| 2012-06-27 | Fix str_format_len. | Masamitsu MURASE | |
| 2012-06-26 | Merge pull request #325 from monaka/pr-refactor-hex_to_str | Yukihiro "Matz" Matsumoto | |
| Refactor hex_to_str(). | |||
| 2012-06-26 | Refactor hex_to_str(). | Masaki Muranaka | |
| 2012-06-26 | raise NotImplementedError from regexp related string methods; close #319 | Yukihiro Matsumoto | |
| 2012-06-25 | Merge pull request #323 from monaka/pr-fix-str_to_format | Yukihiro "Matz" Matsumoto | |
| Fix str_to_format. | |||
| 2012-06-25 | Merge pull request #322 from masamitsu-murase/prevent_memory_leak | Yukihiro "Matz" Matsumoto | |
| Prevent memory leak when string literal is created. | |||
| 2012-06-26 | Fix str_to_format. See also #314. | Masaki Muranaka | |
| 2012-06-26 | Prevent memory leak when string literal is created. | Masamitsu MURASE | |
| 2012-06-25 | ci->acc should not be left uninitialized; close #303 | Yukihiro Matsumoto | |
| 2012-06-25 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto | |
| 2012-06-25 | use mrb_intern_str instead of mrb_intern if possible | Yukihiro Matsumoto | |
| 2012-06-24 | Merge pull request #318 from masamitsu-murase/fix_instance_tt | Yukihiro "Matz" Matsumoto | |
| Patch for inheritance of built-in class | |||
| 2012-06-24 | Merge pull request #317 from masamitsu-murase/fix_struct_new_gc | Yukihiro "Matz" Matsumoto | |
| Fix GC of struct | |||
| 2012-06-24 | update ISO chapter number in test/t/kernel.rb | Yukihiro Matsumoto | |
| 2012-06-24 | Merge pull request #316 from masamitsu-murase/modify_obj_clone | Yukihiro "Matz" Matsumoto | |
| Modify Kernel#clone and Kernel#dup | |||
| 2012-06-24 | Merge pull request #313 from masamitsu-murase/fix_struct_new | Yukihiro "Matz" Matsumoto | |
| Fix Struct#new and GC | |||
| 2012-06-24 | should mark child env from method (proc) objects | Yukihiro Matsumoto | |
| 2012-06-24 | Modify gc_gray_mark for Struct. | Masamitsu MURASE | |
| 2012-06-24 | Modify obj_free to free instances of Struct. | Masamitsu MURASE | |
| 2012-06-24 | Add sample test for Kernel#clone and Kernel#dup. | Masamitsu MURASE | |
| 2012-06-24 | Modify Kernel#clone and Kernel#dup. | Masamitsu MURASE | |
| Kernel#clone, Kernel#dup: - 'iv' should not be shared with the original object, but it should be copied. Kernel#clone: - 'mt' of singleton_class should be copied. | |||
| 2012-06-24 | Modify instance tt. | Masamitsu MURASE | |
| 2012-06-24 | Implement garbage collection for struct. | Masamitsu MURASE | |
| 2012-06-24 | Fix Struct.new and Struct.[]. | Masamitsu MURASE | |
| Instances of Struct's subclass should have MRB_TT_STRUCT. | |||
| 2012-06-24 | Add test for Struct#==. | Masamitsu MURASE | |
| 2012-06-24 | avoid generating iv name each time in accessors | Yukihiro Matsumoto | |
| 2012-06-24 | pacify const assignment warning | Yukihiro Matsumoto | |
| 2012-06-24 | resolve crash issue on LLVM; longjmp cleared some local variable | Yukihiro Matsumoto | |
| 2012-06-23 | reduce calling mrb_str_new_cstr() to avoid strlen(); #301 | Yukihiro Matsumoto | |
| 2012-06-23 | check object type before retrieving instance variabls; close #311 | Yukihiro Matsumoto | |
| 2012-06-23 | remove assertion for false assumption; mrb_str_new(0, len) where len > 0 can ↵ | Yukihiro Matsumoto | |
| be used to allocate an unintialized string | |||
| 2012-06-22 | Merge pull request #309 from monaka/pr-reduce-mrb_str_new2 | Yukihiro "Matz" Matsumoto | |
| Reduce mrb_str_new2 | |||
| 2012-06-22 | Merge pull request #310 from MobiRuby/fixed_attr | Yukihiro "Matz" Matsumoto | |
| fixed attr_*: forgot '@' | |||
| 2012-06-22 | fixed attr_*: forgot '@' | Yuichiro MASUI | |
| 2012-06-22 | Use mrb_str_new() instead of mrb_str_new2() as possible. | Masaki Muranaka | |
| 2012-06-22 | Add execution time to tests | Daniel Bovensiepen | |
| 2012-06-21 | Merge pull request #307 from bovi/time-for-tests | Yukihiro "Matz" Matsumoto | |
| Add execution time to tests | |||
| 2012-06-21 | Merge pull request #306 from bovi/printf-optional | Yukihiro "Matz" Matsumoto | |
| Make printf optional based on sprintf | |||
