| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-12 | Merge pull request #986 from ↵ | Yukihiro "Matz" Matsumoto | |
| monaka/pr-use-mrb_obj_alloc_string-instead-of-str_alloc Remove str_alloc(). Use mrb_obj_alloc_string() instead. | |||
| 2013-03-12 | Merge pull request #985 from monaka/pr-remove-unused-code-20130312 | Yukihiro "Matz" Matsumoto | |
| Remove mrb_str_sublen() as it is not used. | |||
| 2013-03-12 | Merge pull request #984 from monaka/pr-make-mrb_str_new2-obsolete | Yukihiro "Matz" Matsumoto | |
| Remove mrb_str_new2(). | |||
| 2013-03-12 | Merge pull request #982 from monaka/pr-make-MRB_STR_BUF_MIN_SIZE-configurable | Yukihiro "Matz" Matsumoto | |
| Rename STR_BUF_MIN_SIZE to MRB_STR_BUF_MIN_SIZE. Make it configurable. | |||
| 2013-03-12 | Use mrb_int as possible. | Masaki Muranaka | |
| 2013-03-12 | Copy to *lenp just in case lenp != NULL. | Masaki Muranaka | |
| 2013-03-12 | Merge pull request #992 from kano4/unused | Yukihiro "Matz" Matsumoto | |
| Remove unused return value in mruby.c | |||
| 2013-03-12 | Merge pull request #990 from monaka/pr-use-suitable-types-in-sprintf.c-20130312 | Yukihiro "Matz" Matsumoto | |
| Use suitable types for variables. | |||
| 2013-03-12 | Merge pull request #988 from monaka/pr-use-suitable-types-20130312 | Yukihiro "Matz" Matsumoto | |
| Use suitable types for variables. | |||
| 2013-03-12 | Merge pull request #983 from monaka/pr-fix-indent-in-parse.y-20130312 | Yukihiro "Matz" Matsumoto | |
| Fix indents in parse.y. | |||
| 2013-03-12 | Merge pull request #991 from kano4/add_static | Yukihiro "Matz" Matsumoto | |
| Add static declaration | |||
| 2013-03-12 | Remove unused return value in mruby.c | kano4 | |
| 2013-03-12 | Replace tabs with spaces | kano4 | |
| 2013-03-12 | Add static declaration | kano4 | |
| 2013-03-12 | Use suitable types for variables. | Masaki Muranaka | |
| 2013-03-12 | Use suitable types for variables. | Masaki Muranaka | |
| 2013-03-12 | Use int. They are no need to use unsigned/signed long. Think about 16bit ↵ | Masaki Muranaka | |
| architectures. | |||
| 2013-03-12 | Add comments for paradnoid (a.k.a. mission critical) engineers. | Masaki Muranaka | |
| 2013-03-12 | Remove a meaningless type cast. | Masaki Muranaka | |
| 2013-03-12 | Remove str_alloc(). Use mrb_obj_alloc_string instead. | Masaki Muranaka | |
| 2013-03-12 | Remove mrb_str_sublen() as it is not used. | Masaki Muranaka | |
| 2013-03-12 | Remove mrb_str_new2(). Use mrb_str_new_cstr() instead. | Masaki Muranaka | |
| Make mrb_str_new_cstr() accept NULL pointer. It generates 0byte strings by NULL pointer. | |||
| 2013-03-12 | Fix indents. | Masaki Muranaka | |
| 2013-03-12 | Rename STR_BUF_MIN_SIZE to MRB_STR_BUF_MIN_SIZE. Make it configurable. | Masaki Muranaka | |
| 2013-03-12 | Merge pull request #981 from iij/pr-fix-inspect | Yukihiro "Matz" Matsumoto | |
| fix inspect method | |||
| 2013-03-12 | fix inspect method | Akito Mochizuki | |
| 2013-03-11 | Merge pull request #976 from kano4/dev | Yukihiro "Matz" Matsumoto | |
| Fix indent in string.c | |||
| 2013-03-11 | Merge pull request #978 from carsonmcdonald/timetypofix | Yukihiro "Matz" Matsumoto | |
| Fix typo | |||
| 2013-03-11 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matz Matsumoto | |
| 2013-03-11 | restore arena after mrb_define_method() | Yukihiro Matz Matsumoto | |
| 2013-03-11 | return value from mrb_gc_arena_save() is int | Yukihiro Matz Matsumoto | |
| 2013-03-11 | Fix typo | Carson McDonald | |
| 2013-03-11 | Fix indent in string.c | kano4 | |
| 2013-03-10 | Merge pull request #974 from masuidrive/change_default_gem_path | Yukihiro "Matz" Matsumoto | |
| Change default gem path. | |||
| 2013-03-10 | Change default gem path. | Yuichiro MASUI | |
| 2013-03-09 | more CFLAGS and LDFLAGS are specified automatically. | crimsonwoods | |
| 2013-03-09 | add a new feature to select the target Android platform. | crimsonwoods | |
| 2013-03-09 | add a new feature to select the target architecture. | crimsonwoods | |
| 2013-03-08 | define and use print format macros for mrb_int | Cremno | |
| For portability: %ld can't be used to print a 64-bit mrb_int on WIN(32|64) because long is 32-bit wide. | |||
| 2013-03-08 | Merge pull request #1 from monaka/pr-new-mrb_format | Yuichiro MASUI | |
| Patches to new_mrb_format | |||
| 2013-03-09 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matz Matsumoto | |
| 2013-03-09 | OP_ARRAY may overflow ARG_C | Yukihiro Matz Matsumoto | |
| 2013-03-09 | Fix warnings. | Masaki Muranaka | |
| 2013-03-09 | Don't use int. It decreases portability. Use size_t as array index and ↵ | Masaki Muranaka | |
| length. It avoids overflow in the extreme situations. | |||
| 2013-03-09 | Sanity check. As there are implicaton SIZE_MAX >= UINT32_MAX in this code. ↵ | Masaki Muranaka | |
| This assumption may break on some targets which have 16bit memory space. | |||
| 2013-03-09 | Clean up code. | Masaki Muranaka | |
| 2013-03-09 | Store to *bin_size if bin_size != NULL. | Masaki Muranaka | |
| 2013-03-09 | Use type cast not void* but char*. Don't substiture void pointers. | Masaki Muranaka | |
| 2013-03-08 | Remove unused substitutions and calculations. | Masaki Muranaka | |
| 2013-03-08 | Don't initialize variables that store result as MRB_DUMP_OK. It possibly ↵ | Masaki Muranaka | |
| causes bugs on modifications in the future. | |||
