| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-28 | Merge pull request #1762 from cubicdaiya/issues/mrb_str_new_bug | Yukihiro "Matz" Matsumoto | |
| fix SEGV bug for mrb_str_new | |||
| 2014-02-28 | fix SEGV bug for mrb_str_new | cubicdaiya | |
| mrb_str_new causes seg-fault when 3rd argument is negative. | |||
| 2014-02-28 | remove break altogether in ci loop | Yukihiro "Matz" Matsumoto | |
| 2014-02-28 | Merge pull request #1760 from cubicdaiya/issues/make_mrb_str_dump_a_bit_faster | Yukihiro "Matz" Matsumoto | |
| make mrb_str_dump a bit faster | |||
| 2014-02-28 | Merge pull request #1758 from ksss/array-out-while | Yukihiro "Matz" Matsumoto | |
| move check condition to outside in while block | |||
| 2014-02-28 | make mrb_str_dump a bit faster | cubicdaiya | |
| 2014-02-27 | move check condition to outside in while block | ksss | |
| 2014-02-27 | use mrb_str_cat_lit() intead of mrb_str_cat | cubicdaiya | |
| 2014-02-27 | should not continue loop when ci = NULL | Yukihiro "Matz" Matsumoto | |
| 2014-02-27 | boot_defclass: super may be NULL | Yukihiro "Matz" Matsumoto | |
| 2014-02-27 | revert 38e9ce21 and API changed; mrb_get_backtrace() -> renamed to ↵ | Yukihiro "Matz" Matsumoto | |
| mrb_exc_backtrace since this is a backtrace method implementation of Exception; mrb_get_backtrace_at() -> removed; mrb_get_backtrace() -> added to get backtrace in array (like caller) | |||
| 2014-02-27 | avoid recursion when method_missing happened in inspect; fix #1746 | Yukihiro "Matz" Matsumoto | |
| 2014-02-27 | fix indent | Yukihiro "Matz" Matsumoto | |
| 2014-02-27 | add new function mrb_get_backtrace_at() to get backtrace at ci and pc | Yukihiro "Matz" Matsumoto | |
| 2014-02-27 | add macro ARY_UNSET_SHARED | ksss | |
| 2014-02-27 | add macro ARY_SET_SHARED | ksss | |
| 2014-02-26 | use mrb_str_new_lit instead of mrb_str_new for C string literal | cubicdaiya | |
| 2014-02-26 | Merge pull request #1748 from cubicdaiya/issues/optim_get_valid_iv_sym | Yukihiro "Matz" Matsumoto | |
| fix bug for get_valid_iv_sym | |||
| 2014-02-26 | Merge pull request #1747 from cubicdaiya/issues/use_mrb_intern_lit | Yukihiro "Matz" Matsumoto | |
| use mrb_intern_lit instead of mrb_intern_cstr for C string literals | |||
| 2014-02-26 | add macro ARY_SHARED_P | ksss | |
| 2014-02-26 | fix bug for get_valid_iv_sym | cubicdaiya | |
| When sub-string is used in the following way, it does not work well. o = Object.new o.instance_variable_set(:@a, 1) o.instance_variable_defined?("@abc"[0,2]) #=> false (this should be true) | |||
| 2014-02-26 | use mrb_intern_lit instead of mrb_intern_cstr for C string literals | cubicdaiya | |
| 2014-02-26 | use mrb_str_new_lit instead of mrb_str_new for C string literals | cubicdaiya | |
| 2014-02-26 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2014-02-25 | clarify fallthrough in the switch statement | Yukihiro "Matz" Matsumoto | |
| 2014-02-25 | initialize sname before interning | Yukihiro "Matz" Matsumoto | |
| 2014-02-25 | avoid accessing uninitialized string; ref ac936fc | Yukihiro "Matz" Matsumoto | |
| 2014-02-25 | Merge pull request #1721 from take-cheeze/d_format_spec | Yukihiro "Matz" Matsumoto | |
| add 'd' format specifier in mrb_get_args and mruby-random gem improvement | |||
| 2014-02-23 | move declaration to the top of the block; ref #1727 | Yukihiro "Matz" Matsumoto | |
| 2014-02-22 | add src/error.h for compatibility reason | Yukihiro "Matz" Matsumoto | |
| 2014-02-22 | preserve significands in float-string conversion | h2so5 | |
| 2014-02-22 | powered num may be infinite in float-string conversion | Yukihiro "Matz" Matsumoto | |
| 2014-02-21 | add 'd' format specifier to get data pointer directly from mrb_get_args | take_cheeze | |
| 2014-02-20 | move src/error.h to include/mruby/error.h | take_cheeze | |
| 2014-02-18 | mrb_flo_to_str: internal linkage | cremno | |
| 2014-02-17 | iv_size (non-seglist): return 0 if t is NULL | cremno | |
| 2014-02-17 | more mrb_flo_to_str fixes | cremno | |
| - remove float check (take mrb_float instead of mrb_value) - support -0.0 - fix range error if log10 is called when n == 0.0 - MSVC older than 2013: add signbit macro (for double) | |||
| 2014-02-17 | use double instead of mrb_float (that may be single precision float) to ↵ | Yukihiro "Matz" Matsumoto | |
| reduce errors | |||
| 2014-02-17 | remove trailing zeros from float string representation | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | define FLO_EPSILON depends on float/double | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | remove max_digit from mrb_flo_to_str() | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | small refactoring; direct return | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | use powf() instead of pow() on MRB_USE_FLOAT | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | fdigit may be negative due to error if mrb_float is 32bit (e.g. 10**36 on ↵ | Yukihiro "Matz" Matsumoto | |
| 32bit arch); ref #1713 #1714 | |||
| 2014-02-17 | fix mrb_flo_to_str() exponent problem | h2so5 | |
| 2014-02-16 | Merge pull request #1710 from takkaw/flo_to_str | Yukihiro "Matz" Matsumoto | |
| modify mrb_to_str() in order to display big float number | |||
| 2014-02-15 | normalize NaN after division that may generate NaN; fix #1712 | Yukihiro "Matz" Matsumoto | |
| 2014-02-15 | modify mrb_to_str() in order to display big float number | takkaw | |
| 2014-02-14 | clearn up warning in hash.c | Li Yazhou | |
| /home/fleuria/code/mruby/src/hash.c:159:1: warning: ‘mrb_hash_dp`defined but not used [-Wunused-function] mrb_hash_dup(mrb_state *mrb, mrb_value hash) ^ this commit defines Hash#dup to take advantage of mrb_hash_dup, however it seems that Hash#dup is not in ISO standard. | |||
| 2014-02-14 | Merge pull request #1702 from cremno/hash-hash-ext-changes | Yukihiro "Matz" Matsumoto | |
| hash / hash-ext: various small changes | |||
