summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
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
2014-11-18Merge pull request #28 from ksss/file-sizeTomoyuki Sahara
Implement FileTest.size
2014-11-17fix mrb_notimplement typoRobert Mosolgo
2014-11-17Merge pull request #2636 from ksss/mrb_notimplementYukihiro "Matz" Matsumoto
Implement C API mrb_notimplement
2014-11-17Implement C API mrb_notimplementksss
2014-11-16Implement FileTest.sizeksss
- File.size delegate to FileTest.size - File.size more faster by reading i-node value
2014-11-13Merge pull request #25 from matz/gc_on_enfileTomoyuki Sahara
garbage collect when open(2) fails with ENFILE or EMFILE
2014-11-13garbage collect when open(2) fails with ENFILE or EMFILEYukihiro "Matz" Matsumoto
2014-11-12add Float::{INFINITY,NAN} if availableYukihiro "Matz" Matsumoto
2014-11-10Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-11-10Merge pull request #2634 from xxuejie/fix-mrb-iv-check-prototypeYukihiro "Matz" Matsumoto
Fix mrb_iv_check function decleration
2014-11-10Fix mrb_iv_check function declerationXuejie "Rafael" Xiao
2014-11-08Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-11-08Merge pull request #2633 from southwolf/patch-1Yukihiro "Matz" Matsumoto
Modify Arduino build config for IDE >= 1.5.7
2014-11-08Merge pull request #2631 from mimaki/sizeof_format_not_supportedYukihiro "Matz" Matsumoto
%zu format is not supported by MSVC
2014-11-08change BIN_PATH for new gc in Arduino IDE >= 1.5.7SouthWolf
2014-11-08Modify Arduino build config for IDE >= 1.5.7SouthWolf
Arduino IDE >= 1.5.7 Changed ARDUINO_PATH from `Contents/Resources/Java` to `Contents/Java`, mentioned in #2632
2014-11-06%zu format is not supported by MSVCHiroshi Mimaki
2014-11-04update teeny of MRUBY_VERSION; ref #2629Yukihiro "Matz" Matsumoto
2014-11-04avoid using rewind(3) to load mrb filesYukihiro "Matz" Matsumoto
2014-11-04read whole mrb file at once to calculate correct padding offset; ref #2630Yukihiro "Matz" Matsumoto
2014-11-04specify alignment specifier for GCC and MSC; ref #2630Yukihiro "Matz" Matsumoto
2014-11-04Fix misaligned access when reading irep; close #2630Yukihiro "Matz" Matsumoto
Add padding bytes before iseq block that may be used as mrb_code[]. Note that dumped mrb format has changed. Based on a patch from kimu_shu <[email protected]>
2014-10-31Merge pull request #2628 from fenrir-naru/cygwin_hostYukihiro "Matz" Matsumoto
Under cygwin host, ncurses.a is only available instead of termcap.a.
2014-10-31Under cygwin host, ncurses.a is only available instead of termcap.a.M.Naruoka
2014-10-30avoid wrong ArgumentError from mrb_get_args() when surrounding method takes ↵Yukihiro "Matz" Matsumoto
more than one argument; ref #2627
2014-10-30add cast to return from aget_index(); ref #2627Yukihiro "Matz" Matsumoto
2014-10-30Merge pull request #2627 from mattn/fix-2626Yukihiro "Matz" Matsumoto
Handle Array#[float, int] Close #2626
2014-10-29Handle Array#[float, int] Close #2626mattn
2014-10-29use mrb_get_args to parse Integer() option; ref #2625Yukihiro "Matz" Matsumoto