index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
Age
Commit message (
Expand
)
Author
2017-08-25
fix fmt_fp.c(178) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ...
Tomasz Dąbrowski
2017-08-25
fix fmt_fp.c(123) : warning C4244: 'return' : conversion from 'ptrdiff_t' to ...
Tomasz Dąbrowski
2017-08-23
Asserted bidx < ci->nregs for OP_SEND and OP_SUPER
Christopher Aue
2017-08-22
Added method cache.
Yukihiro "Matz" Matsumoto
2017-08-22
Remove possible path that leaves a local variable uninitialized.
Yukihiro "Matz" Matsumoto
2017-08-22
`mrb_obj_respond_to` to use `mrb_method_search_vm`.
Yukihiro "Matz" Matsumoto
2017-08-22
`strlen` returns `size_t`; need to cast before assigning to `int`.
Yukihiro "Matz" Matsumoto
2017-08-22
(Try to) fix mixture of `int` and `size_t` in UTF-8 conversion.
Yukihiro "Matz" Matsumoto
2017-08-19
Reduce signed/unsigned warnings in dump.c
Yukihiro "Matz" Matsumoto
2017-08-19
Reduce signed/unsigned warnings in fmt_fp.c
Yukihiro "Matz" Matsumoto
2017-08-19
Use `ptrdiff_t` instead of `int`.
Yukihiro "Matz" Matsumoto
2017-08-19
Remove mixed signed/unsigned comparison in debug.c.
Yukihiro "Matz" Matsumoto
2017-08-19
Type check before traversing `irep->outer`; fix #3782
Yukihiro "Matz" Matsumoto
2017-08-19
Call `mrb_full_gc` before `gc_each_objects`; ref #3782
Yukihiro "Matz" Matsumoto
2017-08-19
Zero width `unshift` should not touch memory; ref #3780
Yukihiro "Matz" Matsumoto
2017-08-19
Unshift pointer move size was wrong (not `len` but `alen`); fix #3780
Yukihiro "Matz" Matsumoto
2017-08-18
`capacify' for `mrb_str_new_capa` should not be `0`.
Yukihiro "Matz" Matsumoto
2017-08-18
`mrb_str_cat`: `capa` should not be zero to avoid infinite loops.
Yukihiro "Matz" Matsumoto
2017-08-18
`mrb_str_cat`: `capa` should be bigger than `total`.
Yukihiro "Matz" Matsumoto
2017-08-18
`ARY_CAPA` handles capacity for embedded arrays by itself.
Yukihiro "Matz" Matsumoto
2017-08-18
Reduce signed/unsigned comparison warnings; ref #3785
Yukihiro "Matz" Matsumoto
2017-08-18
Separate `mrb_str_buf_new` and `mrb_str_new_capa`.
Yukihiro "Matz" Matsumoto
2017-08-18
Remove code duplication in `mrb_str_concat`.
Yukihiro "Matz" Matsumoto
2017-08-18
Merge `str_buf_cat` and `mrb_str_cat`.
Yukihiro "Matz" Matsumoto
2017-08-18
Merge pull request #3786 from christopheraue/3784_fix
Yukihiro "Matz" Matsumoto
2017-08-18
Merge pull request #3785 from miura1729/original
Yukihiro "Matz" Matsumoto
2017-08-18
Improve Array structure
Miura Hideki
2017-08-18
Reset ci in OP_SUPER after potential realloc
Christopher Aue
2017-08-12
Reintroduced not storing converted proc directly in the stack
Christopher Aue
2017-08-12
Removed unneeded ci->nregs checks in OP_SEND and OP_SUPER
Christopher Aue
2017-08-12
Extended stack always based on ci->nregs
Christopher Aue
2017-08-12
Refactored variable usage in OP_SEND and OP_SUPER
Christopher Aue
2017-08-12
Reduce integer type mismatch warnings in VC.
Yukihiro "Matz" Matsumoto
2017-08-11
Remove some empty lines; ref #3778
Yukihiro "Matz" Matsumoto
2017-08-11
Refactored OP_SEND and OP_SUPER and calculate argc right at the top
Christopher Aue
2017-08-11
Remove an unused argument from `each_backtrace_func`.
Yukihiro "Matz" Matsumoto
2017-08-11
Defer `mid` update after `unshift`; ref #3776
Yukihiro "Matz" Matsumoto
2017-08-11
Merge branch 'super_method_missing_fix' of https://github.com/christopheraue/...
Yukihiro "Matz" Matsumoto
2017-08-11
Silence integer type conversion warnings.
Yukihiro "Matz" Matsumoto
2017-08-11
Remove unnecessary inline function `ary_elt`.
Yukihiro "Matz" Matsumoto
2017-08-11
Avoid possible data loss by using `ptrdiff_t`.
Yukihiro "Matz" Matsumoto
2017-08-11
Should not call `to_str` in `mrb_vformat`; fix #3773
Yukihiro "Matz" Matsumoto
2017-08-10
Fixed calling missing method through super with 126 args
Christopher Aue
2017-08-10
Remove redundant `flo_hash` function.
Yukihiro "Matz" Matsumoto
2017-08-10
Use standard hash functions in `mrb_hash_ht_hash_func`.
Yukihiro "Matz" Matsumoto
2017-08-10
Normalize float numbers before calculating a hash value.
Yukihiro "Matz" Matsumoto
2017-08-09
Replaced tabs with spaces
Christopher Aue
2017-08-09
Wrong blkargs pos for vararg; ref #3768
Yukihiro "Matz" Matsumoto
2017-08-09
The block argument offset saved in the env was wrong; fix #3768
Yukihiro "Matz" Matsumoto
2017-08-08
Float values divided by zero should honor signs; fix #3766
Yukihiro "Matz" Matsumoto
[next]