summaryrefslogtreecommitdiffhomepage
path: root/include
AgeCommit message (Collapse)Author
2013-03-27little cosmetic change (delete word Rite); bump dump file version numberYukihiro Matz Matsumoto
2013-03-27resolve conflict from #964Yukihiro Matz Matsumoto
2013-03-26remove all MRB_TT_MAIN from sourceYukihiro Matz Matsumoto
2013-03-26Merge branch 'selftopiv' of https://github.com/carsonmcdonald/mruby into ↵Yukihiro Matz Matsumoto
carsonmcdonald-selftopiv
2013-03-25Merge pull request #1065 from monaka/pr-reduce-stdio-dependencyYukihiro "Matz" Matsumoto
Reduce stdio dependency
2013-03-25Make mrb_top_self return a real instance.Carson McDonald
2013-03-24Separate FILE dependencies with ENABLE_STDIO.Masaki Muranaka
2013-03-24Include stddef.h. It is required by size_t. In case you include stdio.h, ↵Masaki Muranaka
stddef.h is included indirectly.
2013-03-23Changed the RData type field to 'const'Artur K
Within the mruby source code the 'type' field is either initialized, or used in const manner. IMHO changing the type after it has been created might cause hard to track errors.
2013-03-23fixed NaN boxing compilationCremno
Use MRB_SET_VALUE instead of directly accessing members of mrb_value which are different if NaN boxing is enabled.
2013-03-24resolve conflictYukihiro Matz Matsumoto
2013-03-24Use size_t instead of int. This is for portability.Yukihiro Matz Matsumoto
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-23rename mrb_ptr_as_string() to mrb_ptr_to_str()Yukihiro Matz Matsumoto
2013-03-23Add new API mrb_ptr_as_string().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-23resolve conflict regarding backtickYukihiro Matz Matsumoto
2013-03-22Add configuration macro MRB_PARSER_BUF_SIZE.Masaki Muranaka
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-22Use mrb_intern2() instead of mrb_intern(). This is for avoiding overhead by ↵Masaki Muranaka
strlen().
2013-03-21Backtick operationmattn
2013-03-19Merge branch 'master' of github.com:mruby/mrubyYukihiro Matz Matsumoto
2013-03-19add new macro mrb_bool as a counterpart of mrb_bool_valueYukihiro Matz Matsumoto
2013-03-19rename mrb_true_or_false_value() to mrb_bool_value()Yukihiro Matz Matsumoto
2013-03-18Merge pull request #1030 from monaka/pr-some-optimizes-to-vm.c-20130318Yukihiro "Matz" Matsumoto
Some optimizes to vm.c
2013-03-19Add new API mrb_true_or_false_value().Masaki Muranaka
2013-03-19refactor heredoc identifierFUKUZAWA-Tadashi
2013-03-19implement literal %W %w %sFUKUZAWA-Tadashi
refactor string parsing
2013-03-19%I %i literalFUKUZAWA-Tadashi
2013-03-18Remove mrb_checkstack() as unused.Masaki Muranaka
2013-03-18Merge pull request #1025 from FUKUZAWA-Tadashi/masterYukihiro "Matz" Matsumoto
implement %W %w %s
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-18fix the type of bit field variable.crimsonwoods
if 'int' type is 16bit integer, 'unsigned int flags: 21' is too large.
2013-03-17refactor heredoc identifierFUKUZAWA-Tadashi
2013-03-17implement literal %W %w %sFUKUZAWA-Tadashi
refactor string parsing
2013-03-17resolve conflict from #1017Yukihiro Matz Matsumoto
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 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.
2013-03-16Change the place of the close parenthesis. Even though it probably cause no ↵Masaki Muranaka
bugs for current code.
2013-03-15Merge pull request #1010 from monaka/pr-remove-meaningless-bitfields-in-irepYukihiro "Matz" Matsumoto
Remove bit-fields. They doesn't reduce memory on major environments.
2013-03-15removed compatibility macros mrb_ary_new_elts() and mrb_ary_new4()Yukihiro Matz Matsumoto
2013-03-15rename mrb_basic to mrb_basic_ptr; close #1011Yukihiro Matz Matsumoto
2013-03-15obsolete mrb_object; opposite of bc870ceYukihiro Matz Matsumoto
2013-03-15Remove bit-fields. They doesn't reduce memory on major environments.Masaki Muranaka