| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-05-16 | stack adjustment after NODE_OP_ASGN with NODE_CALL was wrong; fix #3159 | Yukihiro "Matz" Matsumoto | |
| 2016-05-16 | parser_dump() to show symbol number for NODE_SYM | Yukihiro "Matz" Matsumoto | |
| 2016-05-12 | Create socket in /tmp for security | Eric Hodel | |
| Some systems do not allow UNIX sockets from arbitrary directories. Instead of trying to `#define SOCKET_PATH` correctly I assume the /tmp/ directory is accessible and use it. | |||
| 2016-05-12 | Include reason in test failure message | Eric Hodel | |
| I am seeing this test fail in some environments but can't determine why. The extra information will help me determine the reason bind(2) is failing. | |||
| 2016-05-11 | Merge pull request #3157 from cremno/add-mrb_int_mul_overflow | Yukihiro "Matz" Matsumoto | |
| add function for checked mrb_int multiplication | |||
| 2016-05-10 | use mrb_int_mul_overflow() | cremno | |
| 2016-05-10 | add mrb_int_mul_overflow(); close #3149 | cremno | |
| - call __builtin_mul_overflow() if it's available - perform a 64-bit multiplication for 32-bit mrb_int (default) - otherwise a much slower method is used | |||
| 2016-05-10 | Merge pull request #3156 from cremno/fix-mruby_version-value | Yukihiro "Matz" Matsumoto | |
| fix MRUBY_VERSION value | |||
| 2016-05-10 | Merge pull request #3154 from ↵ | Yukihiro "Matz" Matsumoto | |
| cremno/improve-checked-mrb_int-arithmetic-implementation improve checked mrb int arithmetic implementation | |||
| 2016-05-10 | Merge pull request #3155 from cremno/fix-3152 | Yukihiro "Matz" Matsumoto | |
| fix #3152 | |||
| 2016-05-09 | fix MRUBY_VERSION value | cremno | |
| RUBY_ENGINE_VERSION and MRUBY_VERSION should refer to the same string. | |||
| 2016-05-09 | raise the error at runtime; fix #3152 | cremno | |
| 2016-05-09 | use type-generic checked arithmetic builtins | cremno | |
| Version checking is not reliable - especially with Clang. E.g. Apple's Clang (Xcode) uses different version numbers. A feature check (__has_builtin) is the recommened way. Add the MRB_HAVE_TYPE_GENERIC_CHECKED_ARITHMETIC_BUILTINS macro which may be used in other files. | |||
| 2016-05-09 | define macros only if builtins are n/a | cremno | |
| 2016-05-09 | Merge pull request #3153 from kou/remove-needless-assignment | Yukihiro "Matz" Matsumoto | |
| Remove needless assignment | |||
| 2016-05-09 | Remove needless assignment | Kouhei Sutou | |
| d4ee409ae912dec6eb719a5727da4566f817d9d8 should remove this line. | |||
| 2016-04-27 | Merge pull request #3151 from okkez/use-stack-directly | Yukihiro "Matz" Matsumoto | |
| Use stack directly | |||
| 2016-04-27 | Use stack directly | Kenji Okimoto | |
| See https://github.com/mruby/mruby/pull/3142#issuecomment-201138873 | |||
| 2016-04-23 | mruby-sprintf:fix double negative signs in printf; fix #3148 | Yukihiro "Matz" Matsumoto | |
| MRB_INT_MAX does not have corresponding positive integer | |||
| 2016-04-23 | mruby-sprintf: format specifiers o,u,x,b ignore sign(+); ref #3148 | Yukihiro "Matz" Matsumoto | |
| 2016-04-16 | Merge pull request #3147 from ksss/1.8 | Yukihiro "Matz" Matsumoto | |
| Avoid Syntax Error on CRuby v1.8 | |||
| 2016-04-16 | Avoid Syntax Error on CRuby v1.8 | ksss | |
| CRuby v1.8 dose not support named capture | |||
| 2016-04-14 | Merge pull request #3145 from timoschilling/patch-1 | Yukihiro "Matz" Matsumoto | |
| fix syntax highlighting | |||
| 2016-04-13 | fix syntax highlighting | Timo Schilling | |
| 2016-04-11 | mruby-eval: instance_eval should keep target_class; close #3141 | Yukihiro "Matz" Matsumoto | |
| 2016-04-11 | vm.c: mrb_hash_set() may reallocate VM stack; close #3133 | Yukihiro "Matz" Matsumoto | |
| 2016-04-04 | fix possible memory leak in mruby-time gem | Yukihiro "Matz" Matsumoto | |
| 2016-04-01 | fix too much optimization for `||=` | Yukihiro "Matz" Matsumoto | |
| 2016-03-30 | fix duplicated eval in op_asgn | Yukihiro "Matz" Matsumoto | |
| `a` in `a.m += c` or `a[b] += c` should be evaluated only once. | |||
| 2016-03-30 | reduce OP_ARRAY in argument splat | Yukihiro "Matz" Matsumoto | |
| 2016-03-30 | mruby-enum-ext: refine minmax | Yukihiro "Matz" Matsumoto | |
| 2016-03-25 | Merge pull request #3142 from kou/add-missing-regs-update | Yukihiro "Matz" Matsumoto | |
| Add missing regs update | |||
| 2016-03-25 | Add missing regs update | Kouhei Sutou | |
| mrb_vm_define_class() may realloc() mrb->c->stack because it calls mrb_funcall() for inherited hook. If mrb->c->stack is realloc()-ed, regs refers orphan address. | |||
| 2016-03-24 | remove wrong ISO section from safe navigation test; ref 4c1ce0f6 | Yukihiro "Matz" Matsumoto | |
| 2016-03-24 | better code generation for `||=`; #3138 | Yukihiro "Matz" Matsumoto | |
| 2016-03-24 | `||=` with cvars and constants should work with false values; #3138 | Yukihiro "Matz" Matsumoto | |
| 2016-03-23 | `||=` reference error can happen with constants as well; #3138 | Yukihiro "Matz" Matsumoto | |
| 2016-03-23 | add #dig tests | Yukihiro "Matz" Matsumoto | |
| 2016-03-23 | add #dig to Array,Hash and Struct | Yukihiro "Matz" Matsumoto | |
| 2016-03-23 | add safe-navigation operator tests | Yukihiro "Matz" Matsumoto | |
| 2016-03-23 | add safe-navigation (aka lonely) operator `&.` | Yukihiro "Matz" Matsumoto | |
| 2016-03-23 | Merge pull request #3139 from cremno/fix-vs2010-build | Yukihiro "Matz" Matsumoto | |
| deprecate and fix VS2010/2012 build | |||
| 2016-03-22 | fix VS2010/2012 build | cremno | |
| They don't have <inttypes.h>, only <stdint.h>. | |||
| 2016-03-22 | deprecate Visual Studio 2010 and 2012 | cremno | |
| 2016-03-22 | remove unnecessary array/each | cremno | |
| 2016-03-22 | fixed silly class variable/constant confusion; #3138 | Yukihiro "Matz" Matsumoto | |
| 2016-03-21 | rescue NameError from class variable access like `@@foo ||= 42`; fix #3138 | Yukihiro "Matz" Matsumoto | |
| 2016-03-16 | Merge pull request #3131 from bggd/fix_bintest_on_windows | Yukihiro "Matz" Matsumoto | |
| Fix doesn't work bintest on :visualcpp toolchain | |||
| 2016-03-16 | Merge pull request #3132 from pbosetti/edison | Yukihiro "Matz" Matsumoto | |
| Added example for cross-compiling on Intel Edison | |||
| 2016-03-16 | Merge pull request #3136 from bggd/add_appveyor | Yukihiro "Matz" Matsumoto | |
| Add appveyor.yml | |||
