summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)Author
2013-04-02Adjust ci->nregs to prevent heap corruptionGilad Zohari
2013-04-02Module#constants should include constants defined in superclass; close #1126Yukihiro "Matz" Matsumoto
2013-04-02add Module#constants (15.2.2.4.24)Yukihiro "Matz" Matsumoto
2013-04-01Merge pull request #1121 from monaka/pr-check-malloc-failed2Yukihiro "Matz" Matsumoto
2013-04-01bugfix: Kernel#!=, and add #!= testcase.Kouki Ooyatsu
2013-03-31Merge pull request #1122 from monaka/pr-cleanup-raiseYukihiro "Matz" Matsumoto
2013-04-01mrb_any_to_s: add separatorYukihiro "Matz" Matsumoto
2013-04-01Use mrb_raise() as possible instead of mrb_raisef().Masaki Muranaka
2013-04-01Fix typos.Masaki Muranaka
2013-04-01Add the care for malloc failed.Masaki Muranaka
2013-03-31Integer.round have no arg.Masaki Muranaka
2013-03-31Remove unused functions.Masaki Muranaka
2013-03-31Move Integer.{floor,ceil,round,truncate} to mrblib/. For maintainability.Masaki Muranaka
2013-03-31should have rewinded stack on exceptions; close #1113Yukihiro "Matz" Matsumoto
2013-03-31revive #to_intYukihiro "Matz" Matsumoto
2013-03-30move to_i from fixnum to integer; remove reference of to_int which is not in ISOYukihiro "Matz" Matsumoto
2013-03-30undef Integer#new; ref #1111Yukihiro "Matz" Matsumoto
2013-03-30Merge pull request #1108 from monaka/pr-cleanup-numeric.c-20130329Yukihiro "Matz" Matsumoto
2013-03-30Add null char terminate to each symbol name.Masaki Muranaka
2013-03-29Rename mrb_fix2str() to mrb_fixnum_to_str(). This is for naming consistency.Masaki Muranaka
2013-03-29Change the second argument of mrb_flo_to_str().Masaki Muranaka
2013-03-29Remove mrb_flt2big() as there is no bignum in the core.Masaki Muranaka
2013-03-29Remove API mrb_string_value(). There have mrb_str_to_str() in the core. And m...Masaki Muranaka
2013-03-29Add CHAR_BIT check. There are uint8_t to char conversions.Masaki Muranaka
2013-03-29Reduce temporary memory allocations. They are redundant.Masaki Muranaka
2013-03-29Modify the type of line-number to uint16_t. Type short is not portable. And i...Masaki Muranaka
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
2013-03-28Merge pull request #1101 from monaka/pr-cleanup-includesYukihiro "Matz" Matsumoto
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
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-29Fixed wrong section size calculationYuichiro MASUI
2013-03-28Merge pull request #1095 from monaka/pr-add-arena-guardYukihiro "Matz" Matsumoto
2013-03-28Merge branch 'pr-fix-mrb_format' of https://github.com/monaka/mruby into mona...Yukihiro "Matz" Matsumoto
2013-03-28Merge pull request #1094 from monaka/pr-use-mrb_formatYukihiro "Matz" Matsumoto
2013-03-28return value from fread(3) just cannot be ignoredYukihiro "Matz" Matsumoto
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. 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
2013-03-27use new mrb_format API from mrb_raisef; its only format specifier is "%S" (st...Yukihiro Matz Matsumoto
2013-03-27implement mrb_format and mrb_vformatYukihiro Matz Matsumoto
2013-03-27Added debug infomation section into .mrb fileYuichiro MASUI