| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-13 | Merge branch 'master' into pr-systemcallerror | Tomoyuki Sahara | |
| 2013-03-13 | Merge branch 'master' into pr-systemcallerror | Tomoyuki Sahara | |
| 2013-03-13 | mrb_sys_fail raises SystemCallError if we have it. | Tomoyuki Sahara | |
| 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 suitable types for variables. | 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 | Rename STR_BUF_MIN_SIZE to MRB_STR_BUF_MIN_SIZE. Make it configurable. | Masaki Muranaka | |
| 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-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-08 | Fixed to uint8_t | Yuichiro MASUI | |
| 2013-03-08 | Change unsigned char to uint8_t | Yuichiro MASUI | |
| 2013-03-08 | unify mrb_ary_new{,_elts,_from_values}; mrb_ary_from_values() is a winner | Yukihiro Matz Matsumoto | |
| 2013-03-08 | New mrb format. The detail is in https://github.com/mruby/mruby/issues/944 | Yuichiro MASUI | |
| 2013-03-06 | Cut off mrb_irep_free from mrb_close; based on a patch from @matsumoto-r; ↵ | Yukihiro Matz Matsumoto | |
| close #951 | |||
| 2013-03-05 | Remove RB_GC_GUARD(x) macro. See also mruby/mruby#948. | Masaki Muranaka | |
| 2013-03-05 | Include stdio.h in mrbconf.h instead of C extension sources. | Masaki Muranaka | |
| 2013-03-04 | Separate Kernel#sprintf support from mruby core. It's moved to mrbgems. | Masaki Muranaka | |
| 2013-03-04 | Merge branch 'heredoc' of https://github.com/FUKUZAWA-Tadashi/mruby into ↵ | Yukihiro Matz Matsumoto | |
| FUKUZAWA-Tadashi-heredoc | |||
| 2013-03-03 | Merge pull request #884 from monaka/pr-use-MRB_IREP_ARRY_INIT_SIZE-macro | Yukihiro "Matz" Matsumoto | |
| Use MRB_IREP_ARRAY_INIT_SIZE macro. | |||
| 2013-03-04 | use mrb_int for RString len | Yukihiro Matz Matsumoto | |
| 2013-03-03 | Merge pull request #934 from monaka/pr-use-mrb_int-in-array.c | Yukihiro "Matz" Matsumoto | |
| Define ARY_MAX_SIZE strictly. Use mrb_int instead of int. | |||
| 2013-03-03 | Merge pull request #932 from kaishuu0123/cleanup-mruby.h | Yukihiro "Matz" Matsumoto | |
| cleanup: unused variable local_svar | |||
| 2013-03-03 | Remove bit-field. | Masaki Muranaka | |
| 2013-03-03 | implement heredoc | FUKUZAWA-Tadashi | |
| 2013-03-03 | Define ARY_MAX_SIZE strictly. Use mrb_int instead of int. | Masaki Muranaka | |
| 2013-03-03 | Remove trailing whitespaces. This is just a cosmetic change. | Masaki Muranaka | |
| 2013-03-03 | cleanup: unused variable local_svar | Kouki Ooyatsu | |
| 2013-03-01 | Merge branch 'pluggable_struct' of https://github.com/mattn/mruby into ↵ | Yukihiro Matz Matsumoto | |
| mattn-pluggable_struct | |||
| 2013-03-01 | Add typedef to structures that have mrb_ prefix. Use typedef-ed type instead ↵ | Masaki Muranaka | |
| of struct directly. | |||
| 2013-03-01 | Pluggable Struct | mattn | |
| 2013-02-28 | Pluggable Math | mattn | |
| 2013-02-27 | Merge pull request #889 from mattn/pluggable_time | Yukihiro "Matz" Matsumoto | |
| Pluggable Time class | |||
| 2013-02-26 | Fix build | mattn | |
| 2013-02-26 | Simplify mrb_range_beg_len(). Don't use OTHER macro. | Masaki Muranaka | |
| 2013-02-25 | Use MRB_IREP_ARRAY_INIT_SIZE macro. It should be configurable since it is ↵ | Masaki Muranaka | |
| possible to reduce RAM size. | |||
| 2013-02-23 | Merge pull request #878 from monaka/pr-reduce-sprintf | Yukihiro "Matz" Matsumoto | |
| Reduce sprintf() calls. Remove mrb_int_to_str() and MRB_INT_FORMAT. | |||
| 2013-02-23 | Merge pull request #875 from ↵ | Yukihiro "Matz" Matsumoto | |
| monaka/pr-enable-building-libmruby-with-DISABLE_STDIO-macro Fix errors caused by stdio.h dependent code. | |||
| 2013-02-24 | Remove commented out code. Remove redundant function calls. | Masaki Muranaka | |
| 2013-02-23 | Reduce sprintf() calls. Remove mrb_int_to_str() and MRB_INT_FORMAT. | Masaki Muranaka | |
| 2013-02-23 | Fix errors caused by stdio.h dependent code. | Masaki Muranaka | |
| 2013-02-21 | better comment description for mrbconf.h configuration | Yukihiro Matz Matsumoto | |
| 2013-02-21 | remove unused HAVE_UNISTD_H altogether; ref #865 | Yukihiro Matz Matsumoto | |
| 2013-02-21 | Clean up mrbconf.h | brainopia | |
| - undef for windows is not used by default so comment it - casting to the same type is not needed - parenthesis are not needed for macro attributes separated by commas - change order of MRB_NAN_BOXING and MRB_INT64 to simplify logic | |||
| 2013-02-17 | Merge pull request #851 from mattn/bye_bye_regexp | Yukihiro "Matz" Matsumoto | |
| Remove DISABLE_REGEXP | |||
| 2013-02-18 | Changed debugger hook to disable | Yuichiro MASUI | |
| 2013-02-18 | Remove DISABLE_REGEXP | mattn | |
| 2013-02-18 | remove TT_REGEX and TT_MATCH | Yukihiro Matz Matsumoto | |
