summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-11-29Merge pull request #2656 from ↵Yukihiro "Matz" Matsumoto
murasesyuka/bugfix/mruby-bin-debugger_enforce_the_c99 adhoc fix for pass build
2014-11-29closing to Local Scopemurase_syuka
2014-11-28preserve ICLASS in ci->target_class; fix #2657; ensuring #1467 #1470 #1493 ↵Yukihiro "Matz" Matsumoto
still works
2014-11-27add multiple assignment decomposition testYukihiro "Matz" Matsumoto
2014-11-27wrong register adjustmentYukihiro "Matz" Matsumoto
2014-11-27adhoc fix for pass buildmurase_syuka
2014-11-26Merge pull request #2655 from tmtm/fix-numeric-stepYukihiro "Matz" Matsumoto
Fix: Numeric#step infinite loop.
2014-11-26Fix: Numeric#step infinite loop.TOMITA Masahiro
2014-11-26Merge pull request #2652 from cremno/mrdb-add-missing-null-terminationYukihiro "Matz" Matsumoto
mrdb: add missing null-termination
2014-11-26Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-11-26add "fall through" commentYukihiro "Matz" Matsumoto
2014-11-26fix(String) String#[] accepts float; close #2650 #2651Robert Mosolgo
2014-11-26Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-11-26wrong register number adjustment in multiple assignment; fix #2654Yukihiro "Matz" Matsumoto
2014-11-26OP_APOST local variable display was wrongYukihiro "Matz" Matsumoto
2014-11-26free memory used by breakpointscremno
2014-11-26free return value of dirname()cremno
2014-11-25IO.sysopen does retry. closes #26.Tomoyuki Sahara
2014-11-25Merge pull request #2646 from cremno/mrdb-fix-memory-leaksHiroshi Mimaki
mrdb: fix two memory leaks
2014-11-25Merge pull request #2644 from cremno/mrdb-minor-changesHiroshi Mimaki
mrdb: minor changes
2014-11-25Merge pull request #2653 from ↵Yukihiro "Matz" Matsumoto
cremno/remove-unnecessary-_win32-preprocessor-check remove unnecessary _WIN32 preprocessor check
2014-11-25Merge pull request #29 from sdottaka/fix-for-msvcTomoyuki Sahara
Fix broken build for Visual C++
2014-11-25remove unnecessary _WIN32 preprocessor checkcremno
SIZE_MAX < UINT32_MAX is false on Win32 / Win64.
2014-11-25add missing null-terminationcremno
2014-11-23Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-11-23Merge pull request #2649 from tmtm/fix-string-sliceYukihiro "Matz" Matsumoto
Fix String#slice! raise TypeError or return invalid value.
2014-11-23Fix String#slice! raise TypeError or return invalid value.TOMITA Masahiro
2014-11-23align indent of local variable names in codedump()Yukihiro "Matz" Matsumoto
2014-11-22Fix broken build for Visual C++sdottaka
2014-11-22Merge pull request #2648 from cubicdaiya/use_lit_for_mrdbYukihiro "Matz" Matsumoto
use mrb_str_xxx_lit for mrdb.
2014-11-22should support recursive mlhs decomposition, e.g. (a,b),c = [1,2],3Yukihiro "Matz" Matsumoto
2014-11-22use mrb_str_xxx_lit for mrdb.Tatsuhiko Kubo
2014-11-20Merge pull request #2645 from cremno/mrdb-fix-heap-use-after-freeYukihiro "Matz" Matsumoto
mrdb: fix heap-use-after-free
2014-11-20remove const type qualifiercremno
clang 3.5.0 with -Wextra produces a -Wignored-qualifiers diagnostic.
2014-11-20don't convert function pointer to object pointercremno
2014-11-20remove castcremno
C99+TC3, 7.19.7.1p2: [...] the fgetc function obtains that character as an unsigned char converted to an int [...]
2014-11-20free memory used by breakpointscremno
2014-11-20free return value of dirname()cremno
2014-11-20fix heap-use-after-freecremno
2014-11-19Merge pull request #2641 from sdottaka/super-fixYukihiro "Matz" Matsumoto
Fix an error when calling a method implemented in C by super() with argu...
2014-11-19[ci skip] run spell checker on doc/debugger/README.md and fixed typos ↵Yukihiro "Matz" Matsumoto
mentioned from @bovi and @rmosolgo; ref #2640
2014-11-19Fix an error when calling a method implemented in C by super() with ↵sdottaka
arguments. This fix makes the following code workable: Expected: class MRBTime < Time; def self.new; super(2012, 4, 21); end; end MRBTime.new # => Sat Apr 21 00:00:00 2012 Actual: class MRBTime < Time; def self.new; super(2012, 4, 21); end; end MRBTime.new # => can't convert nil into Integer (TypeError)
2014-11-19Merge pull request #2640 from mruby-Forum/v1.1.01.1.0Hiroshi Mimaki
mruby-1.1.0
2014-11-19separate mrb_notimplement() and mrb_notimplement_m(); ref #2636Yukihiro "Matz" Matsumoto
2014-11-19[ci skip] rephrasing about mailing list description; ref #2639Yukihiro "Matz" Matsumoto
2014-11-19Merge pull request #2639 from suzukaze/fix-mailing-list-descriptionYukihiro "Matz" Matsumoto
Fix mailing list description; ref #2635
2014-11-19Merge pull request #2637 from rmosolgo/not-implemented-error-msgYukihiro "Matz" Matsumoto
fix mrb_notimplement typo
2014-11-18mruby-1.1.0mimaki
2014-11-18Add mruby debugger (mrdb)mimaki
2014-11-18Fix mailing-list descriptionJun Hiroe