| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-18 | fix the type of argument named 'aspec'. | crimsonwoods | |
| 'aspec' should be large at least 24 bit. | |||
| 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-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-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 | mrb_sys_fail raises SystemCallError if we have it. | Tomoyuki Sahara | |
| 2013-03-12 | Remove mrb_str_new2(). Use mrb_str_new_cstr() instead. | Masaki Muranaka | |
| Make mrb_str_new_cstr() accept NULL pointer. It generates 0byte strings by NULL pointer. | |||
| 2013-03-06 | Cut off mrb_irep_free from mrb_close; based on a patch from @matsumoto-r; ↵ | Yukihiro Matz Matsumoto | |
| close #951 | |||
| 2013-03-03 | cleanup: unused variable local_svar | Kouki Ooyatsu | |
| 2013-02-24 | Remove commented out code. Remove redundant function calls. | Masaki Muranaka | |
| 2013-02-18 | rename hook and macro | Yukihiro Matz Matsumoto | |
| 2013-02-17 | Created hook at VM code fetch. It's for debugger | Yuichiro MASUI | |
| 2013-02-03 | Merge pull request #820 from cremno/unused-stuff | Yukihiro "Matz" Matsumoto | |
| Remove declarations of undefined functions | |||
| 2013-02-03 | removed declarations of undefined functions | Cremno | |
| 2013-02-02 | Remove ";" suffix from function-type macros. | Masamitsu MURASE | |
| 2013-01-30 | removed unused mrb_check_funcall | Cremno | |
| 2013-01-30 | removed unused mrb_funcargv_t | Cremno | |
| 2013-01-08 | remove MRUBY_VERSION for the time being; close #700 | Yukihiro Matz Matsumoto | |
| 2013-01-07 | Merge pull request #705 from authorNari/compact_flags | Yukihiro "Matz" Matsumoto | |
| Compact flags for GC | |||
| 2013-01-07 | Compact flags for GC | Narihiro Nakamura | |
| 2013-01-07 | Remove DEBUG macro definitions. | Masaki Muranaka | |
| 2013-01-07 | Add the generational gc | Narihiro Nakamura | |
| 2012-12-07 | mange arena_idx smarter for smaller ARENA_SIZE; now default to 100 from 1024 | Yukihiro Matz Matsumoto | |
| 2012-11-04 | remove NUM2CHR macro | Yukihiro Matz Matsumoto | |
| 2012-11-04 | remove NUM2CHR macro | Yukihiro Matz Matsumoto | |
| 2012-11-04 | replace SYM2ID() by mrb_symbol() | Yukihiro Matz Matsumoto | |
| 2012-11-04 | remove reference to ruby_verbose and ruby_debug | Yukihiro Matz Matsumoto | |
| 2012-10-23 | mrb_raisef(): new function. Same as previou version of mrb_raise(). | Masaki Muranaka | |
| mrb_raise(): API modified. It cannot treat variable arguments. | |||
| 2012-09-12 | two more wrapper macros for ctype.h | Tomoyuki Sahara | |
| we need them on the platform where 'char' is signed. | |||
| 2012-09-10 | OP_EQ should try direct compararison first | Yukihiro Matsumoto | |
| 2012-09-03 | remove memleaks using linked allocator | Yukihiro Matsumoto | |
| 2012-08-19 | allocf should take ud; https://twitter.com/junjis0203/status/236949976461221889 | Yukihiro Matsumoto | |
| 2012-08-14 | NaN boxing | Yukihiro Matsumoto | |
| 2012-08-14 | move mrb_value def to mruby/value.h | Yukihiro Matsumoto | |
| 2012-08-12 | now segmented list can be used as instance variable tables by ↵ | Yukihiro Matsumoto | |
| -DMRB_USE_IV_SEGLIST; we still need to measure the performance and memory consumption | |||
| 2012-08-09 | add GC.disable and GC.enable | Yukihiro Matsumoto | |
| 2012-08-08 | store :initialize in mrb structure | Yukihiro Matsumoto | |
| 2012-08-01 | make mrb_funcall_argv and mrb_funcall_with_block to take mrb_sym as a method ↵ | Yukihiro Matsumoto | |
| name | |||
| 2012-07-25 | Undefine new for class rather than instance. | Max Anselm | |
| Applies to NilClass, TrueClass, FalseClass, Fixnum, and Float. Add mrb_undef_class_method for DRYness. | |||
| 2012-07-24 | instance_eval should set target_class in the block | Yukihiro Matsumoto | |
| 2012-07-19 | make MRB_ARENA_SIZE to be configurable | Yukihiro Matsumoto | |
| 2012-07-17 | change return type of mrb_p() to void | Yukihiro Matsumoto | |
| 2012-07-15 | make class_from_sym static | Yukihiro Matsumoto | |
| 2012-07-14 | mrb_load_xxx to return undef + mrb_undef_p | Yukihiro Matsumoto | |
| 2012-07-09 | we don't need xmalloc; close #356 | Yukihiro Matsumoto | |
| 2012-07-06 | remove MRB_TT_THREAD,MRB_TT_THREADGRP | Yukihiro Matsumoto | |
