summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2012-11-03cosmetic changes in mrb_obj_clone()Yukihiro Matz Matsumoto
2012-11-03FALSE and STRING should not be converted to float for get_args("f"); close #525Yukihiro Matsumoto
2012-11-03ignore cfunc method in backtraceYukihiro Matsumoto
2012-11-03avoid trigraph (???) in backtraceYukihiro Matsumoto
2012-11-02Merge pull request #524 from iij/pr-backtraceYukihiro "Matz" Matsumoto
show backtrace when mruby dies on unhandled exception
2012-11-02Merge pull request #527 from iij/pr-mipseb-sigsegvYukihiro "Matz" Matsumoto
Fix stack underflow in scope_body() caused by 18dd60c
2012-11-02Merge pull request #526 from skandhas/pr-delete-needless-output-in-stringYukihiro "Matz" Matsumoto
delete needless output in String#[]=
2012-11-02Fix stack underflow in scope_body()Takashi Sogabe
Commit #18dd60c causes side effects. This patch fixes stack underflow in scope_body().
2012-11-02delete needless output in String#[]=skandhas
2012-11-02printf("%s", NULL) is not safe on some platforms.Tomoyuki Sahara
2012-11-02fix compilation.Tomoyuki Sahara
2012-11-02show line numbers in backtrace.Tomoyuki Sahara
2012-11-02show all callinfo's.Tomoyuki Sahara
2012-11-02don't print garbage entries.Tomoyuki Sahara
2012-11-02show backtrace.Tomoyuki Sahara
2012-11-02add test for 8cf42709Yukihiro Matsumoto
2012-11-01Merge pull request #523 from skandhas/pr-fix-embedded-rd-documentYukihiro "Matz" Matsumoto
fix when mruby parse embedded rd document, mruby throw a syntax error.
2012-11-01Merge pull request #522 from bovi/add-test-string-bytesYukihiro "Matz" Matsumoto
Add Test for String#bytes
2012-11-01Add Test for String#each_byteDaniel Bovensiepen
2012-11-01Add Test for String#bytesDaniel Bovensiepen
2012-11-01fix when mruby parse embedded rd document, mruby throw a syntax error.skandhas
2012-11-01Merge remote-tracking branch 'upstream/master' into mrbgemsDaniel Bovensiepen
2012-11-01String#each_byte to use String#bytes; close #508Yukihiro Matsumoto
2012-11-01add String#bytes to return bytes in a stringYukihiro Matsumoto
2012-11-01OP_ADDI/OP_SUBI should handle integer overflow; close #518Yukihiro Matsumoto
2012-10-31Merge pull request #521 from iij/pr-fix-broken-variable-ref-next-statementYukihiro "Matz" Matsumoto
fix: broken variable reference, use 'next' statement
2012-10-31Merge pull request #519 from iij/pr-mruby-exit-status-with-mrbYukihiro "Matz" Matsumoto
fix mruby exit status with mrb file.
2012-11-01constant access should refer outer class/module; close #514Yukihiro Matsumoto
2012-10-31fix: broken variable reference, use 'next' statementKouki Ooyatsu
Because the tree is gone pop() even if it is empty.
2012-10-30fix mruby exit status with mrb file.Akira Yumiyama
2012-10-29Merge pull request #515 from iij/pr-fix-mrb-formatYukihiro "Matz" Matsumoto
fixes *.mrb dump/load format with escaped character.
2012-10-29Merge pull request #517 from ↵Yukihiro "Matz" Matsumoto
skandhas/pr-fix-cannot-get-const-form-singleton-class fix cannot get/set const variable form singleton class
2012-10-29Merge pull request #516 from monaka/pr-use-null-macro-instead-zeroYukihiro "Matz" Matsumoto
Use NULL instead of 0.
2012-10-30fix cannot get/set const variable form singleton classskandhas
2012-10-30Use NULL instead of 0. (It is not a bug fix but a cosmetic change.)Masaki Muranaka
2012-10-30fixes *.mrb dump/load format with escaped character.Akira Yumiyama
- hex-style string support - mrb format changes like: - "\n" (before: \n -> after: \n) - '\n' (before: \n -> after: \\n)
2012-10-28Merge pull request #512 from iij/pr-printf-return-valueYukihiro "Matz" Matsumoto
IO.printf returns nil on CRuby
2012-10-28Merge pull request #513 from ↵Yukihiro "Matz" Matsumoto
monaka/pr-not-use-memset-in-structure-initialization3 Use substitution instead of memset in structure initialization.
2012-10-29Use substitution instead of memset in structure initialization.Masaki Muranaka
2012-10-29IO.printf returns nil on CRubyTomoyuki Sahara
2012-10-29revert part of #507 for warningYukihiro Matsumoto
2012-10-28Merge pull request #510 from masuidrive/masterYukihiro "Matz" Matsumoto
define convert method mrb_int/mrb_float with C string
2012-10-28Merge pull request #511 from iij/pr-no-method-error-mesgYukihiro "Matz" Matsumoto
change the error message (NoMethodError, NameError)
2012-10-28Merge pull request #507 from ↵Yukihiro "Matz" Matsumoto
monaka/pr-not-use-memset-in-structure-initialization Use substitution instead of memset in structure initializations.
2012-10-28change the error message (NoMethodError, NameError)Akira Yumiyama
2012-10-27define convert method mrb_int/mrb_float with C stringYuichiro MASUI
2012-10-26singleton classes should be able to have instance variables; close #509Yukihiro Matsumoto
2012-10-25Use substitution instead of memset in structure initialization.Masaki Muranaka
2012-10-23prevent resource leak (outfile)Yukihiro Matsumoto
2012-10-22Merge pull request #505 from monaka/pr-add-unformat-mrb_raiseYukihiro "Matz" Matsumoto
Change C API for raise.