summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2013-06-28refactor mrb_realloc()fleuria
remove the redundant codes with mrb_malloc_simple()
2013-06-28replaced POSIX header with standard C headerCremno
2013-06-28add nil.to_a, nil.to_f, nil.to_i methodsAkira Yumiyama
2013-06-27Refactor mrb_hash_empty_p() func in hash.cJun Hiroe
2013-06-27fix unnecessary exception in mrb_get_args with "z" format.mimaki
2013-06-27Avoid read_escape() in case of regexpTakashi Sogabe
2013-06-26Merge pull request #1308 from suzukaze/refactor-hash-cYukihiro "Matz" Matsumoto
Refactor mrb_hash_has_keyWithKey() func in hash.c
2013-06-26Refactor mrb_hash_has_keyWithKey() func in hash.cJun Hiroe
2013-06-26Add arena save/restore around use of hash KEY.Carson McDonald
2013-06-25use mrb_malloc_simple() to allocate crc buffer; close #1302Yukihiro "Matz" Matsumoto
2013-06-25add mrb_malloc_simple() that returns NULL on errorYukihiro "Matz" Matsumoto
2013-06-25Fix crash on load *mrbkyab
2013-06-24Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-06-24fixed a bug in push back list; close #1298Yukihiro "Matz" Matsumoto
2013-06-22Add fallback for allocate CRC bufferkyab
2013-06-21Cleanup mrb_str_resize().Masaki Muranaka
2013-06-21make mrb_str_new_cstr DRYcubicdaiya
Using str_new eliminates duplicated codes in mrb_str_new_cstr.
2013-06-20Fix compile warning for abortkyab
2013-06-15Merge upstreamDaniel Bovensiepen
2013-06-23Add ISO commentsDaniel Bovensiepen
2013-06-17Add ISO Number to SymbolDaniel Bovensiepen
2013-06-17Add ISO Number to StringDaniel Bovensiepen
2013-06-17Add ISO Number to RangeDaniel Bovensiepen
2013-06-17Add ISO Number to ProcDaniel Bovensiepen
2013-06-17Add ISO Number to Numeric, Integer and FloatDaniel Bovensiepen
2013-06-17Add ISO Number to KernelDaniel Bovensiepen
2013-06-17Add ISO Number to HashDaniel Bovensiepen
2013-06-17Add ISO Number to EnumerableDaniel Bovensiepen
2013-06-17Add ISO Number to ComparableDaniel Bovensiepen
2013-06-17Add ISO Number to ArrayDaniel Bovensiepen
2013-06-13fix indentYukihiro "Matz" Matsumoto
2013-06-09Singleton raises TypeError on #newDaniel Bovensiepen
2013-06-11Merge pull request #1278 from monaka/pr-calloc-improvementYukihiro "Matz" Matsumoto
Check parameters strictly.
2013-06-11Check parameters strictly.Masaki Muranaka
calloc in C99 is expected to return NULL when nelem * len == 0.
2013-06-11add assertion that check sizeof(void*) should be 4 bytes when MRB_NAN_BOXING ↵Yukihiro "Matz" Matsumoto
is in use
2013-06-09Merge pull request #1276 from h2so5/replace-isupper-msvcYukihiro "Matz" Matsumoto
Replace isupper with a macro in msvc
2013-06-10Use casting instead of a macroh2so5
2013-06-09Replace isupper with a macro in msvch2so5
2013-06-09Remove incorrect removal of ivCarson McDonald
2013-06-08Raise a NameError when symbol isn't found.Carson McDonald
2013-06-08bob doesn't have new so don't undefCarson McDonald
2013-06-08new is removed from Integer so doesn't need to be removed again in FixnumCarson McDonald
2013-05-26Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-05-26Add MRB_WORD_BOXING mode (represent mrb_value as a word)kimu_shu
2013-05-26mruby error messages should be directed to stderrYukihiro "Matz" Matsumoto
2013-05-26fix fiber GC problemYukihiro "Matz" Matsumoto
2013-05-25fixed a bug in initializing post mandatory block parametersYukihiro "Matz" Matsumoto
2013-05-24fiber do not work on MRB_NAN_BOXINGYukihiro "Matz" Matsumoto
2013-05-23manage fiber status (create|running|resumed|terminated)Yukihiro "Matz" Matsumoto
2013-05-23should have protected the return value from GC, even when the method is ↵Yukihiro "Matz" Matsumoto
defined in Ruby; close #1263