| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-04-28 | accessing out of region; fix #68 | Yukihiro Matsumoto | |
| 2012-04-28 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matsumoto | |
| 2012-04-28 | struct RString member should not be mrb_value | Yukihiro Matsumoto | |
| 2012-04-27 | Merge pull request #67 from mattn/fix_null_deref | Yukihiro "Matz" Matsumoto | |
| Avoid to crash when "mruby -e p" | |||
| 2012-04-27 | object iv table can be NULL; close #66 | Yukihiro Matsumoto | |
| 2012-04-27 | Avoid to crash when "mruby -e p" | mattn | |
| 2012-04-27 | allow float/double switch | Yukihiro Matsumoto | |
| 2012-04-26 | Merge pull request #59 from mattn/fix_issue56 | Yukihiro "Matz" Matsumoto | |
| fix #56 | |||
| 2012-04-26 | size_t is unsigned and can never be < 0 | Patrick Hogan | |
| Removed to silence warning. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | mrb_read_irep should take const char * | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | Fix a few casting warnings. | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | Remove unused ret argument from kh_put. | Patrick Hogan | |
| It doesn't appear to serve any purpose and allows removing warning about various unused variables littered around. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | More switch statement cleanup. | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | Remove a bunch of unused variables. | Patrick Hogan | |
| Removed or commented out to stop compiler whining about them. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | Clean up switch statements. | Patrick Hogan | |
| Some formatting and add default label to silence warning about unhanded cases. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | mrb_ary_dup is only used by mrb_ary_sort which is removed by #if 0 | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-26 | fix #56 | mattn | |
| 2012-04-26 | use mrb_float instead of double | Yukihiro Matsumoto | |
| 2012-04-26 | parse.y: skip() should not ignore end-of-file; fix #55 | Yukihiro Matsumoto | |
| 2012-04-26 | supeclass type check prohibits class definition without superclass specified | Yukihiro Matsumoto | |
| 2012-04-24 | Call dfree member on RData/MRB_TT_DATA when collected | Patrick Hogan | |
| Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-24 | superclass should be a class | Yukihiro Matsumoto | |
| 2012-04-24 | EXPR_BEG by keywords is a start point of commands; backport r35457 from CRuby | Yukihiro Matsumoto | |
| 2012-04-24 | move header files {irep,dump,cdump,ritehash}.h to /include/mruby | Yukihiro Matsumoto | |
| 2012-04-24 | change type of RString.size from size_t to long | Yukihiro Matsumoto | |
| 2012-04-24 | mv variable.h to mruby/variable.h | Yukihiro Matsumoto | |
| 2012-04-23 | remove code for unsupported taint-mode | Yukihiro Matsumoto | |
| 2012-04-23 | wrong type argument for mrb_funcall | Yukihiro Matsumoto | |
| 2012-04-23 | fix inheritance chain; fix #41 | Yukihiro Matsumoto | |
| 2012-04-23 | ``__END__'' must start at the beginning of the line. | NAKAMURA Usaku | |
| 2012-04-23 | Support ``__END__'' as the mark of the end of a script (ISO Ruby). | NAKAMURA Usaku | |
| 2012-04-23 | Merge branch 'master' of github.com:mruby/mruby | mimaki | |
| Conflicts: src/variable.c | |||
| 2012-04-23 | add file header | mimaki | |
| 2012-04-23 | Merge branch 'master' of github.com:mruby/mruby | snaba | |
| 2012-04-22 | Merge pull request #35 from fceller/master | Yukihiro "Matz" Matsumoto | |
| simple fix for underflow / capture errors and warnings | |||
| 2012-04-22 | Merge pull request #37 from k-tsj/fix-proc-segv | Yukihiro "Matz" Matsumoto | |
| Fix SEGV when calling Proc object created by Proc.new | |||
| 2012-04-23 | Fixed to forget to remove some files on 'make clean' | Yuichiro MASUI | |
| 2012-04-22 | Fix SEGV when calling Proc object created by Proc.new | Kazuki Tsujimoto | |
| 2012-04-22 | allow errors & warning to be captured | Frank Celler | |
| 2012-04-22 | simple fix for underflow | Frank Celler | |
| 2012-04-21 | only increment position, if no error has occured | Frank Celler | |
| 2012-04-21 | typo in the node's comment | lucas dicioccio | |
| 2012-04-21 | replace st.[ch] to remove SIZEOF_ST_INDEX_T | Yukihiro Matsumoto | |
| 2012-04-21 | object instance variable do not use st.c | Yukihiro Matsumoto | |
| 2012-04-21 | avoid integer overflow | Yukihiro Matsumoto | |
| 2012-04-20 | Merge pull request #25 from pbhogan/remove-unnecessary-check | Yukihiro "Matz" Matsumoto | |
| Remove unnecessary check for size_t < 0 | |||
| 2012-04-21 | use %zd for size_t argument | Yukihiro Matsumoto | |
| 2012-04-20 | Remove unnecessary check for size_t < 0 | Patrick Hogan | |
| size_t can never be negative since it is an unsigned integer according to standard. Removed to silence warning. Signed-off-by: Patrick Hogan <[email protected]> | |||
| 2012-04-20 | remove prototype for mrb_define_variable() | Yukihiro Matsumoto | |
| 2012-04-20 | remove dependency to SIZEOF_LONG/LONG_LONG | Yukihiro Matsumoto | |
