| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-19 | Merge pull request #1890 from take-cheeze/fiber_resuming | Yukihiro "Matz" Matsumoto | |
| Revert MRB_FIBER_RESUMED as MRB_FIBER_RESUMING. | |||
| 2014-03-19 | rename mrb_yield_internal to mrb_yield_with_class since it's no longer internal | Yukihiro "Matz" Matsumoto | |
| 2014-03-19 | export mrb_yield_internal. | Tomoyuki Sahara | |
| 2014-03-19 | revert MRB_FIBER_RESUMED as MRB_FIBER_RESUMING to fix recurive resume | take_cheeze | |
| 2014-03-19 | string functions arguments changed from mrb_int to size_t that would take ↵ | Yukihiro "Matz" Matsumoto | |
| strlen() | |||
| 2014-03-19 | change mrb_int to size_t that would take strlen() | Yukihiro "Matz" Matsumoto | |
| 2014-03-18 | add a space after C reserved words | Yukihiro "Matz" Matsumoto | |
| 2014-03-16 | unify indent style | cubicdaiya | |
| 2014-03-15 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-15 | string length type to be mrb_int | Yukihiro "Matz" Matsumoto | |
| 2014-03-15 | symbol length type to be mrb_int | Yukihiro "Matz" Matsumoto | |
| 2014-03-15 | Add Fiber's double resume test and fix it. | take_cheeze | |
| 2014-03-15 | type of mrb_type() should be enum mrb_vtype when MRB_NAN_BOXING is on | Yukihiro "Matz" Matsumoto | |
| 2014-03-13 | Merge pull request #1849 from cremno/add-mrb_int_bit-macro | Yukihiro "Matz" Matsumoto | |
| add MRB_INT_BIT | |||
| 2014-03-13 | Merge pull request #1851 from tmash06/add_include_limit_h | Yukihiro "Matz" Matsumoto | |
| add including limits.h. | |||
| 2014-03-13 | add including limits.h. | tmash06 | |
| Because Android's libc(bionic) defines SIZE_MAX at limits.h. | |||
| 2014-03-12 | add mrb_strlen_lit which makes _lit macros safer | cremno | |
| strlen(3) + string literal is usually optimized but strlen(3) doesn't check if its argument is really a string literal. This is important for mruby's _static functions to which some _lit macros are expanded (string literals have static storage). See comment for some additional info. remove unnecessary parentheses | |||
| 2014-03-11 | add MRB_INT_BIT | cremno | |
| 2014-03-11 | don't use of anonymous unions | take_cheeze | |
| 2014-03-09 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-09 | Merge pull request #1834 from cremno/use-nan-and-infinity-macros | Yukihiro "Matz" Matsumoto | |
| use NAN and INFINITY macros | |||
| 2014-03-09 | remove invocation of strlen() on buffer of strings; with refactoring | Yukihiro "Matz" Matsumoto | |
| 2014-03-08 | MSVC: add NAN and INFINITY for older versions | cremno | |
| 2014-03-08 | Make type casts safer. | Masaki Muranaka | |
| 2014-03-08 | use sizeof(void*) instead of mrb_int size and extend embed string size | take_cheeze | |
| 2014-03-06 | make embed string when create literals | ksss | |
| 2014-03-06 | embed small string | ksss | |
| use flags 4 for *this object is embed* use flags 8~64 for *embed string length* | |||
| 2014-03-05 | error.h: add extern "C" for C++ | cremno | |
| 2014-03-04 | fix a comment end of include guard | cubicdaiya | |
| 2014-03-04 | introduce mrb_exc_new_str_lit for C string literals | cubicdaiya | |
| 2014-03-03 | fix include guard style. | Tatsuya Matsumoto | |
| 2014-03-01 | fix compile error | take_cheeze | |
| 2014-03-01 | support c++ exception | take_cheeze | |
| 2014-03-01 | allow send method not to call mrb_funcall if calling method is implemented ↵ | Yukihiro "Matz" Matsumoto | |
| in Ruby; fix #1680 ref #1765 | |||
| 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. | |||
| 2014-03-01 | mrb_fiber_yield() is available now; you have to link mruby-fiber mrbgem to ↵ | Yukihiro "Matz" Matsumoto | |
| use the function; there's no function available to create new fiber from C (countapart of Lua's lua_newthread), but that's because you cannot create a new fiber from C due to mruby C API design limitation. define your method to create fibers in Ruby; close #1269 | |||
| 2014-02-27 | revert 38e9ce21 and API changed; mrb_get_backtrace() -> renamed to ↵ | Yukihiro "Matz" Matsumoto | |
| mrb_exc_backtrace since this is a backtrace method implementation of Exception; mrb_get_backtrace_at() -> removed; mrb_get_backtrace() -> added to get backtrace in array (like caller) | |||
| 2014-02-27 | add new function mrb_get_backtrace_at() to get backtrace at ci and pc | Yukihiro "Matz" Matsumoto | |
| 2014-02-26 | Merge pull request #1744 from cubicdaiya/feature/introduce_mrb_str_cat_lit | Yukihiro "Matz" Matsumoto | |
| Introduce mrb_str_cat_lit | |||
| 2014-02-26 | introduce mrb_str_cat_lit() to create strings from C string litrals | cubicdaiya | |
| 2014-02-26 | Merge pull request #1740 from tmash06/fix_missing_spaces | Yukihiro "Matz" Matsumoto | |
| fix missing spaces. | |||
| 2014-02-26 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2014-02-26 | fix missing spaces. | Tatsuya Matsumoto | |
| 2014-02-24 | add MRB_ prefix to STRINGIZE macro | take_cheeze | |
| 2014-02-20 | move src/error.h to include/mruby/error.h | take_cheeze | |
| 2014-02-18 | mrb_flo_to_str: internal linkage | cremno | |
| 2014-02-17 | Added spaces in version.h macros for complying with C++11 | Paolo Bosetti | |
| 2014-02-17 | more mrb_flo_to_str fixes | cremno | |
| - remove float check (take mrb_float instead of mrb_value) - support -0.0 - fix range error if log10 is called when n == 0.0 - MSVC older than 2013: add signbit macro (for double) | |||
| 2014-02-17 | remove max_digit from mrb_flo_to_str() | Yukihiro "Matz" Matsumoto | |
