summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-02-23support custom build_dir in CrossBuildtake_cheeze
2014-02-23Fix unused function warning when readline enabled (mirb)kyab
2014-02-23move declaration to the top of the block; ref #1727Yukihiro "Matz" Matsumoto
2014-02-23make mruby build directory customizabletake_cheeze
2014-02-23Add warning for C89-style variable declarationsbggd
2014-02-22add src/error.h for compatibility reasonYukihiro "Matz" Matsumoto
2014-02-22compatibility support (mruby/mruby, iij/mruby and 1.0.0)Akira Yumiyama
- refs https://github.com/mruby/mruby/commit/36e234aa377d50d8ee425c7868e0651cf78e85cf
2014-02-22Merge pull request #1724 from h2so5/f2s-significandYukihiro "Matz" Matsumoto
preserve significands in float-string conversion
2014-02-22preserve significands in float-string conversionh2so5
2014-02-22powered num may be infinite in float-string conversionYukihiro "Matz" Matsumoto
2014-02-22Merge pull request #1722 from take-cheeze/hash_ext_arena_fixYukihiro "Matz" Matsumoto
Fix possible arena overflow in mruby-hast-ext.
2014-02-22Merge pull request #1723 from akuroda/string_test_cap_downYukihiro "Matz" Matsumoto
add tests for String#capitalize!, String#downcase!, and String#upcase!
2014-02-22fix the position of capitalize! and downcast!, and add test for upcase!Akira Kuroda
2014-02-22add test(requires MRB_GC_FIXED_ARENA enabled)take_cheeze
2014-02-22add tests for String#capitalize! and String#downcase!Akira Kuroda
2014-02-22fix possible arena overflowtake_cheeze
2014-02-21use 'd' format spec to get Random objecttake_cheeze
2014-02-21add 'd' format specifier to get data pointer directly from mrb_get_argstake_cheeze
2014-02-21use mrb_intern_lit in mruby-randomtake_cheeze
2014-02-21Merge pull request #1720 from take-cheeze/move_error_hYukihiro "Matz" Matsumoto
move src/error.h to include/mruby/error.h
2014-02-20move src/error.h to include/mruby/error.htake_cheeze
2014-02-18Merge pull request #1719 from pbosetti/masterYukihiro "Matz" Matsumoto
Added spaces in version.h macros for complying with C++11
2014-02-18mrb_flo_to_str: internal linkagecremno
2014-02-17Added spaces in version.h macros for complying with C++11Paolo Bosetti
2014-02-18Merge pull request #1717 from cremno/iv_size-t-nullYukihiro "Matz" Matsumoto
iv_size (non-seglist): return 0 if t is NULL
2014-02-17iv_size (non-seglist): return 0 if t is NULLcremno
2014-02-17more mrb_flo_to_str fixescremno
- 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-17use double instead of mrb_float (that may be single precision float) to ↵Yukihiro "Matz" Matsumoto
reduce errors
2014-02-17remove trailing zeros from float string representationYukihiro "Matz" Matsumoto
2014-02-17define FLO_EPSILON depends on float/doubleYukihiro "Matz" Matsumoto
2014-02-17remove max_digit from mrb_flo_to_str()Yukihiro "Matz" Matsumoto
2014-02-17small refactoring; direct returnYukihiro "Matz" Matsumoto
2014-02-17use powf() instead of pow() on MRB_USE_FLOATYukihiro "Matz" Matsumoto
2014-02-17fdigit 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-17Merge pull request #1714 from h2so5/f2sYukihiro "Matz" Matsumoto
fix mrb_flo_to_str() exponent problem
2014-02-17fix mrb_flo_to_str() exponent problemh2so5
2014-02-16Merge pull request #1710 from takkaw/flo_to_strYukihiro "Matz" Matsumoto
modify mrb_to_str() in order to display big float number
2014-02-15normalize NaN after division that may generate NaN; fix #1712Yukihiro "Matz" Matsumoto
2014-02-15modify mrb_to_str() in order to display big float numbertakkaw
2014-02-15Merge pull request #1709 from cubicdaiya/issues/nonvoidYukihiro "Matz" Matsumoto
Give the type 'void' to functions have no argument.
2014-02-14Give the type 'void' to functions have no argument.cubicdaiya
According to the C standard, it is desirable to give the type 'void' to functions have no argument.
2014-02-14Merge pull request #1707 from Fleurer/issue1706Yukihiro "Matz" Matsumoto
keep stack with nlocals instead of nregs; fix #1706
2014-02-14Merge pull request #1708 from Fleurer/cleanup-warning-hash-dupYukihiro "Matz" Matsumoto
cleanup warnings in hash.c
2014-02-14add test for Hash#dupLi Yazhou
2014-02-14clearn up warning in hash.cLi 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-14add a regression test for #1706Li Yazhou
2014-02-14keep stack with nlocals instead of nregs; fix #1706Li Yazhou
2014-02-14support older version.Tomoyuki Sahara
2014-02-14Merge pull request #1702 from cremno/hash-hash-ext-changesYukihiro "Matz" Matsumoto
hash / hash-ext: various small changes
2014-02-14Merge pull request #1705 from takahashim/version-numberYukihiro "Matz" Matsumoto
MRUBY_VERSION should be only numbers separated by dot, like JRUBY_VERSION or Rubinius::VERSION