| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-23 | Changed 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-23 | fixed NaN boxing compilation | Cremno | |
| Use MRB_SET_VALUE instead of directly accessing members of mrb_value which are different if NaN boxing is enabled. | |||
| 2013-03-24 | resolve conflict | Yukihiro Matz Matsumoto | |
| 2013-03-24 | Use size_t instead of int. This is for portability. | Yukihiro Matz Matsumoto | |
| 2013-03-24 | Use mrb_bool instead of int. This is for portability; based on e767ebf but ↵ | Yukihiro Matz Matsumoto | |
| iv_foreach_func must return int | |||
| 2013-03-23 | rename mrb_ptr_as_string() to mrb_ptr_to_str() | Yukihiro Matz Matsumoto | |
| 2013-03-23 | Add new API mrb_ptr_as_string(). | Masaki Muranaka | |
| 2013-03-23 | Rename 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-23 | resolve conflict regarding backtick | Yukihiro Matz Matsumoto | |
| 2013-03-22 | Add configuration macro MRB_PARSER_BUF_SIZE. | Masaki Muranaka | |
| 2013-03-22 | Add new API mrb_intern_cstr(). This is for naming orthogonality. mrb_intern ↵ | Masaki Muranaka | |
| is also left for backward compatibility. | |||
| 2013-03-22 | Use mrb_intern2() instead of mrb_intern(). This is for avoiding overhead by ↵ | Masaki Muranaka | |
| strlen(). | |||
| 2013-03-21 | Backtick operation | mattn | |
| 2013-03-19 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matz Matsumoto | |
| 2013-03-19 | add new macro mrb_bool as a counterpart of mrb_bool_value | Yukihiro Matz Matsumoto | |
| 2013-03-19 | rename mrb_true_or_false_value() to mrb_bool_value() | Yukihiro Matz Matsumoto | |
| 2013-03-18 | Merge pull request #1030 from monaka/pr-some-optimizes-to-vm.c-20130318 | Yukihiro "Matz" Matsumoto | |
| Some optimizes to vm.c | |||
| 2013-03-19 | Add new API mrb_true_or_false_value(). | Masaki Muranaka | |
| 2013-03-19 | refactor heredoc identifier | FUKUZAWA-Tadashi | |
| 2013-03-19 | implement literal %W %w %s | FUKUZAWA-Tadashi | |
| refactor string parsing | |||
| 2013-03-19 | %I %i literal | FUKUZAWA-Tadashi | |
| 2013-03-18 | Remove mrb_checkstack() as unused. | Masaki Muranaka | |
| 2013-03-18 | Merge pull request #1025 from FUKUZAWA-Tadashi/master | Yukihiro "Matz" Matsumoto | |
| implement %W %w %s | |||
| 2013-03-18 | fix the type of argument named 'aspec'. | crimsonwoods | |
| 'aspec' should be large at least 24 bit. | |||
| 2013-03-18 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro Matz Matsumoto | |
| 2013-03-18 | applying C++ patch from @monaka to support C++ bool type; close #1019 | Yukihiro Matz Matsumoto | |
| 2013-03-18 | fix the type of bit field variable. | crimsonwoods | |
| if 'int' type is 16bit integer, 'unsigned int flags: 21' is too large. | |||
| 2013-03-17 | refactor heredoc identifier | FUKUZAWA-Tadashi | |
| 2013-03-17 | implement literal %W %w %s | FUKUZAWA-Tadashi | |
| refactor string parsing | |||
| 2013-03-17 | resolve conflict from #1017 | Yukihiro Matz Matsumoto | |
| 2013-03-16 | Remove stdio.h as it is included in mrbconf.h. | Masaki Muranaka | |
| 2013-03-16 | Remove 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-16 | Remove unnecessory stdint.h. | Masaki Muranaka | |
| 2013-03-16 | Include mruby.h. As KHASH_DEFAULT_SIZE might be defined in mrbconf.h. | Masaki Muranaka | |
| 2013-03-16 | Remove string.h in khash.h | Masaki Muranaka | |
| 2013-03-16 | Avoid to call memset(). Use the new function kh_fill_flags() instead. This ↵ | Masaki Muranaka | |
| is for compatibility. | |||
| 2013-03-16 | Change the place of the close parenthesis. Even though it probably cause no ↵ | Masaki Muranaka | |
| bugs for current code. | |||
| 2013-03-15 | Merge pull request #1010 from monaka/pr-remove-meaningless-bitfields-in-irep | Yukihiro "Matz" Matsumoto | |
| Remove bit-fields. They doesn't reduce memory on major environments. | |||
| 2013-03-15 | removed compatibility macros mrb_ary_new_elts() and mrb_ary_new4() | Yukihiro Matz Matsumoto | |
| 2013-03-15 | rename mrb_basic to mrb_basic_ptr; close #1011 | Yukihiro Matz Matsumoto | |
| 2013-03-15 | obsolete mrb_object; opposite of bc870ce | Yukihiro Matz Matsumoto | |
| 2013-03-15 | Remove bit-fields. They doesn't reduce memory on major environments. | Masaki Muranaka | |
| 2013-03-14 | experimental MRB_INT16 added | Yukihiro Matz Matsumoto | |
| 2013-03-14 | Merge pull request #997 from monaka/pr-add-type-mrb_bool_t | Yukihiro "Matz" Matsumoto | |
| Define mrb_bool_t. | |||
| 2013-03-14 | use size_t for string length C API | Yukihiro Matz Matsumoto | |
| 2013-03-14 | symbol length make size_t from mrb_int; cancel #993 ↵ | Yukihiro Matz Matsumoto | |
| monaka/pr-cleanup-symbol.c-20130312 | |||
| 2013-03-14 | Define type mrb_bool. It is typedef-ed to _Bool on C99, unsigned int on MSVC. | Masaki Muranaka | |
| It is safer than applying 1bit bit-fields to signed int. For forward compatibility, you should substiture only 1 or 0 for the variable typed mrb_bool. | |||
| 2013-03-13 | Merge branch 'master' into pr-systemcallerror | Tomoyuki Sahara | |
| 2013-03-13 | Merge branch 'master' into pr-systemcallerror | Tomoyuki Sahara | |
| 2013-03-13 | mrb_sys_fail raises SystemCallError if we have it. | Tomoyuki Sahara | |
