| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-17 | Add float.h. It exists even if the environment was freestanding. It has been ↵ | Masaki Muranaka | |
| supported since C89. | |||
| 2013-03-17 | resolve conflict from #1017 | Yukihiro Matz Matsumoto | |
| 2013-03-16 | Merge pull request #1016 from monaka/pr-reduce-string.h-20130316 | Yukihiro "Matz" Matsumoto | |
| Reduce string.h. | |||
| 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 | Remove unused string.h. | Masaki Muranaka | |
| 2013-03-16 | Remove string.h in khash.h | Masaki Muranaka | |
| 2013-03-16 | fix segmentation fault in BasicObject#inspect | takkaw | |
| 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 | resolve conflict | Yukihiro Matz Matsumoto | |
| 2013-03-14 | Fix indentation in symbol.c | kano4 | |
| 2013-03-14 | Add break to default case in switch statement | kano4 | |
| 2013-03-14 | add mrb_int overflow check for mrb_int | 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 | Merge pull request #993 from monaka/pr-cleanup-symbol.c-20130312 | Yukihiro "Matz" Matsumoto | |
| Cleanup symbol.c. | |||
| 2013-03-14 | remove PARANOID from comments | Yukihiro Matz Matsumoto | |
| 2013-03-14 | Merge pull request #987 from monaka/pr-clean-up-parse.y-20130312 | Yukihiro "Matz" Matsumoto | |
| Clean up parse.y. | |||
| 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-14 | Remove compiler warning | mattn | |
| 2013-03-13 | Merge pull request #1001 from monaka/pr-add-type-check-in-mrb_str_to_cstr | Yukihiro "Matz" Matsumoto | |
| Add the type check in mrb_str_to_cstr(). | |||
| 2013-03-13 | Merge pull request #1002 from monaka/pr-extract-stack-zero-filling | Yukihiro "Matz" Matsumoto | |
| Extract stack zero filling into new function. | |||
| 2013-03-13 | Merge pull request #996 from iij/pr-systemcallerror | Yukihiro "Matz" Matsumoto | |
| mrb_sys_fail raises an instance of (subclass of) SystemCallError if we have it | |||
| 2013-03-13 | Add null check | kano4 | |
| 2013-03-13 | Extract stack zero filling to stack_clear(). Porting evelopers can optimize ↵ | Masaki Muranaka | |
| by replacing to memset() on their own risk. | |||
| 2013-03-13 | Simplify. Temporary variable "i" is removed. | Masaki Muranaka | |
| 2013-03-13 | Add the type check in mrb_str_to_cstr(). | Masaki Muranaka | |
| 2013-03-13 | mrb_str_new2 -> mrb_str_new_cstr | Tomoyuki Sahara | |
| 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 | |
| 2013-03-12 | Merge pull request #986 from ↵ | Yukihiro "Matz" Matsumoto | |
| monaka/pr-use-mrb_obj_alloc_string-instead-of-str_alloc Remove str_alloc(). Use mrb_obj_alloc_string() instead. | |||
| 2013-03-12 | Merge pull request #985 from monaka/pr-remove-unused-code-20130312 | Yukihiro "Matz" Matsumoto | |
| Remove mrb_str_sublen() as it is not used. | |||
| 2013-03-12 | Merge pull request #984 from monaka/pr-make-mrb_str_new2-obsolete | Yukihiro "Matz" Matsumoto | |
| Remove mrb_str_new2(). | |||
| 2013-03-12 | Merge pull request #982 from monaka/pr-make-MRB_STR_BUF_MIN_SIZE-configurable | Yukihiro "Matz" Matsumoto | |
| Rename STR_BUF_MIN_SIZE to MRB_STR_BUF_MIN_SIZE. Make it configurable. | |||
| 2013-03-12 | Use mrb_int as possible. | Masaki Muranaka | |
| 2013-03-12 | Copy to *lenp just in case lenp != NULL. | Masaki Muranaka | |
| 2013-03-12 | Merge pull request #988 from monaka/pr-use-suitable-types-20130312 | Yukihiro "Matz" Matsumoto | |
| Use suitable types for variables. | |||
| 2013-03-12 | Merge pull request #983 from monaka/pr-fix-indent-in-parse.y-20130312 | Yukihiro "Matz" Matsumoto | |
| Fix indents in parse.y. | |||
| 2013-03-12 | Use suitable types for variables. | Masaki Muranaka | |
| 2013-03-12 | Use int. They are no need to use unsigned/signed long. Think about 16bit ↵ | Masaki Muranaka | |
| architectures. | |||
| 2013-03-12 | Add comments for paradnoid (a.k.a. mission critical) engineers. | Masaki Muranaka | |
| 2013-03-12 | Remove a meaningless type cast. | Masaki Muranaka | |
| 2013-03-12 | Remove str_alloc(). Use mrb_obj_alloc_string instead. | Masaki Muranaka | |
| 2013-03-12 | Remove mrb_str_sublen() as it is not used. | Masaki Muranaka | |
| 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-12 | Fix indents. | Masaki Muranaka | |
| 2013-03-12 | Rename STR_BUF_MIN_SIZE to MRB_STR_BUF_MIN_SIZE. Make it configurable. | Masaki Muranaka | |
