| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-13 | Merge pull request #1851 from tmash06/add_include_limit_h | Yukihiro "Matz" Matsumoto | |
| add including limits.h. | |||
| 2014-03-13 | Merge pull request #1850 from cremno/safer-lit-macros | Yukihiro "Matz" Matsumoto | |
| add mrb_strlen_lit | |||
| 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-12 | Merge pull request #1826 from unak/mswin | Yukihiro "Matz" Matsumoto | |
| ignore *.pdb | |||
| 2014-03-12 | Merge pull request #1848 from joejimbo/master | Yukihiro "Matz" Matsumoto | |
| Added a short description about mruby gems | |||
| 2014-03-11 | Added a short description on how to add mruby gems to the compilation workflow. | Joachim Baran | |
| 2014-03-12 | avoid mrb_string_value_cstr() to copy string between mrb_states in tests | Yukihiro "Matz" Matsumoto | |
| 2014-03-12 | Merge pull request #1843 from take-cheeze/suppress_warnings | Yukihiro "Matz" Matsumoto | |
| Suppress warnings. | |||
| 2014-03-12 | Merge pull request #1846 from take-cheeze/funcall_fix | Yukihiro "Matz" Matsumoto | |
| Fix mrb_funcall calling. | |||
| 2014-03-12 | fix mrb_funcall calling | take_cheeze | |
| 2014-03-11 | remove deprecated register keyword | take_cheeze | |
| 2014-03-11 | don't use of anonymous unions | take_cheeze | |
| 2014-03-11 | Merge pull request #1845 from ksss/sym_intern-argument-type | Yukihiro "Matz" Matsumoto | |
| fix sym_intern argument type | |||
| 2014-03-11 | fix sym_intern argument type | ksss | |
| 2014-03-11 | Merge pull request #1842 from ksss/assert_nothing_raised | Yukihiro "Matz" Matsumoto | |
| add assertion method `assert_nothing_raised' | |||
| 2014-03-11 | add assertion method `assert_nothing_raised' | ksss | |
| 2014-03-10 | Merge pull request #1840 from ksss/bit-field | Yukihiro "Matz" Matsumoto | |
| set bit field for mrb_bool | |||
| 2014-03-10 | Merge pull request #1841 from ksss/symbol-bool | Yukihiro "Matz" Matsumoto | |
| set bool macro | |||
| 2014-03-10 | set bool macro | ksss | |
| 2014-03-10 | set bit field for mrb_bool | ksss | |
| 2014-03-10 | Merge pull request #1838 from take-cheeze/reduce_mrb_open_in_test | Yukihiro "Matz" Matsumoto | |
| Reduce mrb_open calls in mrbgem test. | |||
| 2014-03-10 | Merge pull request #1839 from cubicdaiya/issues/comment_include_guard | Yukihiro "Matz" Matsumoto | |
| Add comments at end of include guard | |||
| 2014-03-10 | add comments at end of include guard | cubicdaiya | |
| 2014-03-10 | reduce mrb_open calls in mrbgem test | take_cheeze | |
| 2014-03-09 | Merge pull request #1837 from monaka/pr-add-comments | Yukihiro "Matz" Matsumoto | |
| Add comments to notify files are auto generated. | |||
| 2014-03-09 | Add comments to notify files are auto generated. | Masaki Muranaka | |
| 2014-03-09 | Merge pull request #1836 from monaka/pr-use-mrb_str_new_cstr | Yukihiro "Matz" Matsumoto | |
| Use mrb_str_new_cstr() instead of mrb_str_new() with strlen(). | |||
| 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 | MSVC: add NAN and INFINITY for older versions | cremno | |
| 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 data_type check to mruby-random | Yukihiro "Matz" Matsumoto | |
| 2014-03-09 | refactoring mruby-random | Yukihiro "Matz" Matsumoto | |
| 2014-03-09 | implement Array#sample in mruby-random gem | Yukihiro "Matz" Matsumoto | |
| 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-08 | Merge pull request #1828 from take-cheeze/string_embed | Yukihiro "Matz" Matsumoto | |
| Use sizeof(void*) instead of mrb_int size and extend embed string size. | |||
| 2014-03-08 | Merge pull request #1830 from cremno/pool-fixes | Yukihiro "Matz" Matsumoto | |
| two pool fixes | |||
| 2014-03-08 | Merge pull request #1829 from takkaw/mirb_linenoise | Yukihiro "Matz" Matsumoto | |
| support linenoise in mirb | |||
| 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 | support linenoise in mirb | takkaw | |
