summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-03-19Use mrb_true_or_false_value() / in mrb_mod_eqq().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_mod_const_defined().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_mod_method_defined().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_mod_cvar_defined().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_bob_not().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_ary_eql().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_ary_equal().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_ary_empty_p().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_struct_eql().Masaki Muranaka
2013-03-19Use mrb_true_or_false_value() / in mrb_struct_equal().Masaki Muranaka
2013-03-19Remove the macro mrb_bool_value(). Use mrb_true_or_false() instead.Masaki Muranaka
2013-03-19Add new API mrb_true_or_false_value().Masaki Muranaka
2013-03-19remove unused local variable beg in parser_yylexYukihiro Matz Matsumoto
2013-03-19bugfix about escaping '\n'FUKUZAWA-Tadashi
2013-03-19remove disused check codeFUKUZAWA-Tadashi
2013-03-19refactor heredoc identifierFUKUZAWA-Tadashi
2013-03-19Could you add me to AUTHORS?FUKUZAWA-Tadashi
2013-03-19implement literal %W %w %sFUKUZAWA-Tadashi
refactor string parsing
2013-03-18personal style preference on function call in flo_to_sYukihiro Matz Matsumoto
2013-03-18Merge pull request #1020 from monaka/pr-add-numeric-format-functionYukihiro "Matz" Matsumoto
Add numeric format function
2013-03-18Merge pull request #1029 from crimsonwoods/fix_the_type_of_aspecYukihiro "Matz" Matsumoto
fix the type of argument named 'aspec'.
2013-03-18fix the type of argument named 'aspec'.crimsonwoods
'aspec' should be large at least 24 bit.
2013-03-18Merge branch 'master' of github.com:mruby/mrubyYukihiro Matz Matsumoto
2013-03-18applying C++ patch from @monaka to support C++ bool type; close #1019Yukihiro Matz Matsumoto
2013-03-17Merge pull request #1023 from monaka/pr-remove-memmove-from-vm.cYukihiro "Matz" Matsumoto
Remove memmove() in src/vm.c.
2013-03-17Merge pull request #1026 from crimsonwoods/fix_bitfield_typeYukihiro "Matz" Matsumoto
fix the type of bit field variable.
2013-03-17Merge pull request #1027 from masuidrive/remove_unused_ifYukihiro "Matz" Matsumoto
Removed unused expr
2013-03-17Merge pull request #1021 from monaka/pr-fix-warning-20130316Yukihiro "Matz" Matsumoto
Fix a warning happens on MRB_INT64 enabled.
2013-03-18Removed unused exprYuichiro MASUI
2013-03-18fix the type of bit field variable.crimsonwoods
if 'int' type is 16bit integer, 'unsigned int flags: 21' is too large.
2013-03-17Merge pull request #1024 from ↵Yukihiro "Matz" Matsumoto
crimsonwoods/remove_bitshifted_constants_larger_than_16bit remove bit-shift operation.
2013-03-17remove bit-shift operation.Kurebayashi, Takahiro
2013-03-17Remove memmove(). Use value_move() instead.Masaki Muranaka
value_move() is type-safer than memmove(). And may be faster on some targets. (If it makes slow on your target, rewrite to call memset(s1, s2, sizeof(mrb_value)*n) in value_move().)
2013-03-17Fix a warning happens on MRB_INT64 enabled.Masaki Muranaka
2013-03-17Add a new function mrb_flo_to_str(). Use it instead of sprintf() as possible.Masaki Muranaka
2013-03-17Add float.h. It exists even if the environment was freestanding. It has been ↵Masaki Muranaka
supported since C89.
2013-03-16Merge pull request #1018 from bovi/arduino-dueYukihiro "Matz" Matsumoto
Compile Support for Arduino Due
2013-03-17resolve conflict from #1017Yukihiro Matz Matsumoto
2013-03-17refine abf1b18 to remove nested ifYukihiro Matz Matsumoto
2013-03-16Merge pull request #1016 from monaka/pr-reduce-string.h-20130316Yukihiro "Matz" Matsumoto
Reduce string.h.
2013-03-16Merge pull request #1015 from monaka/pr-khash-cleanup-20130316Yukihiro "Matz" Matsumoto
khash cleanup.
2013-03-16Add Build Example for Arduino DueDaniel Bovensiepen
2013-03-16Remove stdio.h as it is included in mrbconf.h.Masaki Muranaka
2013-03-16Remove stdlib.h from mruby.h. It is for portability (care for freestanding ↵Masaki Muranaka
environments). This is a first step. It will be reduced stdlib.h in each files later.
2013-03-16Remove unnecessory stdint.h.Masaki Muranaka
2013-03-16Include mruby.h. As KHASH_DEFAULT_SIZE might be defined in mrbconf.h.Masaki Muranaka
2013-03-16Remove unused string.h.Masaki Muranaka
2013-03-16Remove strncmp(). It enables to process various options.Masaki Muranaka
2013-03-16Remove string.h in khash.hMasaki Muranaka
2013-03-16Avoid to call memset(). Use the new function kh_fill_flags() instead. This ↵Masaki Muranaka
is for compatibility.