| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-30 | Merge pull request #871 from monaka/pr-remove-bit-field-in-mrb_value | Yukihiro "Matz" Matsumoto | |
| Remove the bit-field by mrb_value.tt | |||
| 2013-03-30 | move to_i from fixnum to integer; remove reference of to_int which is not in ISO | Yukihiro "Matz" Matsumoto | |
| 2013-03-30 | undef Integer#new; ref #1111 | Yukihiro "Matz" Matsumoto | |
| 2013-03-30 | cancel f4c27c6 since mruby.h is required for mrb_value etc. anyway | Yukihiro "Matz" Matsumoto | |
| 2013-03-30 | Merge pull request #1108 from monaka/pr-cleanup-numeric.c-20130329 | Yukihiro "Matz" Matsumoto | |
| Cleanup numeric.c | |||
| 2013-03-29 | Merge pull request #1115 from monaka/pr-add-null-char-to-each-symbol-name | Yukihiro "Matz" Matsumoto | |
| Add null char terminate to each symbol name. | |||
| 2013-03-30 | Add null char terminate to each symbol name. | Masaki Muranaka | |
| 2013-03-29 | Rename mrb_fix2str() to mrb_fixnum_to_str(). This is for naming consistency. | Masaki Muranaka | |
| 2013-03-29 | Include mrbconf.h as MRB_INT_MAX used here. | Masaki Muranaka | |
| 2013-03-29 | Change the second argument of mrb_flo_to_str(). | Masaki Muranaka | |
| Export mrb_flo_to_str() as API. | |||
| 2013-03-29 | Remove mrb_flt2big() as there is no bignum in the core. | Masaki Muranaka | |
| Add new API mrb_flo_to_fixnum(). You can replace mrb_flt2big() to mrb_flo_to_fixnum() with few modifications. | |||
| 2013-03-29 | Merge pull request #1107 from masuidrive/fixed_testrb_path | Yukihiro "Matz" Matsumoto | |
| Fixed testrb load path | |||
| 2013-03-29 | Fixed testrb load path | Yuichiro MASUI | |
| 2013-03-29 | Merge pull request #1106 from monaka/pr-remove-mrb_string_value | Yukihiro "Matz" Matsumoto | |
| Remove API mrb_string_value(). | |||
| 2013-03-29 | Remove API mrb_string_value(). There have mrb_str_to_str() in the core. And ↵ | Masaki Muranaka | |
| mrb_string_value() is no merit to keep using. | |||
| 2013-03-29 | Merge pull request #1105 from monaka/pr-display-more-information-in-verbose-mode | Yukihiro "Matz" Matsumoto | |
| Display the command line when mrbc is kicked in the verbose mode. | |||
| 2013-03-29 | Merge pull request #1104 from monaka/pr-simplify-dump-load | Yukihiro "Matz" Matsumoto | |
| Simplify dump/load | |||
| 2013-03-29 | Display the command line when mrbc is kicked in the verbose mode. | Masaki Muranaka | |
| 2013-03-29 | Add CHAR_BIT check. There are uint8_t to char conversions. | 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 | Reduce temporary memory allocations. They are redundant. | Masaki Muranaka | |
| 2013-03-29 | Modify the type of line-number to uint16_t. Type short is not portable. And ↵ | Masaki Muranaka | |
| it cannot be more than UINT16_MAX because of the mrbc binary format. | |||
| 2013-03-29 | Reduce temporary memory allocations. They are redundant. | Masaki Muranaka | |
| 2013-03-29 | Remove RiteFile as no used. | Masaki Muranaka | |
| 2013-03-28 | Merge pull request #1102 from carsonmcdonald/gvarunderscorefix | Yukihiro "Matz" Matsumoto | |
| Allow globals that start with $_ | |||
| 2013-03-28 | Merge pull request #1101 from monaka/pr-cleanup-includes | Yukihiro "Matz" Matsumoto | |
| Cleanup includes | |||
| 2013-03-28 | Allow globals that start with $_ | Carson McDonald | |
| 2013-03-29 | Rearrange SIZE_MAX. It is supported also VC++ since its version10. And there ↵ | Masaki Muranaka | |
| seems SIZE_MAX is defined in stdint.h. And it possibly (depends on the version of VC++) conflicts with SIZE_MAX in limits.h. This patch is no need if I did not support VC++. | |||
| 2013-03-29 | Move TRUE/FALSE existence checks. | Masaki Muranaka | |
| 2013-03-29 | Sort include files. Some redundant includes are removed. | Masaki Muranaka | |
| 2013-03-29 | Remove limits.h from numeric.h. Add limits.h to some C files. | Masaki Muranaka | |
| 2013-03-28 | Merge pull request #1100 from masuidrive/fixed_debug_args | Yukihiro "Matz" Matsumoto | |
| Fixed wrong section size calculation | |||
| 2013-03-28 | Merge pull request #1098 from monaka/pr-fix-type-in-dump.h | Yukihiro "Matz" Matsumoto | |
| Fix a type mismatch. | |||
| 2013-03-29 | Fixed wrong section size calculation | Yuichiro MASUI | |
| 2013-03-28 | Fix a type mismatch. | Masaki Muranaka | |
| 2013-03-28 | Merge pull request #1089 from bovi/gen-legal | Yukihiro "Matz" Matsumoto | |
| LEGAL File Generator for Builds | |||
| 2013-03-28 | Merge pull request #1095 from monaka/pr-add-arena-guard | Yukihiro "Matz" Matsumoto | |
| Add arena guard. It will be exausted when the pool is huge. | |||
| 2013-03-28 | Merge branch 'pr-fix-mrb_format' of https://github.com/monaka/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| monaka-pr-fix-mrb_format | |||
| 2013-03-28 | Merge pull request #1094 from monaka/pr-use-mrb_format | Yukihiro "Matz" Matsumoto | |
| Use mrb_format() instead of s*printf(). | |||
| 2013-03-28 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-03-28 | return value from fread(3) just cannot be ignored | Yukihiro "Matz" Matsumoto | |
| 2013-03-28 | Merge pull request #1091 from monaka/pr-fix-raisef-format-in-struct.c | Yukihiro "Matz" Matsumoto | |
| Fix raisef() format strings in struct.c. | |||
| 2013-03-28 | Merge pull request #1097 from monaka/pr-fix-raisef-format-in-sprintf.c | Yukihiro "Matz" Matsumoto | |
| Fix format for new mrb_raisef(). | |||
| 2013-03-28 | Fix format for new mrb_raisef(). | Masaki Muranaka | |
| 2013-03-28 | Add arena guard. It will be exausted when the pool is huge. | Masaki Muranaka | |
| 2013-03-28 | Fix argunum_error() to use mrb_format(). | Masaki Muranaka | |
| 2013-03-28 | Fix %s to %S. | Masaki Muranaka | |
| 2013-03-28 | Modify mrb_name_error() to use mrb_format(). | Masaki Muranaka | |
| 2013-03-28 | Catch return values to silent compiler | Daniel Bovensiepen | |
| 2013-03-28 | Fix raisef formats in struct.c. | Masaki Muranaka | |
