summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-03-29Modify 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-29Reduce temporary memory allocations. They are redundant.Masaki Muranaka
2013-03-29Remove RiteFile as no used.Masaki Muranaka
2013-03-28Merge pull request #1102 from carsonmcdonald/gvarunderscorefixYukihiro "Matz" Matsumoto
Allow globals that start with $_
2013-03-28Merge pull request #1101 from monaka/pr-cleanup-includesYukihiro "Matz" Matsumoto
Cleanup includes
2013-03-28Allow globals that start with $_Carson McDonald
2013-03-29Rearrange 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-29Move TRUE/FALSE existence checks.Masaki Muranaka
2013-03-29Sort include files. Some redundant includes are removed.Masaki Muranaka
2013-03-29Remove limits.h from numeric.h. Add limits.h to some C files.Masaki Muranaka
2013-03-28Merge pull request #1100 from masuidrive/fixed_debug_argsYukihiro "Matz" Matsumoto
Fixed wrong section size calculation
2013-03-28Merge pull request #1098 from monaka/pr-fix-type-in-dump.hYukihiro "Matz" Matsumoto
Fix a type mismatch.
2013-03-29Fixed wrong section size calculationYuichiro MASUI
2013-03-28Fix a type mismatch.Masaki Muranaka
2013-03-28Merge pull request #1089 from bovi/gen-legalYukihiro "Matz" Matsumoto
LEGAL File Generator for Builds
2013-03-28Merge pull request #1095 from monaka/pr-add-arena-guardYukihiro "Matz" Matsumoto
Add arena guard. It will be exausted when the pool is huge.
2013-03-28Merge branch 'pr-fix-mrb_format' of https://github.com/monaka/mruby into ↵Yukihiro "Matz" Matsumoto
monaka-pr-fix-mrb_format
2013-03-28Merge pull request #1094 from monaka/pr-use-mrb_formatYukihiro "Matz" Matsumoto
Use mrb_format() instead of s*printf().
2013-03-28Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-03-28return value from fread(3) just cannot be ignoredYukihiro "Matz" Matsumoto
2013-03-28Merge pull request #1091 from monaka/pr-fix-raisef-format-in-struct.cYukihiro "Matz" Matsumoto
Fix raisef() format strings in struct.c.
2013-03-28Merge pull request #1097 from monaka/pr-fix-raisef-format-in-sprintf.cYukihiro "Matz" Matsumoto
Fix format for new mrb_raisef().
2013-03-28Fix format for new mrb_raisef().Masaki Muranaka
2013-03-28Add arena guard. It will be exausted when the pool is huge.Masaki Muranaka
2013-03-28Fix argunum_error() to use mrb_format().Masaki Muranaka
2013-03-28Fix %s to %S.Masaki Muranaka
2013-03-28Modify mrb_name_error() to use mrb_format().Masaki Muranaka
2013-03-28Catch return values to silent compilerDaniel Bovensiepen
2013-03-28Fix raisef formats in struct.c.Masaki Muranaka
2013-03-28LEGAL file generator for binariesDaniel Bovensiepen
2013-03-28Fix. In some cases, %S substitutions were failed.Masaki Muranaka
2013-03-28Remove the escape backslash from the result string.Masaki Muranaka
2013-03-27Merge pull request #1082 from masuidrive/add_debug_infoYukihiro "Matz" Matsumoto
Added debug infomation section into .mrb file
2013-03-27replace non formatting printf to (f)putsYukihiro "Matz" Matsumoto
2013-03-27Merge pull request #1085 from mattn/travis_configYukihiro "Matz" Matsumoto
Add travis_config.rb
2013-03-27Merge pull request #1086 from carsonmcdonald/randtypecheckfixYukihiro "Matz" Matsumoto
Use mrb_check_datatype directly to avoid warning.
2013-03-27use new mrb_format API from mrb_raisef; its only format specifier is "%S" ↵Yukihiro Matz Matsumoto
(stringify) and takes mrb_value; close #1062
2013-03-27implement mrb_format and mrb_vformatYukihiro Matz Matsumoto
2013-03-27Use mrb_check_datatype directly to avoid warning.Carson McDonald
2013-03-27Remove empty linemattn
2013-03-27Fix .travis.ymlmattn
2013-03-27Add travis_config.rbmattn
2013-03-27Merge pull request #1084 from kano4/pr-add-simple-usage-message-for-mirbYukihiro "Matz" Matsumoto
Add simple usage message for mirb
2013-03-27Add simple usage message for mirbkano4
2013-03-27Merge pull request #1083 from kurodash/pr-build-err-vs2012-20130327Yukihiro "Matz" Matsumoto
Fix build error on VS2012 toolchain.
2013-03-27Fix build error on VS2012 toolchain.kurodash
A local variables define beginning of a scope block. VS2012 unacceptable ";;" in struct definition.
2013-03-27Added debug infomation section into .mrb fileYuichiro MASUI
2013-03-26Merge pull request #1080 from matsumoto-r/add_test_for_random_class_methodsYukihiro "Matz" Matsumoto
Add test for Random::srand
2013-03-26Merge pull request #1079 from mattn/remove_unused_nYukihiro "Matz" Matsumoto
Remove unused variable
2013-03-27Add test for Random::srandMATSUMOTO Ryosuke