| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-15 | normalize NaN after division that may generate NaN; fix #1712 | Yukihiro "Matz" Matsumoto | |
| 2014-02-15 | Merge pull request #1709 from cubicdaiya/issues/nonvoid | Yukihiro "Matz" Matsumoto | |
| Give the type 'void' to functions have no argument. | |||
| 2014-02-14 | Give 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-14 | Merge pull request #1707 from Fleurer/issue1706 | Yukihiro "Matz" Matsumoto | |
| keep stack with nlocals instead of nregs; fix #1706 | |||
| 2014-02-14 | Merge pull request #1708 from Fleurer/cleanup-warning-hash-dup | Yukihiro "Matz" Matsumoto | |
| cleanup warnings in hash.c | |||
| 2014-02-14 | add test for Hash#dup | Li Yazhou | |
| 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 | add a regression test for #1706 | Li Yazhou | |
| 2014-02-14 | keep stack with nlocals instead of nregs; fix #1706 | Li Yazhou | |
| 2014-02-14 | Merge pull request #1702 from cremno/hash-hash-ext-changes | Yukihiro "Matz" Matsumoto | |
| hash / hash-ext: various small changes | |||
| 2014-02-14 | Merge pull request #1705 from takahashim/version-number | Yukihiro "Matz" Matsumoto | |
| MRUBY_VERSION should be only numbers separated by dot, like JRUBY_VERSION or Rubinius::VERSION | |||
| 2014-02-14 | Merge pull request #1703 from cremno/parenthesize-mrbdump-errnos | Yukihiro "Matz" Matsumoto | |
| dump.h: parenthesize negative errnos | |||
| 2014-02-14 | Merge pull request #1704 from cremno/rm-mrb_str_literal-decl | Yukihiro "Matz" Matsumoto | |
| remove mrb_str_literal declaration | |||
| 2014-02-14 | Merge pull request #1701 from cremno/do-not-use-mrb_str_cat2 | Yukihiro "Matz" Matsumoto | |
| mrb_str_cat2: deprecated since 0cedf8f | |||
| 2014-02-13 | MRUBY_VERSION should be only numbers separated by dot, like JRUBY_VERSION or ↵ | takahashim | |
| Rubinius::VERSION | |||
| 2014-02-13 | mrb_str_cat2: deprecated since 0cedf8f | cremno | |
| 2014-02-13 | remove mrb_str_literal declaration | cremno | |
| definition was removed in 677a2ac | |||
| 2014-02-13 | dump.h: parenthesize negative errnos | cremno | |
| 2014-02-13 | hash / hash-ext: various small changes | cremno | |
| src/hash.c: - mrb_hash_(aget|aset|dup|delete): internal linkage - remove documentation of methods which are not implemented (in here) - remove #assoc; unused, not in ISO spec - remove #rassoc: same, implementation is also wrong hash-ext mrbgem: - remove header "mruby/khash.h" - remove mrb_hash_values_at (move code into hash_values_at, i: long -> int) - less whitespace in gem_init function | |||
| 2014-02-13 | remove direct inclusion of mruby/version.h from version.c; #1698 | Yukihiro "Matz" Matsumoto | |
| 2014-02-12 | include mruby/version.h in mruby.h | Tomoyuki Sahara | |
| 2014-02-12 | Merge pull request #1697 from cremno/array-changes | Yukihiro "Matz" Matsumoto | |
| array implementation: several small changes | |||
| 2014-02-12 | Merge pull request #1694 from cremno/rakefile-mkdir-bin-path | Yukihiro "Matz" Matsumoto | |
| Rakefile: make bin directory | |||
| 2014-02-12 | Merge pull request #1695 from cremno/clang-and-icl-define-direct-threaded | Yukihiro "Matz" Matsumoto | |
| Clang and ICC/ICL: define DIRECT_THREADED | |||
| 2014-02-12 | Merge pull request #1693 from cremno/mruby-math-rm-cygwin-compat | Yukihiro "Matz" Matsumoto | |
| mruby-math: remove Cygwin compatibility macros | |||
| 2014-02-12 | array implementation: several small changes | cremno | |
| src/array.c: - make various functions without declaration in the mruby headers static - removed all uncessary int casts and two useless comments mrb_ary_new_from_values: move to similar functions mrb_check_array_type: fix indentation include/mruby/array.h: mrb_shared_array: padding (default "mrbconf.h" on an usual 64-bit system) sizeof(mrb_int)==sizeof(int)==4 && sizeof(mrb_value*)==8 both: mrb_ary_aget: remove declaration in header and make static nobody uses it which is not surprising since it has 1 req arg! mrb_assoc_new: small optimization and move to similar functions mrb_ary_len: re-implement as static inline function (it is used by mrbgems) programmers should directly use RARRAY_LEN instead | |||
| 2014-02-12 | Rakefile: make bin directory | cremno | |
| 2014-02-12 | mruby-math: remove Cygwin compatibility macros | cremno | |
| nan: The first non-test release of Cygwin 1.5.x was over a decade ago: <http://cygwin.com/ml/cygwin-announce/2003-09/msg00001.html> log/log10: This workaround is not needed anymore (1.2.6.1, 1.3 - both over 6 years ago): <https://sourceware.org/cgi-bin/cvsweb.cgi/src/newlib/libm/math/w_log.c?cvsroot=src> | |||
| 2014-02-11 | Clang and ICC/ICL: define DIRECT_THREADED | cremno | |
| This is most likely only needed on Windows be- cause __GNUC__ is not defined by both compilers. It might fail with some unusual configurations. If that is the case, feel free to open an issue. | |||
| 2014-02-11 | add RUBY_ENGINE; ref #576 | Yukihiro "Matz" Matsumoto | |
| 2014-02-10 | resolve conflict in travis_config.rb | Yukihiro "Matz" Matsumoto | |
| 2014-02-10 | Merge pull request #1692 from Paxa/Kernel_global_variables | Yukihiro "Matz" Matsumoto | |
| Fix Kernel#global_variables for $1-$9 | |||
| 2014-02-09 | Fix Kernel#global_variables for $1-$9 | Pavel | |
| 2014-02-09 | initialize ci->stackent at the top; #1691 | Yukihiro "Matz" Matsumoto | |
| 2014-02-09 | Merge branch 'original2' of https://github.com/miura1729/mruby into ↵ | Yukihiro "Matz" Matsumoto | |
| miura1729-original2 | |||
| 2014-02-09 | Merge pull request #1674 from cremno/mrb_bool-FALSE-TRUE | Yukihiro "Matz" Matsumoto | |
| use mrb_bool, FALSE and TRUE more | |||
| 2014-02-09 | Store raw stack address in callinfo instead of offset from stbas | Miura Hideki | |
| 2014-02-08 | forget to add function prototypes | Yukihiro "Matz" Matsumoto | |
| 2014-02-08 | Merge pull request #1689 from Bovi-Li/remove-notice | Yukihiro "Matz" Matsumoto | |
| Remove *very early version* notice | |||
| 2014-02-08 | Merge pull request #1690 from bovi/patch-2 | Yukihiro "Matz" Matsumoto | |
| Add download link for stable version to README | |||
| 2014-02-08 | made mrb_define_class to return existing class, with heavy refactoring | Yukihiro "Matz" Matsumoto | |
| 2014-02-08 | rename mrb_name_class and make it static | Yukihiro "Matz" Matsumoto | |
| 2014-02-08 | Add download link for stable version to README | Daniel Bovensiepen | |
| - add download link of stable version 1.0.0 - remove remark for mruby branch due to non-existence | |||
| 2014-02-08 | Remove notice of early version | Daniel Bovensiepen | |
| 2014-02-07 | add MRUBY_RELEASE info in numbers | Yukihiro "Matz" Matsumoto | |
| 2014-02-07 | forgot to add new files | Yukihiro "Matz" Matsumoto | |
| 2014-02-07 | move version info from gems to core; ref #576 #1684 | Yukihiro "Matz" Matsumoto | |
| 2014-02-06 | Merge pull request #1688 from cubicdaiya/issues/unnecessary_semicolon | Yukihiro "Matz" Matsumoto | |
| Remove unnecessary semicolon | |||
| 2014-02-06 | remove unnecessary semicolon | cubicdaiya | |
| 2014-02-06 | use mrb_str_new_lit() more widely | Yukihiro "Matz" Matsumoto | |
