summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2013-03-26Merge branch 'master' of github.com:mruby/mrubyYukihiro Matz Matsumoto
2013-03-26Merge pull request #1073 from kurodash/pr-builderr-on-vs2012Yukihiro "Matz" Matsumoto
fix build error on VS2012 toolchains.
2013-03-26zero length array is GCC extensionYukihiro Matz Matsumoto
2013-03-26fixed build error on VS2012 toolchains.kurodash
2013-03-26Preprocessor # should be the top of line.Masaki Muranaka
2013-03-26Remove unused macros.Masaki Muranaka
2013-03-26Remove #if 0 ... #endif code.Masaki Muranaka
2013-03-25remove unused functions 'mrb_strerrno' and 'mrb_bug_errno'.crimsonwoods
2013-03-25Merge pull request #1065 from monaka/pr-reduce-stdio-dependencyYukihiro "Matz" Matsumoto
Reduce stdio dependency
2013-03-24Make topenv() static inlinedXuejie "Rafael" Xiao
2013-03-24Reduce using snprintf(). They can replace by mruby API.Masaki Muranaka
2013-03-24Separate FILE dependencies with ENABLE_STDIO.Masaki Muranaka
2013-03-24Adjusted indent, space and tabMATSUMOTO Ryosuke
2013-03-23Merge pull request #1059 from mattn/remove_needless_sprintfYukihiro "Matz" Matsumoto
Remove unused mrb_sprintf
2013-03-24Remove unused mrb_sprintfmattn
2013-03-23Merge pull request #1058 from mattn/remove_mrb_f_sprintfYukihiro "Matz" Matsumoto
Remove needless prototype
2013-03-24resolve conflictYukihiro Matz Matsumoto
2013-03-24Remove needless prototypemattn
2013-03-23Merge pull request #1057 from mattn/mruby-printYukihiro "Matz" Matsumoto
mruby-print gem
2013-03-24Use size_t instead of int. This is for portability.Yukihiro Matz Matsumoto
2013-03-24Remove __printstr__mattn
2013-03-24For particular environments which has 25 < n < 32 bit int. There is no cost ↵Masaki Muranaka
even if you use 16/32bit int targets.
2013-03-24Add brances to macro parameter. It may be refactored as GET_UNPACK_{b,c} are ↵Masaki Muranaka
used only by GETARG_{b,c}.
2013-03-24Use ptrdiff_t instead of int. This is for portability.Masaki Muranaka
2013-03-24Use mrb_bool instead of int. This is for portability; based on e767ebf but ↵Yukihiro Matz Matsumoto
iv_foreach_func must return int
2013-03-23Remove unused marco CODEGEN_DUMP.Masaki Muranaka
2013-03-23rename mrb_ptr_as_string() to mrb_ptr_to_str()Yukihiro Matz Matsumoto
2013-03-23Merge branch 'pr-add-mrb_ptr_as_string' of https://github.com/monaka/mruby ↵Yukihiro Matz Matsumoto
into monaka-pr-add-mrb_ptr_as_string
2013-03-23Remove _obj_classname() as unused.Masaki Muranaka
2013-03-23Use mrb_obj_classname() instead of _obj_classname(). They are complietely same.Masaki Muranaka
2013-03-23Remove *printf() that have "%p" format as possible. Use ↵Masaki Muranaka
tomrb_ptr_as_string() instead.
2013-03-23Add new API mrb_ptr_as_string().Masaki Muranaka
2013-03-23Merge pull request #1048 from monaka/pr-make-array.c-and-vm.c-share-value_moveYukihiro "Matz" Matsumoto
Make array.c and vm.c share value_move().
2013-03-23Merge pull request #1050 from monaka/pr-cleanup-string.c-20130323Yukihiro "Matz" Matsumoto
Clean up string.c
2013-03-23Set MRB_TT_MODULE to Module.Masaki Muranaka
2013-03-23Rename API mrb_str_cat2() to mrb_str_cat_cstr(). This is for naming ↵Masaki Muranaka
orthogonality. mrb_str_cat2() is also left for backward compatibility.
2013-03-23Use mrb_str_cat() instead of mrb_str_cat2() as possible.Masaki Muranaka
2013-03-23Make array.c and vm.c share value_move().Masaki Muranaka
2013-03-22Merge pull request #1039 from crimsonwoods/fix_the_type_of_opcodeYukihiro "Matz" Matsumoto
Fix the type of value that is returned by bit shift expression.
2013-03-23resolve conflict regarding backtickYukihiro Matz Matsumoto
2013-03-22Add configuration macro MRB_PARSER_BUF_SIZE.Masaki Muranaka
2013-03-22allow backtick as a symbolYukihiro Matz Matsumoto
2013-03-21Merge pull request #1040 from mattn/backtickYukihiro "Matz" Matsumoto
xquote operator
2013-03-22Add new API mrb_intern_cstr(). This is for naming orthogonality. mrb_intern ↵Masaki Muranaka
is also left for backward compatibility.
2013-03-22Add an internal function intern_c(). It reduces function call parameter. For ↵Masaki Muranaka
maintainability and performance.
2013-03-22Make intern_gen() inline. This is enough tiny to be inlined.Masaki Muranaka
2013-03-22Use mrb_intern2() instead of mrb_intern(). This is for avoiding overhead by ↵Masaki Muranaka
strlen().
2013-03-22Use mrb_intern2mattn
2013-03-22Use `mattn
2013-03-21fix comment.crimsonwoods