| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-01 | revert changes to mrbconf.h | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | use C style comments instead of C++ style comments | cubicdaiya | |
| According to CONTRIBUTING.md, Don't use C++ style comments /* This is the prefered comment style */ Use C++ style comments only for temporary comment e.g. commenting out some code lines. | |||
| 2013-12-24 | remove MRB_IREP_ARRAY_INIT_SIZE which is no longer used | Yukihiro "Matz" Matsumoto | |
| 2013-11-25 | remove MRB_PARSER_BUF_SIZE configuration; close #1596 | Yukihiro "Matz" Matsumoto | |
| 2013-11-22 | Make mrb->arena variable sized. Use MRB_GC_FIXED_ARENA for old behavior. | Yukihiro "Matz" Matsumoto | |
| You will not see "arena overflow" error anymore, but I encourage gem authors to check your gems with MRB_GC_FIXED_ARENA to avoid memory broat. | |||
| 2013-08-08 | allow turning off GC generational mode by default by ↵ | Yukihiro "Matz" Matsumoto | |
| MRB_GC_TURN_OFF_GENERATIONAL; #1447 | |||
| 2013-06-10 | restructure header files; move non config lines away from mrbconf.h | Yukihiro "Matz" Matsumoto | |
| 2013-05-26 | Add MRB_WORD_BOXING mode (represent mrb_value as a word) | kimu_shu | |
| 2013-05-11 | Potential fix for 'inline' macro redefinition error - VS2012 C++ | Ryan Scott | |
| 2013-04-29 | always use unsigned int as mrb_bool even in C++ | Yukihiro "Matz" Matsumoto | |
| 2013-04-26 | quote error message in mrbconf.h to stop warning | Yukihiro "Matz" Matsumoto | |
| 2013-04-26 | Add a descrption of MRB_INT16. | Masaki Muranaka | |
| 2013-04-26 | Avoid defining MRB_INT16 adn MRB_INT64 at the same time. This is a poka-yoke. | Masaki Muranaka | |
| 2013-03-29 | Remove str_to_mrb_int(). There is some reasons. | Masaki Muranaka | |
| It is not used in the core. It does not have mrb_ prefix. strtol() is slightly heavy and we have similar API. | |||
| 2013-03-29 | Move TRUE/FALSE existence checks. | Masaki Muranaka | |
| 2013-03-24 | Include stddef.h. It is required by size_t. In case you include stdio.h, ↵ | Masaki Muranaka | |
| stddef.h is included indirectly. | |||
| 2013-03-24 | resolve conflict | Yukihiro Matz Matsumoto | |
| 2013-03-22 | Add configuration macro MRB_PARSER_BUF_SIZE. | Masaki Muranaka | |
| 2013-03-18 | applying C++ patch from @monaka to support C++ bool type; close #1019 | Yukihiro Matz Matsumoto | |
| 2013-03-14 | experimental MRB_INT16 added | Yukihiro Matz Matsumoto | |
| 2013-03-14 | Define type mrb_bool. It is typedef-ed to _Bool on C99, unsigned int on MSVC. | Masaki Muranaka | |
| It is safer than applying 1bit bit-fields to signed int. For forward compatibility, you should substiture only 1 or 0 for the variable typed mrb_bool. | |||
| 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-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-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-03 | Remove trailing whitespaces. This is just a cosmetic change. | Masaki Muranaka | |
| 2013-03-01 | Pluggable Struct | mattn | |
| 2013-02-28 | Pluggable Math | mattn | |
| 2013-02-26 | Fix build | mattn | |
| 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 | Reduce sprintf() calls. Remove mrb_int_to_str() and MRB_INT_FORMAT. | 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-17 | Merge pull request #845 from masuidrive/hook_fetch | Yukihiro "Matz" Matsumoto | |
| Added a hook at VM code fetch. | |||
| 2013-02-17 | Created hook at VM code fetch. It's for debugger | Yuichiro MASUI | |
| 2013-02-15 | Pluggable Regexp | mattn | |
| 2013-01-26 | defined printf macro for mrb_int | Yuichiro MASUI | |
| 2013-01-22 | Fixed mistake | Yuichiro MASUI | |
| 2013-01-21 | Fixed MRB_INT64 warning | Yuichiro MASUI | |
| 2013-01-20 | Improved build scripts and config files | Yuichiro MASUI | |
| 2012-12-18 | Derive DISABLE_GEMS macro according to build configuration | Xuejie Xiao | |
| 2012-12-16 | MSVC doesn't define strtoll but _strtoi64. | Cremno | |
| 2012-11-22 | Deactivate / Activate GEMs Flag introduced into mrbconf.h | Daniel Bovensiepen | |
| 2012-11-16 | define MRB_INT64 flag for mrb_int as 64bit | Yuichiro MASUI | |
| 2012-10-27 | define convert method mrb_int/mrb_float with C string | Yuichiro MASUI | |
