| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-03-11 | Merge pull request #3496 from ksss/string-gsub | Yukihiro "Matz" Matsumoto | |
| Avoid infinity loop when empty string pattern | |||
| 2017-03-11 | Merge branch 'master' into string-gsub | Yukihiro "Matz" Matsumoto | |
| 2017-03-11 | Merge pull request #3497 from ksss/subreplace | Yukihiro "Matz" Matsumoto | |
| \1 sequences as empty strings | |||
| 2017-03-10 | \1 sequences as empty strings | ksss | |
| 2017-03-10 | Avoid infinity loop when empty string pattern | ksss | |
| 2017-03-10 | Update ci->mid according to surrounding scope; fix #3490 | Yukihiro "Matz" Matsumoto | |
| 2017-03-10 | Simplify expression; ref #3490 | Yukihiro "Matz" Matsumoto | |
| 2017-03-10 | Raise special Exception when exception class is redefined; fix #3493 | Yukihiro "Matz" Matsumoto | |
| 2017-03-10 | Use string#upto() if available; fix #3489 | Yukihiro "Matz" Matsumoto | |
| Terminate loop if the value is longer than the last otherwise. | |||
| 2017-03-10 | Terminate loop if generated string longer than the last; ref #3489 | Yukihiro "Matz" Matsumoto | |
| 2017-03-07 | `__FILE__` should not update `p->filename`; fix #3485 | Yukihiro "Matz" Matsumoto | |
| 2017-03-06 | Merge pull request #3484 from ksss/string-frozen | Yukihiro "Matz" Matsumoto | |
| Check modifiable for String `bang' methods | |||
| 2017-03-06 | Avoid trampoline code if mrb_f_send is called from funcall; fix #3383 | Yukihiro "Matz" Matsumoto | |
| 2017-03-05 | Check modifiable for String `bang' methods | ksss | |
| 2017-03-05 | Merge pull request #3483 from ksss/string-index | Yukihiro "Matz" Matsumoto | |
| String#index shouldn't return nil when "".index "" | |||
| 2017-03-05 | String#index shouldn't return nil when "".index "" | ksss | |
| 2017-03-04 | Unshare popped TT_ENV objects. | Yukihiro "Matz" Matsumoto | |
| 2017-03-04 | Limit ecall() recursion levels; fix #3466 | Yukihiro "Matz" Matsumoto | |
| 2017-03-04 | Avoid tracing shared TT_ENV object. | Yukihiro "Matz" Matsumoto | |
| 2017-03-04 | Save/restore arena index in the loop. | Yukihiro "Matz" Matsumoto | |
| 2017-03-02 | Define jmpbuf_id outside of `extern "C"`; ref #3470 | Yukihiro "Matz" Matsumoto | |
| 2017-03-02 | Use C++ ABI only when MRB_ENABLE_CXX_ABI is set; ref #3470 | Yukihiro "Matz" Matsumoto | |
| 2017-03-02 | Fixed a bug in register size calculation; fix #3479 | Yukihiro "Matz" Matsumoto | |
| 2017-03-02 | The method_missing removal condition in a76dc04a was wrong. | Yukihiro "Matz" Matsumoto | |
| 2017-03-02 | Fix possible stack overflow for `method_missing`; fix #3478 | Yukihiro "Matz" Matsumoto | |
| Instead of shifting mruby VM stack, we always use CALL_MAXARGS. | |||
| 2017-03-02 | Reorganize C++ exceptions; ref #3470 | Yukihiro "Matz" Matsumoto | |
| There are 3 levels of C++ exception handling: * default - no C++ exception (use setjmp/longjmp) * enable_cxx_exception (use C++ exceptions with C ABI) * enable_cxx_abi (use C++ ABI including exceptions) | |||
| 2017-03-02 | Create NoMethodError instance using `mrb_obj_new()`. | Yukihiro "Matz" Matsumoto | |
| 2017-03-02 | Avoid using <mruby/throw.h> in mruby.c | Yukihiro "Matz" Matsumoto | |
| 2017-03-01 | `ci` may be moved during `mrb_convert_type()`; ref #3474 | Yukihiro "Matz" Matsumoto | |
| 2017-03-01 | Keep space for safe navigation operator; fix #3475 | Yukihiro "Matz" Matsumoto | |
| 2017-03-01 | Newlines in strings should be counted; fix #3477 | Yukihiro "Matz" Matsumoto | |
| 2017-02-28 | Compile C files by C compiler when C++ files mixed. | Yukihiro "Matz" Matsumoto | |
| ref #3267 #3470 By this commit, mruby do not use C++ ABI mode unless you specify explicitly. It compiles C files by C compilers, with C++ exception enabled when it sees C++ files in your configured mrbgems. I haven't tried visualcpp, so please submit an issue if you see any problem with C++ gems on Windows. | |||
| 2017-02-28 | Merge pull request #74 from iij/run-test-outside-source-tree | Tomoyuki Sahara | |
| run mrbtest outside of source tree. | |||
| 2017-02-28 | run mrbtest outside of source tree. | Tomoyuki Sahara | |
| 2017-02-28 | Ignore empty ensure clause. | Yukihiro "Matz" Matsumoto | |
| 2017-02-28 | `return` (and `break`) should handle splat correctly; fix #3472 | Yukihiro "Matz" Matsumoto | |
| 2017-02-28 | Fix NODE_DREGX dump; ref #3471 | Yukihiro "Matz" Matsumoto | |
| 2017-02-28 | Fixed a bug in dregex option generation; fix #3471 | Yukihiro "Matz" Matsumoto | |
| 2017-02-28 | Update codegen.c comments | Yukihiro "Matz" Matsumoto | |
| 2017-02-28 | Fix integer overflow; fix #3473 | Yukihiro "Matz" Matsumoto | |
| The fix is suggested by https://hackerone.com/lucnguyen | |||
| 2017-02-28 | Add type check by mrb_get_args(); ref #3476 | Yukihiro "Matz" Matsumoto | |
| 2017-02-28 | Add check before calling str_substr(); ref #3476 | Yukihiro "Matz" Matsumoto | |
| 2017-02-28 | Check if the value is fixnum before mrb_funcall(); fix #3476 | Yukihiro "Matz" Matsumoto | |
| The issue is reported by https://hackerone.com/aerodudrizzt | |||
| 2017-02-27 | Remove default Kernel#method_missing. | Yukihiro "Matz" Matsumoto | |
| Internal method_missing works without problems. | |||
| 2017-02-27 | Check if OP_RETURN cross C function boundary; fix #3462 | Yukihiro "Matz" Matsumoto | |
| 2017-02-27 | Fixed ecall() invoked too early; fix #3464 | Yukihiro "Matz" Matsumoto | |
| 2017-02-27 | Update local variable only after the value is checked. | Yukihiro "Matz" Matsumoto | |
| 2017-02-27 | Clear block arg when method_missing takes *args. | Yukihiro "Matz" Matsumoto | |
| 2017-02-27 | Stack may be reallocated in mrb_run(); fix #3465 | Yukihiro "Matz" Matsumoto | |
| 2017-02-27 | Always keep block argument space in stack; fix #3469 | Yukihiro "Matz" Matsumoto | |
