| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-11 | remove deprecated register keyword | take_cheeze | |
| 2014-03-11 | don't use of anonymous unions | take_cheeze | |
| 2014-03-11 | fix sym_intern argument type | ksss | |
| 2014-03-10 | Merge pull request #1840 from ksss/bit-field | Yukihiro "Matz" Matsumoto | |
| set bit field for mrb_bool | |||
| 2014-03-10 | set bool macro | ksss | |
| 2014-03-10 | set bit field for mrb_bool | ksss | |
| 2014-03-10 | add comments at end of include guard | cubicdaiya | |
| 2014-03-09 | Use mrb_str_new_cstr() instead of mrb_str_new() with strlen(). | Masaki Muranaka | |
| 2014-03-09 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-03-09 | Merge pull request #1833 from cremno/use-mrb_str_cat_lit | Yukihiro "Matz" Matsumoto | |
| use mrb_str_cat_lit for literals | |||
| 2014-03-09 | Merge pull request #1834 from cremno/use-nan-and-infinity-macros | Yukihiro "Matz" Matsumoto | |
| use NAN and INFINITY macros | |||
| 2014-03-08 | use mrb_str_cat_lit for literals | cremno | |
| 2014-03-09 | remove invocation of strlen() on buffer of strings; with refactoring | Yukihiro "Matz" Matsumoto | |
| 2014-03-09 | Merge pull request #1831 from monaka/pr-make-type-casts-safer | Yukihiro "Matz" Matsumoto | |
| Make type casts safer | |||
| 2014-03-09 | Merge pull request #1832 from ksss/fix-1823 | Yukihiro "Matz" Matsumoto | |
| fix #1823 | |||
| 2014-03-08 | use NAN and INFINITY | cremno | |
| The macro str_to_mrb_float (strto[df]) converts a string to a number, but these two macros can be used to directly get the special value. The NAN macro requires quiet NaN support, but so does str_to_mrb_float. This change also circumvents missing C99 support in Microsoft's C library. Its (or ISO C90's) strtod doesn't parse "nan" or "inf". | |||
| 2014-03-09 | add "?" specifier to check if preceding optional argument is given | Yukihiro "Matz" Matsumoto | |
| 2014-03-08 | fix #1823 | ksss | |
| 2014-03-08 | Make type casts safer. | Masaki Muranaka | |
| 2014-03-07 | pool: use mrb_malloc_simple instead of mrb_malloc | cremno | |
| 2014-03-07 | MSVC: fix C4146 | cremno | |
| C4146 (unary minus operator applied to unsigned type, result still unsigned) | |||
| 2014-03-08 | convert too much from size_t to uint32_t; mrb_sym2name_len() takes size_t* | Yukihiro "Matz" Matsumoto | |
| 2014-03-07 | reduce integer type complexity from int/size_t/uint32_t by unifying them to ↵ | Yukihiro "Matz" Matsumoto | |
| uint32_t; close #1778 | |||
| 2014-03-07 | Merge pull request #1820 from ksss/string-embed | Yukihiro "Matz" Matsumoto | |
| Embed small string | |||
| 2014-03-07 | Hash#== and eql? should not return fixnum; ref #1823 | Yukihiro "Matz" Matsumoto | |
| 2014-03-07 | Fix behavior Hash#eql? | ksss | |
| 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 | fix off-by-one error in attrsym | cubicdaiya | |
| The allocation size for null-terminated character is lacking. In actual, it is no problem in most case because codegen_palloc allocates more a memory size than required size. | |||
| 2014-03-04 | fix off-by-one error in String#rindex(fixnum) | cubicdaiya | |
| null-terminated string should not be included in search targets. | |||
| 2014-03-04 | Use mrb_exc_new_str_lit widely | cubicdaiya | |
| 2014-03-04 | add new macros for MRB_STR_SHARED operations, based on 0f7aecf from @ksss; ↵ | Yukihiro "Matz" Matsumoto | |
| ref #1782 | |||
| 2014-03-03 | Kernel#send does not use mrb_funcall anymore for most cases; ref #1680 | Yukihiro "Matz" Matsumoto | |
| 2014-03-03 | rescue clause should understand splats; close #1786 | Yukihiro "Matz" Matsumoto | |
| 2014-03-02 | add const to char* to pacify warnings for string litral to char* conversion | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | clear exc_catched before jumping to L_RAISE | take_cheeze | |
| 2014-03-01 | define __STDC_* macros in y.tab.cxx too | take_cheeze | |
| 2014-03-01 | wrap scope with do {} while() | take_cheeze | |
| 2014-03-01 | move jmpbuf_id to generated file | take_cheeze | |
| 2014-03-01 | fix compile error of min/max macro | 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 | exception in fiber should make resume to raise in parent fiber context; ↵ | Yukihiro "Matz" Matsumoto | |
| close #1765 | |||
| 2014-03-01 | Merge branch 'issues/comment_style' of https://github.com/cubicdaiya/mruby ↵ | Yukihiro "Matz" Matsumoto | |
| into cubicdaiya-issues/comment_style | |||
| 2014-03-01 | need to initialize flags for pooled strings; close #1768 | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | add _FLAG to SET_SHARED macros; ref #1750 | Yukihiro "Matz" Matsumoto | |
| 2014-03-01 | Merge branch 'array-shared-macro' of https://github.com/ksss/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| ksss-array-shared-macro | |||
| 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-02-28 | support break from fiber block; fix #1766 | Yukihiro "Matz" Matsumoto | |
| 2014-02-28 | restore proc after restoring from fiber; ref #1766 | Yukihiro "Matz" Matsumoto | |
